-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,13 @@ nginx (1.26.2+mod.4-1hn1DebRelDistrib) UNRELEASED; urgency=medium | |
|
||
* Add NGINX Native OpenTelemetry (OTel) Module | ||
* 6c1659a20ba946cdde21e9dbc52e7c740b06d968 modules/nginx-otel (v0.1.1-18-g6c1659a) | ||
* Update modules | ||
* 1dd84ae5f7c5f5421be7ce5fb155d249238fed58 modules/lua-resty-openssl (0.4.0-438-g1dd84ae) | ||
* 4a97ba248100e956188308dbd909e00189fbd947 modules/lua-resty-shdict-simple (v0.01rc5-2-g4a97ba2) | ||
* 0aeafc24fbf607685d2a4d7c3ee9d0b83a092d8c modules/lua-resty-shell (v0.03-9-g0aeafc2) | ||
* 629ae1f6f2f84b20d686dce2e9cd730b4edbe93e modules/nginx-http-shibboleth (v20150121-153-g629ae1f) | ||
* 78e3edf7505cd04a5df0b7936bcd2d89e95bdda8 modules/njs (0.8.6-46-g78e3edf7) | ||
* b22705c041db0d1f4b131136928469f035336327 modules/stream-lua-nginx-module (v0.0.8-115-gb22705c) | ||
|
||
-- Hiroaki Nakamura <[email protected]> Sat, 14 Dec 2024 03:10:59 +0900 | ||
|
||
|
Submodule lua-resty-openssl
updated
6 files
+14 −7 | .github/workflows/tests.yml | |
+1 −2 | lib/resty/openssl/pkey.lua | |
+3 −1 | scripts/templates/x509_tests.j2 | |
+2 −1 | scripts/type_x509_req.py | |
+19 −0 | t/openssl/pkey.t | |
+1 −1 | t/openssl/x509/csr.t |
Submodule njs
updated
14 files
+25 −0 | CHANGES | |
+5 −2 | nginx/ngx_http_js_module.c | |
+84 −81 | nginx/ngx_js.c | |
+0 −2 | nginx/ngx_js.h | |
+20 −2 | nginx/t/js_return.t | |
+19 −2 | nginx/t/js_subrequests.t | |
+2 −0 | src/njs.h | |
+4 −0 | src/njs_builtin.c | |
+219 −4 | src/njs_object.c | |
+1 −0 | src/njs_object.h | |
+1 −0 | src/njs_object_prop.c | |
+41 −10 | src/njs_vm.c | |
+2 −0 | src/njs_vmcode.c | |
+61 −2 | src/test/njs_unit_test.c |
Submodule stream-lua-nginx-module
updated
4 files
+2 −2 | .travis.yml | |
+4 −13 | src/ngx_stream_lua_socket_tcp.c | |
+57 −1 | t/058-tcp-socket.t | |
+1 −1 | t/062-count.t |