From 19ee6a9dd66ad2275209b29406303a88f59eb3b6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 16:43:58 -0700 Subject: [PATCH] chore(deps): bump ngx_wasm_module to ae7b61150de7c14eb901307daed403b67f29e962 (#13222) * chore(deps): bump ngx_wasm_module to ae7b61150de7c14eb901307daed403b67f29e962 Note: The `start()` function of `resty.wasmx.proxy_wasm` was removed in the dependency, so it's been patched out here. This function is no longer required to run wasm filters from Lua land. Changes since 91d447ffd0e9bb08f11cc69d1aa9128ec36b4526: * ae7b611 - style(*) catch switch/case indentation * 6622c43 - chore(util) apply a fix to Test::Nginx as a patch * 223a346 - chore(ci) move CodeQL analysis to its own recurring workflow * 3dbf52a - fix(proxy-wasm) resume content phase after request_body read EAGAIN * 2f56de3 - refactor(lua-bridge) remove entry thread sleep timer handling * ef6ff76 - fix(proxy-wasm) cancel dispatches when immediately producing a response * b26106c - feat(proxy-wasm) dispatch errors do not interrupt filter chains * e96471f - refactor(lua-bridge) rewrite for full yielding support * b7e1b75 - chore(lib) add 'NGX_BUILD_SSL_STATIC' to build options hash * 277fac6 - chore(deps) bump Nginx to 1.27.0 * f74c6cb - chore(deps) bump OpenSSL to 3.3.1 * b19d405 - chore(release) fix MacOS releases * 8799cc9 - fix(lib) prevent a segfault loading an empty .wat module with V8 * 8ac549f - chore(ci) upload executable and coredumps on failure Co-authored-by: Vinicius Mignot --------- Co-authored-by: team-gateway-bot Co-authored-by: Michael Martin Co-authored-by: Vinicius Mignot --- .requirements | 2 +- changelog/unreleased/kong/bump-ngx-wasm-module.yml | 2 ++ kong/runloop/wasm.lua | 7 ------- 3 files changed, 3 insertions(+), 8 deletions(-) create mode 100644 changelog/unreleased/kong/bump-ngx-wasm-module.yml diff --git a/.requirements b/.requirements index 346d65fd07df..89647d56ae76 100644 --- a/.requirements +++ b/.requirements @@ -21,7 +21,7 @@ ATC_ROUTER=ffd11db657115769bf94f0c4f915f98300bc26b6 # 1.6.2 SNAPPY=23b3286820105438c5dbb9bc22f1bb85c5812c8a # 1.2.0 KONG_MANAGER=nightly -NGX_WASM_MODULE=91d447ffd0e9bb08f11cc69d1aa9128ec36b4526 +NGX_WASM_MODULE=ae7b61150de7c14eb901307daed403b67f29e962 WASMER=3.1.1 WASMTIME=19.0.0 V8=12.0.267.17 diff --git a/changelog/unreleased/kong/bump-ngx-wasm-module.yml b/changelog/unreleased/kong/bump-ngx-wasm-module.yml new file mode 100644 index 000000000000..35d788bab6c2 --- /dev/null +++ b/changelog/unreleased/kong/bump-ngx-wasm-module.yml @@ -0,0 +1,2 @@ +message: "Bumped `ngx_wasm_module` to `ae7b61150de7c14eb901307daed403b67f29e962`" +type: dependency diff --git a/kong/runloop/wasm.lua b/kong/runloop/wasm.lua index af9bbc2cbae8..aa352927c9b8 100644 --- a/kong/runloop/wasm.lua +++ b/kong/runloop/wasm.lua @@ -945,13 +945,6 @@ function _M.attach(ctx) return kong.response.error(500) end end - - jit.off(proxy_wasm.start) - ok, err = proxy_wasm.start() - if not ok then - log(CRIT, "failed to execute ", chain.label, " filter chain for request: ", err) - return kong.response.error(500) - end end