Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into variants
Browse files Browse the repository at this point in the history
  • Loading branch information
waghanza committed May 19, 2023
2 parents dea8fcf + 194c69b commit 3971605
Show file tree
Hide file tree
Showing 16 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion clojure/luminus/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
[ring-webjars "0.2.0"]
[ring/ring-core "1.10.0"]
[ring/ring-defaults "0.3.4"]
[com.fasterxml.jackson.core/jackson-core "2.15.0"]]
[com.fasterxml.jackson.core/jackson-core "2.15.1"]]

:min-lein-version "2.0.0"

Expand Down
2 changes: 1 addition & 1 deletion go/fiber/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
framework:
website: gofiber.io
version: 2.45
version: 2.46

engines:
- fasthttp
2 changes: 1 addition & 1 deletion go/fiber/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module main

require github.com/gofiber/fiber/v2 v2.45.0
require github.com/gofiber/fiber/v2 v2.46.0
2 changes: 1 addition & 1 deletion java/light-4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<project.main.class>com.networknt.server.Server</project.main.class>
<version.light-4j>[2.1,2.2)</version.light-4j>
<version.jackson>[1.0,)</version.jackson>
<version.undertow>2.3.5.Final</version.undertow>
<version.undertow>2.3.6.Final</version.undertow>
<version.json-schema-validator>[1.0,)</version.json-schema-validator>
<version.fastscanner>[1.0,)</version.fastscanner>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion java/spring/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
framework:
website: spring.io/projects/spring-boot
version: 3.0
version: 3.1

binaries:
- target/benchmark-1.0.0.jar
Expand Down
2 changes: 1 addition & 1 deletion java/spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>[3.0,3.1)</version>
<version>[3.1,3.2)</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>benchmark.spring-boot</groupId>
Expand Down
2 changes: 1 addition & 1 deletion kotlin/hexagon-jetty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

ext {
hexagonVersion = "2.8.4"
hexagonVersion = "2.8.6"
gradleScripts = "https://raw.githubusercontent.com/hexagonkt/hexagon/$hexagonVersion/gradle"
}

Expand Down
2 changes: 1 addition & 1 deletion kotlin/hexagon-netty-epoll/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

ext {
hexagonVersion = "2.8.4"
hexagonVersion = "2.8.6"
nettyVersion = "4.1.+"

gradleScripts = "https://raw.githubusercontent.com/hexagonkt/hexagon/$hexagonVersion/gradle"
Expand Down
2 changes: 1 addition & 1 deletion kotlin/hexagon-netty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

ext {
hexagonVersion = "2.8.4"
hexagonVersion = "2.8.6"
gradleScripts = "https://raw.githubusercontent.com/hexagonkt/hexagon/$hexagonVersion/gradle"
}

Expand Down
1 change: 1 addition & 0 deletions nim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ ENV PATH $PATH:/root/.nimble/bin
RUN nim c {{#build_opts}} {{{.}}} {{/build_opts}} \
--excessiveStackTrace:off \
-d:release \
--opt:speed \
--passC:-flto \
--passL:-flto \
server.nim
Expand Down
4 changes: 2 additions & 2 deletions nim/happyx/config.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
framework:
github: HapticX/happyx
version: 0.15
version: 0.16

deps:
- pcre-dev

build_opts: '--define:usePcreHeader --passL: "/usr/lib/libpcre.a"'
build_opts: '--checks:off --assertions:off --warnings:off --hints:off -d:httpx --define:usePcreHeader --passL: "/usr/lib/libpcre.a"'
build_with: nimble install -d -y
4 changes: 2 additions & 2 deletions nim/happyx/server.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

description = "Asynchronous web-framework written with ♥"
author = "HapticX"
version = "0.15.1"
version = "0.17.2"
license = "GNU GPLv3"
srcDir = "src"
installExt = @["nim"]
bin = @["hpx"]

# Dependencies

requires "happyx >= 0.15 & < 0.16"
requires "happyx >= 0.17 & < 0.18"
requires "cligen"
requires "regex"
requires "httpx"
Expand Down
2 changes: 1 addition & 1 deletion php/laravel/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"require": {
"laravel/framework": "~10.10.0"
"laravel/framework": "~10.11.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion php/laravel/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
framework:
website: laravel.com
version: "10.10"
version: 10.11

environment:
APP_ENV: production
Expand Down
2 changes: 1 addition & 1 deletion python/starlette/config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
framework:
website: www.starlette.io
github: encode/starlette
version: 0.26
version: 0.27

engines:
- uvicorn
Expand Down
2 changes: 1 addition & 1 deletion python/starlette/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
starlette>=0.26,<0.27
starlette>=0.27,<0.28

0 comments on commit 3971605

Please sign in to comment.