Skip to content

Commit bee3a1b

Browse files
authored
njs: bump to v0.9.0 (#163)
* njs: bump to v0.9.0 https://github.com/nginx/njs/releases/tag/0.9.0 Changes with njs 0.9.0 06 May 2025 Core: *) Feature: refactored working with built-in strings, symbols and small integers. Performance improvements (arewefastyet/benchmarks/v8-v7 benchmark): Richards: +57% (631 → 989) Crypto: +7% (1445 → 1551) RayTrace: +37% (562 → 772) NavierStokes: +20% (2062 → 2465) Overall score: +29% (1014 → 1307) *) Bugfix: fixed regexp undefined value of captured group. *) Bugfix: fixed GCC 15 build with -Wunterminated-string-initialization. * Update the readme.md file
1 parent fe46d25 commit bee3a1b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/dockerimage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
111111
- name: Test njs command line
112112
run: |
113-
echo "console.log('Using njs v' + njs.version)" | docker run -i --rm macbre/nginx njs -q - | grep "Using njs v0.8.10"
113+
echo "console.log('Using njs v' + njs.version)" | docker run -i --rm macbre/nginx njs -q - | grep "Using njs v0.9.0"
114114
115115
- name: Show logs
116116
if: always()

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ ARG NGX_BROTLI_COMMIT=a71f9312c2deb28875acc7bacfdd5695a111aa53
1010
# https://github.com/google/boringssl
1111
#ARG BORINGSSL_COMMIT=fae0964b3d44e94ca2a2d21f86e61dabe683d130
1212

13-
# https://github.com/nginx/njs/releases/tag/0.8.10
14-
ARG NJS_COMMIT=9d3e71ca656b920e3e63b0e647aca8e91669d29a
13+
# https://github.com/nginx/njs/releases/tag/0.9.0
14+
ARG NJS_COMMIT=fcb99b68f86a72c96e21b81b3b78251174dbd3bf
1515

1616
# https://github.com/openresty/headers-more-nginx-module#installation
1717
# we want to have https://github.com/openresty/headers-more-nginx-module/commit/e536bc595d8b490dbc9cf5999ec48fca3f488632

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ configure arguments:
8989
9090
9191
$ docker run -it macbre/nginx-http3 njs -v
92-
0.8.10
92+
0.9.0
9393
```
9494

9595
## SSL Grade A+ handling

0 commit comments

Comments
 (0)