Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump lua-resty-events from 0.2.1 to 0.3.0 #13228

Merged
merged 2 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .requirements
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ LIBEXPAT_SHA256=d4cf38d26e21a56654ffe4acd9cd5481164619626802328506a2869afab29ab3

LUA_KONG_NGINX_MODULE=a8411f7cf4289049f0bd3e8e40088e7256389ed3 # 0.11.0
LUA_RESTY_LMDB=7d2581cbe30cde18a8482d820c227ca0845c0ded # 1.4.2
LUA_RESTY_EVENTS=21d152d42ace72e1d51b782ca6827b851cd6a1d4 # 0.2.1
LUA_RESTY_EVENTS=2dcd1d7a256c53103c0fdbe804f419174e0ea8ba # 0.3.0
LUA_RESTY_WEBSOCKET=966c69c39f03029b9b42ec0f8e55aaed7d6eebc0 # 0.4.0.1
ATC_ROUTER=ffd11db657115769bf94f0c4f915f98300bc26b6 # 1.6.2
SNAPPY=23b3286820105438c5dbb9bc22f1bb85c5812c8a # 1.2.0
Expand Down
2 changes: 1 addition & 1 deletion changelog/unreleased/kong/bump-lua-resty-events.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
message: "Bumped lua-resty-events to 0.2.1"
message: "Bumped lua-resty-events to 0.3.0"
type: dependency
scope: Core
2 changes: 1 addition & 1 deletion changelog/unreleased/kong/bump-lua-resty-healthcheck.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
message: "Bumped lua-resty-healthcheck from 3.0.1 to 3.0.2, to reduce active healthcheck timer usage."
message: "Bumped lua-resty-healthcheck from 3.0.1 to 3.1.0, to reduce active healthcheck timer usage."
type: dependency
scope: Core
2 changes: 1 addition & 1 deletion kong-3.8.0-0.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies = {
"binaryheap >= 0.4",
"luaxxhash >= 1.0",
"lua-protobuf == 0.5.1",
"lua-resty-healthcheck == 3.0.2",
"lua-resty-healthcheck == 3.1.0",
"lua-messagepack == 0.5.4",
"lua-resty-aws == 1.5.0",
"lua-resty-openssl == 1.4.0",
Expand Down
3 changes: 3 additions & 0 deletions kong/global.lua
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,9 @@ function _GLOBAL.init_worker_events()
listening = listening, -- unix socket for broker listening
max_queue_len = 1024 * 50, -- max queue len for events buffering
max_payload_len = max_payload_len, -- max payload size in bytes
enable_privileged_agent = configuration and configuration.dedicated_config_processing
and configuration.role == "data_plane"
or false
}

worker_events = require "resty.events.compat"
Expand Down
Loading