Skip to content

Commit

Permalink
chore(deps): bump ngx_wasm_module to ae7b61150de7c14eb901307daed403b6…
Browse files Browse the repository at this point in the history
…7f29e962 (#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 <[email protected]>

---------

Co-authored-by: team-gateway-bot <[email protected]>
Co-authored-by: Michael Martin <[email protected]>
Co-authored-by: Vinicius Mignot <[email protected]>
  • Loading branch information
4 people authored Jun 17, 2024
1 parent 8b6186c commit 19ee6a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .requirements
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions changelog/unreleased/kong/bump-ngx-wasm-module.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
message: "Bumped `ngx_wasm_module` to `ae7b61150de7c14eb901307daed403b67f29e962`"
type: dependency
7 changes: 0 additions & 7 deletions kong/runloop/wasm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

1 comment on commit 19ee6a9

@github-actions
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bazel Build

Docker image available kong/kong:19ee6a9dd66ad2275209b29406303a88f59eb3b6
Artifacts available https://github.com/Kong/kong/actions/runs/9556405453

Please sign in to comment.