diff --git a/clojure/luminus/project.clj b/clojure/luminus/project.clj index 4db79356d18..385161ce2d9 100644 --- a/clojure/luminus/project.clj +++ b/clojure/luminus/project.clj @@ -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" diff --git a/go/fiber/config.yaml b/go/fiber/config.yaml index ce4ee0a9c35..886a11fef1d 100644 --- a/go/fiber/config.yaml +++ b/go/fiber/config.yaml @@ -1,6 +1,6 @@ framework: website: gofiber.io - version: 2.45 + version: 2.46 engines: - fasthttp diff --git a/go/fiber/go.mod b/go/fiber/go.mod index 96c27b47549..bad1cd24637 100644 --- a/go/fiber/go.mod +++ b/go/fiber/go.mod @@ -1,3 +1,3 @@ module main -require github.com/gofiber/fiber/v2 v2.45.0 +require github.com/gofiber/fiber/v2 v2.46.0 diff --git a/java/light-4j/pom.xml b/java/light-4j/pom.xml index 31328e1ba22..18fa705e2de 100644 --- a/java/light-4j/pom.xml +++ b/java/light-4j/pom.xml @@ -14,7 +14,7 @@ com.networknt.server.Server [2.1,2.2) [1.0,) - 2.3.5.Final + 2.3.6.Final [1.0,) [1.0,) diff --git a/java/spring/config.yaml b/java/spring/config.yaml index 1c27de35b72..5638eaefb5b 100644 --- a/java/spring/config.yaml +++ b/java/spring/config.yaml @@ -1,6 +1,6 @@ framework: website: spring.io/projects/spring-boot - version: 3.0 + version: 3.1 binaries: - target/benchmark-1.0.0.jar diff --git a/java/spring/pom.xml b/java/spring/pom.xml index 686feb6d253..c3e6f78e6be 100644 --- a/java/spring/pom.xml +++ b/java/spring/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - [3.0,3.1) + [3.1,3.2) benchmark.spring-boot diff --git a/kotlin/hexagon-jetty/build.gradle b/kotlin/hexagon-jetty/build.gradle index 3fe5f2c945d..a7fbace6639 100644 --- a/kotlin/hexagon-jetty/build.gradle +++ b/kotlin/hexagon-jetty/build.gradle @@ -4,7 +4,7 @@ plugins { } ext { - hexagonVersion = "2.8.4" + hexagonVersion = "2.8.6" gradleScripts = "https://raw.githubusercontent.com/hexagonkt/hexagon/$hexagonVersion/gradle" } diff --git a/kotlin/hexagon-netty-epoll/build.gradle b/kotlin/hexagon-netty-epoll/build.gradle index 3fed5bfb1e6..9710a50ef70 100644 --- a/kotlin/hexagon-netty-epoll/build.gradle +++ b/kotlin/hexagon-netty-epoll/build.gradle @@ -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" diff --git a/kotlin/hexagon-netty/build.gradle b/kotlin/hexagon-netty/build.gradle index e17b97a8bb3..c6a590f2ce8 100644 --- a/kotlin/hexagon-netty/build.gradle +++ b/kotlin/hexagon-netty/build.gradle @@ -4,7 +4,7 @@ plugins { } ext { - hexagonVersion = "2.8.4" + hexagonVersion = "2.8.6" gradleScripts = "https://raw.githubusercontent.com/hexagonkt/hexagon/$hexagonVersion/gradle" } diff --git a/nim/Dockerfile b/nim/Dockerfile index 06889bf4363..8cf9f2b3354 100644 --- a/nim/Dockerfile +++ b/nim/Dockerfile @@ -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 diff --git a/nim/happyx/config.yaml b/nim/happyx/config.yaml index c2c65db31e1..3d97ad42ad3 100644 --- a/nim/happyx/config.yaml +++ b/nim/happyx/config.yaml @@ -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 diff --git a/nim/happyx/server.nimble b/nim/happyx/server.nimble index ff43deda860..072647832e3 100644 --- a/nim/happyx/server.nimble +++ b/nim/happyx/server.nimble @@ -2,7 +2,7 @@ description = "Asynchronous web-framework written with ♥" author = "HapticX" -version = "0.15.1" +version = "0.17.2" license = "GNU GPLv3" srcDir = "src" installExt = @["nim"] @@ -10,7 +10,7 @@ bin = @["hpx"] # Dependencies -requires "happyx >= 0.15 & < 0.16" +requires "happyx >= 0.17 & < 0.18" requires "cligen" requires "regex" requires "httpx" diff --git a/php/laravel/composer.json b/php/laravel/composer.json index 46e3f7c892a..f7a150eeb38 100644 --- a/php/laravel/composer.json +++ b/php/laravel/composer.json @@ -1,6 +1,6 @@ { "require": { - "laravel/framework": "~10.10.0" + "laravel/framework": "~10.11.0" }, "autoload": { "psr-4": { diff --git a/php/laravel/config.yaml b/php/laravel/config.yaml index 0a2958608c2..8f73956ff9e 100644 --- a/php/laravel/config.yaml +++ b/php/laravel/config.yaml @@ -1,6 +1,6 @@ framework: website: laravel.com - version: "10.10" + version: 10.11 environment: APP_ENV: production diff --git a/python/starlette/config.yaml b/python/starlette/config.yaml index 5c666630e96..f5a03d2f334 100644 --- a/python/starlette/config.yaml +++ b/python/starlette/config.yaml @@ -1,7 +1,7 @@ framework: website: www.starlette.io github: encode/starlette - version: 0.26 + version: 0.27 engines: - uvicorn diff --git a/python/starlette/requirements.txt b/python/starlette/requirements.txt index faef3e68ae4..580d2f1612d 100644 --- a/python/starlette/requirements.txt +++ b/python/starlette/requirements.txt @@ -1 +1 @@ -starlette>=0.26,<0.27 \ No newline at end of file +starlette>=0.27,<0.28 \ No newline at end of file