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 some deps to the latest versions #14231

Merged
merged 6 commits into from
Jan 29, 2025
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
6 changes: 3 additions & 3 deletions .requirements
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ LIBEXPAT_SHA256=fd03b7172b3bd7427a3e7a812063f74754f24542429b634e0db6511b53fb2278

# Note: git repositories can be loaded from local path if path is set as value

LUA_KONG_NGINX_MODULE=c967e8326179c86680c0f34d82ee087765aed19a # 0.15.0
LUA_KONG_NGINX_MODULE=cd41aaa260eb54ec8f4c55b755b62351853b20fb # 0.15.1
LUA_RESTY_LMDB=9da0e9f3313960d06e2d8e718b7ac494faa500f1 # 1.6.0
LUA_RESTY_EVENTS=bc85295b7c23eda2dbf2b4acec35c93f77b26787 # 0.3.1
LUA_RESTY_SIMDJSON=7e6466ce91b2bc763b45701a4f055e94b1e8143b # 1.1.0
LUA_RESTY_SIMDJSON=176755a45f128fd4b3069c1bdee24d14bfb6900a # 1.2.0
LUA_RESTY_WEBSOCKET=966c69c39f03029b9b42ec0f8e55aaed7d6eebc0 # 0.4.0.1
ATC_ROUTER=4d29e10517e2c9d1dae3966f4034b38c557e2eaa # 1.7.1
SNAPPY=23b3286820105438c5dbb9bc22f1bb85c5812c8a # 1.2.0
SNAPPY=2c94e11145f0b7b184b831577c93e5a41c4c0346 # 1.2.1

KONG_MANAGER=nightly
NGX_WASM_MODULE=9136e463a6f1d80755ce66c88c3ddecd0eb5e25d
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
OS := $(shell uname | awk '{print tolower($$0)}')
MACHINE := $(shell uname -m)

DEV_ROCKS = "busted 2.2.0" "busted-hjtest 0.0.5" "luacheck 1.2.0" "lua-llthreads2 0.1.6" "ldoc 1.5.0" "luacov 0.15.0" "lua-reqwest 0.1.1"
DEV_ROCKS = "busted 2.2.0" "busted-hjtest 0.0.5" "luacheck 1.2.0" "lua-llthreads2 0.1.6" "ldoc 1.5.0" "luacov 0.16.0" "lua-reqwest 0.1.1"
WIN_SCRIPTS = "bin/busted" "bin/kong" "bin/kong-health"
BUSTED_ARGS ?= -v
TEST_CMD ?= bin/busted $(BUSTED_ARGS)
Expand Down Expand Up @@ -44,7 +44,7 @@ endif
ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
KONG_SOURCE_LOCATION ?= $(ROOT_DIR)
GRPCURL_VERSION ?= 1.8.5
BAZLISK_VERSION ?= 1.20.0
BAZLISK_VERSION ?= 1.25.0
H2CLIENT_VERSION ?= 0.4.4
BAZEL := $(shell command -v bazel 2> /dev/null)
VENV = /dev/null # backward compatibility when no venv is built
Expand Down
10 changes: 5 additions & 5 deletions build/nfpm/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ nfpm_release_select = repository_rule(

def nfpm_repositories():
npfm_matrix = [
["linux", "x86_64", "3e1fe85c9a224a221c64cf72fc19e7cd6a0a51a5c4f4b336e3b8eccd417116a3"],
["linux", "arm64", "df8f272195b7ddb09af9575673a9b8111f9eb7529cdd0a3fac4d44b52513a1e1"],
["Darwin", "x86_64", "0213fa5d5af6f209d953c963103f9b6aec8a0e89d4bf0ab3d531f5f8b20b8eeb"],
["Darwin", "arm64", "5162ce5a59fe8d3b511583cb604c34d08bd2bcced87d9159c7005fc35287b9cd"],
["linux", "x86_64", "e763ba82cc844c0084b66a386ccaff801b3e655a5bb20d222c3329880ff2e958"],
["linux", "arm64", "985496acee0bc6d7fdb2a41f94208120a7cf025e37446286c4aaa0988a18f268"],
["Darwin", "x86_64", "9b891d9386609dbd91d5aa76bde61342bc0f48514b8759956489fe2eaf6622b7"],
["Darwin", "arm64", "5d192dd168c3f9f507db977d34c888b9f7c07331a5ba4099750809de3d0d010a"],
]
for name, arch, sha in npfm_matrix:
http_archive(
name = "nfpm_%s_%s" % (name, arch),
url = "https://github.com/goreleaser/nfpm/releases/download/v2.37.1/nfpm_2.37.1_%s_%s.tar.gz" % (name, arch),
url = "https://github.com/goreleaser/nfpm/releases/download/v2.41.2/nfpm_2.41.2_%s_%s.tar.gz" % (name, arch),
sha256 = sha,
build_file = "//build/nfpm:BUILD.bazel",
)
Expand Down
Loading