Skip to content

Commit 0f2e88e

Browse files
iamNoah1rchshld
authored andcommitted
Update versions of components for base image (kubernetes#7411)
* update versions and checksums * change requests from PR
1 parent faad927 commit 0f2e88e

File tree

1 file changed

+126
-57
lines changed

1 file changed

+126
-57
lines changed

images/nginx/rootfs/build.sh

Lines changed: 126 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -19,43 +19,112 @@ set -o nounset
1919
set -o pipefail
2020

2121
export NGINX_VERSION=1.20.1
22+
23+
# Check for recent changes: https://github.com/vision5/ngx_devel_kit/compare/v0.3.1...master
2224
export NDK_VERSION=0.3.1
25+
26+
# Check for recent changes: https://github.com/openresty/set-misc-nginx-module/compare/v0.32...master
2327
export SETMISC_VERSION=0.32
28+
29+
# Check for recent changes: https://github.com/openresty/headers-more-nginx-module/compare/v0.33...master
2430
export MORE_HEADERS_VERSION=0.33
25-
export NGINX_DIGEST_AUTH=cd8641886c873cf543255aeda20d23e4cd603d05
26-
export NGINX_SUBSTITUTIONS=bc58cb11844bc42735bbaef7085ea86ace46d05b
27-
export NGINX_OPENTRACING_VERSION=0.11.0
28-
export OPENTRACING_CPP_VERSION=1.6.0
31+
32+
# Check for recent changes: https://github.com/atomx/nginx-http-auth-digest/compare/v1.0.0...atomx:master
33+
export NGINX_DIGEST_AUTH=1.0.0
34+
35+
# Check for recent changes: https://github.com/yaoweibin/ngx_http_substitutions_filter_module/compare/v0.6.4...master
36+
export NGINX_SUBSTITUTIONS=b8a71eacc7f986ba091282ab8b1bbbc6ae1807e0
37+
38+
# Check for recent changes: https://github.com/opentracing-contrib/nginx-opentracing/compare/v0.19.0...master
39+
export NGINX_OPENTRACING_VERSION=0.19.0
40+
41+
#Check for recent changes: https://github.com/opentracing/opentracing-cpp/compare/v1.6.0...master
42+
export OPENTRACING_CPP_VERSION=f86b33f3d9e7322b1298ba62d5ffa7a9519c4c41
43+
44+
# Check for recent changes: https://github.com/rnburn/zipkin-cpp-opentracing/compare/v0.5.2...master
2945
export ZIPKIN_CPP_VERSION=f69593138ff84ca2f6bc115992e18ca3d35f344a
30-
export YAML_CPP_VERSION=yaml-cpp-0.6.3
46+
47+
# Check for recent changes: https://github.com/jbeder/yaml-cpp/compare/yaml-cpp-0.7.0...master
48+
export YAML_CPP_VERSION=yaml-cpp-0.7.0
49+
50+
# Check for recent changes: https://github.com/jaegertracing/jaeger-client-cpp/compare/v0.7.0...master
3151
export JAEGER_VERSION=0.7.0
32-
export MSGPACK_VERSION=3.2.1
33-
export DATADOG_CPP_VERSION=7b560e5c13324c0581476dad3bd8ac4ac5f64045
34-
export MODSECURITY_VERSION=22e53aba4e3ae8c7d59a3672d6727e49246afe96
35-
export MODSECURITY_LIB_VERSION=v3.0.4
36-
export OWASP_MODSECURITY_CRS_VERSION=v3.3.0
37-
export LUA_NGX_VERSION=138c1b96423aa26defe00fe64dd5760ef17e5ad8
38-
export LUA_STREAM_NGX_VERSION=0.0.9
39-
export LUA_UPSTREAM_VERSION=0.07
40-
export LUA_CJSON_VERSION=2.1.0.8
52+
53+
# Check for recent changes: https://github.com/msgpack/msgpack-c/compare/cpp-3.3.0...master
54+
export MSGPACK_VERSION=3.3.0
55+
56+
# Check for recent changes: https://github.com/DataDog/dd-opentracing-cpp/compare/v1.3.0...master
57+
export DATADOG_CPP_VERSION=af53c523787cca108ae9f458ea5c962e48187a36
58+
59+
# Check for recent changes: https://github.com/SpiderLabs/ModSecurity-nginx/compare/v1.0.2...master
60+
export MODSECURITY_VERSION=1.0.2
61+
62+
# Check for recent changes: https://github.com/SpiderLabs/ModSecurity/compare/v3.0.5...v3/master
63+
export MODSECURITY_LIB_VERSION=v3.0.5
64+
65+
# Check for recent changes: https://github.com/coreruleset/coreruleset/compare/v3.3.2...v3.3/master
66+
export OWASP_MODSECURITY_CRS_VERSION=v3.3.2
67+
68+
# Check for recent changes: https://github.com/openresty/lua-nginx-module/compare/v0.10.20...master
69+
export LUA_NGX_VERSION=b721656a9127255003b696b42ccc871c7ec18d59
70+
71+
# Check for recent changes: https://github.com/openresty/stream-lua-nginx-module/compare/v0.0.10...master
72+
export LUA_STREAM_NGX_VERSION=74f8c8bca5b95cecbf42d4e1a465bc08cd075a9b
73+
74+
# Check for recent changes: https://github.com/openresty/lua-upstream-nginx-module/compare/v0.07...master
75+
export LUA_UPSTREAM_VERSION=8aa93ead98ba2060d4efd594ae33a35d153589bf
76+
77+
# Check for recent changes: https://github.com/openresty/lua-cjson/compare/2.1.0.8...openresty:master
78+
export LUA_CJSON_VERSION=4b350c531de3d71008c77ae94e59275b8371b4dc
79+
4180
export NGINX_INFLUXDB_VERSION=5b09391cb7b9a889687c0aa67964c06a2d933e8b
42-
export GEOIP2_VERSION=3.3
43-
export NGINX_AJP_VERSION=bf6cd93f2098b59260de8d494f0f4b1f11a84627
4481

45-
export LUAJIT_VERSION=2.1-20201027
82+
# Check for recent changes: https://github.com/leev/ngx_http_geoip2_module/compare/3.3...master
83+
export GEOIP2_VERSION=a26c6beed77e81553686852dceb6c7fdacc5970d
84+
85+
# Check for recent changes: https://github.com/yaoweibin/nginx_ajp_module/compare/v0.3.0...master
86+
export NGINX_AJP_VERSION=a964a0bcc6a9f2bfb82a13752d7794a36319ffac
87+
88+
# Check for recent changes: https://github.com/openresty/luajit2/compare/v2.1-20210510...v2.1-agentzh
89+
export LUAJIT_VERSION=2.1-20210510
90+
91+
# Check for recent changes: https://github.com/openresty/lua-resty-balancer/compare/v0.03...master
92+
export LUA_RESTY_BALANCER=56fd8ad03d5718f507a5129edc43a25948364b9f
93+
94+
# Check for recent changes: https://github.com/openresty/lua-resty-lrucache/compare/v0.11...master
95+
export LUA_RESTY_CACHE=0.11
96+
97+
# Check for recent changes: https://github.com/openresty/lua-resty-core/compare/v0.1.22...master
98+
export LUA_RESTY_CORE=0.1.22
99+
100+
# Check for recent changes: https://github.com/cloudflare/lua-resty-cookie/compare/v0.1.0...master
101+
export LUA_RESTY_COOKIE_VERSION=303e32e512defced053a6484bc0745cf9dc0d39e
46102

47-
export LUA_RESTY_BALANCER=af4508f7aa5560c7d810922c2515b557f9e5d51a
48-
export LUA_RESTY_CACHE=0.10
49-
export LUA_RESTY_CORE=0.1.21
50-
export LUA_RESTY_COOKIE_VERSION=766ad8c15e498850ac77f5e0265f1d3f30dc4027
51-
export LUA_RESTY_DNS=0.21
52-
export LUA_RESTY_HTTP=0.15
103+
# Check for recent changes: https://github.com/openresty/lua-resty-dns/compare/v0.22...master
104+
export LUA_RESTY_DNS=0.22
105+
106+
# Check for recent changes: https://github.com/ledgetech/lua-resty-http/compare/v0.16.1...master
107+
export LUA_RESTY_HTTP=0ce55d6d15da140ecc5966fa848204c6fd9074e8
108+
109+
# Check for recent changes: https://github.com/openresty/lua-resty-lock/compare/v0.08...master
53110
export LUA_RESTY_LOCK=0.08
111+
112+
# Check for recent changes: https://github.com/openresty/lua-resty-upload/compare/v0.10...master
54113
export LUA_RESTY_UPLOAD_VERSION=0.10
55-
export LUA_RESTY_STRING_VERSION=0.12
56-
export LUA_RESTY_MEMCACHED_VERSION=0.15
114+
115+
# Check for recent changes: https://github.com/openresty/lua-resty-string/compare/v0.14...master
116+
export LUA_RESTY_STRING_VERSION=9ace36f2dde09451c377c839117ade45eb02d460
117+
118+
# Check for recent changes: https://github.com/openresty/lua-resty-memcached/compare/v0.16...master
119+
export LUA_RESTY_MEMCACHED_VERSION=0.16
120+
121+
# Check for recent changes: https://github.com/openresty/lua-resty-redis/compare/v0.29...master
57122
export LUA_RESTY_REDIS_VERSION=0.29
58-
export LUA_RESTY_IPMATCHER_VERSION=1a0a1c58fd085b15eedee58de8b5f45c27aff7bc
123+
124+
# Check for recent changes: https://github.com/api7/lua-resty-ipmatcher/compare/v0.6...master
125+
export LUA_RESTY_IPMATCHER_VERSION=211e0d2eb8bbb558b79368f89948a0bafdc23654
126+
127+
# Check for recent changes: https://github.com/ElvinEfendi/lua-resty-global-throttle/compare/v0.2.0...main
59128
export LUA_RESTY_GLOBAL_THROTTLE_VERSION=0.2.0
60129

61130
export BUILD_PATH=/tmp/build
@@ -133,94 +202,94 @@ get_src f1ad2459c4ee6a61771aa84f77871f4bfe42943a4aa4c30c62ba3f981f52c201 \
133202
get_src a3dcbab117a9c103bc1ea5200fc00a7b7d2af97ff7fd525f16f8ac2632e30fbf \
134203
"https://github.com/openresty/headers-more-nginx-module/archive/v$MORE_HEADERS_VERSION.tar.gz"
135204

136-
get_src fe683831f832aae4737de1e1026a4454017c2d5f98cb88b08c5411dc380062f8 \
137-
"https://github.com/atomx/nginx-http-auth-digest/archive/$NGINX_DIGEST_AUTH.tar.gz"
205+
get_src f09851e6309560a8ff3e901548405066c83f1f6ff88aa7171e0763bd9514762b \
206+
"https://github.com/atomx/nginx-http-auth-digest/archive/v$NGINX_DIGEST_AUTH.tar.gz"
138207

139-
get_src 618551948ab14cac51d6e4ad00452312c7b09938f59ebff4f93875013be31f2d \
208+
get_src a98b48947359166326d58700ccdc27256d2648218072da138ab6b47de47fbd8f \
140209
"https://github.com/yaoweibin/ngx_http_substitutions_filter_module/archive/$NGINX_SUBSTITUTIONS.tar.gz"
141210

142-
get_src a0087c61e82651dbdeeef1ceec375ce103f0ce571a1c8b35863cff4e596434a6 \
211+
get_src 6f97776ebdf019b105a755c7736b70bdbd7e575c7f0d39db5fe127873c7abf17 \
143212
"https://github.com/opentracing-contrib/nginx-opentracing/archive/v$NGINX_OPENTRACING_VERSION.tar.gz"
144213

145-
get_src 5b170042da4d1c4c231df6594da120875429d5231e9baa5179822ee8d1054ac3 \
146-
"https://github.com/opentracing/opentracing-cpp/archive/v$OPENTRACING_CPP_VERSION.tar.gz"
214+
get_src cbe625cba85291712253db5bc3870d60c709acfad9a8af5a302673d3d201e3ea \
215+
"https://github.com/opentracing/opentracing-cpp/archive/$OPENTRACING_CPP_VERSION.tar.gz"
147216

148217
get_src 71de3d0658935db7ccea20e006b35e58ddc7e4c18878b9523f2addc2371e9270 \
149218
"https://github.com/rnburn/zipkin-cpp-opentracing/archive/$ZIPKIN_CPP_VERSION.tar.gz"
150219

151-
get_src 38f2ae43fceda683f652065e13a80b14a580ede476a4b44eb0ddd85665380360 \
152-
"https://github.com/SpiderLabs/ModSecurity-nginx/archive/$MODSECURITY_VERSION.tar.gz"
220+
get_src f8d3ff15520df736c5e20e91d5852ec27e0874566c2afce7dcb979e2298d6980 \
221+
"https://github.com/SpiderLabs/ModSecurity-nginx/archive/v$MODSECURITY_VERSION.tar.gz"
153222

154-
get_src 77ea1b90b3718aa0c324207cb29418f5bced2354c2e483a9523d98c3460af1ed \
223+
get_src 43e6a9fcb146ad871515f0d0873947e5d497a1c9c60c58cb102a97b47208b7c3 \
155224
"https://github.com/jbeder/yaml-cpp/archive/$YAML_CPP_VERSION.tar.gz"
156225

157226
get_src 3a3a03060bf5e3fef52c9a2de02e6035cb557f389453d8f3b0c1d3d570636994 \
158227
"https://github.com/jaegertracing/jaeger-client-cpp/archive/v$JAEGER_VERSION.tar.gz"
159228

160-
get_src 464f46744a6be778626d11452c4db3c2d09461080c6db42e358e21af19d542f6 \
229+
get_src 754c3ace499a63e45b77ef4bcab4ee602c2c414f58403bce826b76ffc2f77d0b \
161230
"https://github.com/msgpack/msgpack-c/archive/cpp-$MSGPACK_VERSION.tar.gz"
162231

163-
get_src 7dc05df3d1824b02c6958ff37f9e682b73c1737dcfee93212ca3f6c5bfae08f3 \
232+
get_src 085a9fb2bf9c4466977595a5fe5156d76f3a2d9a2a81be3cacaff2021773393e \
164233
"https://github.com/openresty/lua-nginx-module/archive/$LUA_NGX_VERSION.tar.gz"
165234

166-
get_src 6fcf7054f412a19c23c1ac3c0663f42f40bccc907d98c5d1657ae5cab9973ee9 \
167-
"https://github.com/openresty/stream-lua-nginx-module/archive/v$LUA_STREAM_NGX_VERSION.tar.gz"
235+
get_src ba38c9f8e4265836ba7f2ac559ddf140693ff2f5ae33ab1e384f51f3992151ab \
236+
"https://github.com/openresty/stream-lua-nginx-module/archive/$LUA_STREAM_NGX_VERSION.tar.gz"
168237

169-
get_src 2a69815e4ae01aa8b170941a8e1a10b6f6a9aab699dee485d58f021dd933829a \
170-
"https://github.com/openresty/lua-upstream-nginx-module/archive/v$LUA_UPSTREAM_VERSION.tar.gz"
238+
get_src a92c9ee6682567605ece55d4eed5d1d54446ba6fba748cff0a2482aea5713d5f \
239+
"https://github.com/openresty/lua-upstream-nginx-module/archive/$LUA_UPSTREAM_VERSION.tar.gz"
171240

172-
get_src f74a0821b079ea1fd63dd8659064356fc3f421ff4b35c17877140d2b2841cc3b \
241+
get_src 1ee6dad809a5bb22efb45e6dac767f7ce544ad652d353a93d7f26b605f69fe3f \
173242
"https://github.com/openresty/luajit2/archive/v$LUAJIT_VERSION.tar.gz"
174243

175-
get_src 40cc298f22bc29621024b68503335dcce464e42bcf02246f5864d7f8f2f5c379 \
244+
get_src f29393f2cd9288105a0029a6a324fe1f7558a9e7e852d59a6355f7581bb90e30 \
176245
"https://github.com/DataDog/dd-opentracing-cpp/archive/$DATADOG_CPP_VERSION.tar.gz"
177246

178247
get_src 1af5a5632dc8b00ae103d51b7bf225de3a7f0df82f5c6a401996c080106e600e \
179248
"https://github.com/influxdata/nginx-influxdb-module/archive/$NGINX_INFLUXDB_VERSION.tar.gz"
180249

181-
get_src 41378438c833e313a18869d0c4a72704b4835c30acaf7fd68013ab6732ff78a7 \
250+
get_src 4c1933434572226942c65b2f2b26c8a536ab76aa771a3c7f6c2629faa764976b \
182251
"https://github.com/leev/ngx_http_geoip2_module/archive/$GEOIP2_VERSION.tar.gz"
183252

184-
get_src 5f629a50ba22347c441421091da70fdc2ac14586619934534e5a0f8a1390a950 \
253+
get_src 94d1512bf0e5e6ffa4eca0489db1279d51f45386fffcb8a1d2d9f7fe93518465 \
185254
"https://github.com/yaoweibin/nginx_ajp_module/archive/$NGINX_AJP_VERSION.tar.gz"
186255

187256
get_src 5d16e623d17d4f42cc64ea9cfb69ca960d313e12f5d828f785dd227cc483fcbd \
188257
"https://github.com/openresty/lua-resty-upload/archive/v$LUA_RESTY_UPLOAD_VERSION.tar.gz"
189258

190-
get_src bfd8c4b6c90aa9dcbe047ac798593a41a3f21edcb71904d50d8ac0e8c77d1132 \
191-
"https://github.com/openresty/lua-resty-string/archive/v$LUA_RESTY_STRING_VERSION.tar.gz"
259+
get_src 462c6b38792bab4ca8212bdfd3f2e38f6883bb45c8fb8a03474ea813e0fab853 \
260+
"https://github.com/openresty/lua-resty-string/archive/$LUA_RESTY_STRING_VERSION.tar.gz"
192261

193-
get_src a21ec0d78a5dc5856df2374890a8a58e51de866b3d5978aceb0109a094367630 \
262+
get_src b3d28adac2acee1e5904e9f65d6e80e0553b01647fa0701b812bc7e464de74ad \
194263
"https://github.com/openresty/lua-resty-balancer/archive/$LUA_RESTY_BALANCER.tar.gz"
195264

196-
get_src a377fbce78ba10f3ed3a8b5173ea318f8cf8da9d2ab127bb1e1f263078bf7da0 \
265+
get_src 4d971f711fad48c097070457c128ca36053835d8a3ba25a937e9991547d55d4d \
197266
"https://github.com/openresty/lua-resty-core/archive/v$LUA_RESTY_CORE.tar.gz"
198267

199-
get_src bd6bee4ccc6cf3307ab6ca0eea693a921fab9b067ba40ae12a652636da588ff7 \
268+
get_src 8d602af2669fb386931760916a39f6c9034f2363c4965f215042c086b8215238 \
200269
"https://github.com/openresty/lua-cjson/archive/$LUA_CJSON_VERSION.tar.gz"
201270

202-
get_src f818b5cef0881e5987606f2acda0e491531a0cb0c126d8dca02e2343edf641ef \
271+
get_src 5ed48c36231e2622b001308622d46a0077525ac2f751e8cc0c9905914254baa4 \
203272
"https://github.com/cloudflare/lua-resty-cookie/archive/$LUA_RESTY_COOKIE_VERSION.tar.gz"
204273

205-
get_src dae9fb572f04e7df0dabc228f21cdd8bbfa1ff88e682e983ef558585bc899de0 \
274+
get_src e810ed124fe788b8e4aac2c8960dda1b9a6f8d0ca94ce162f28d3f4d877df8af \
206275
"https://github.com/openresty/lua-resty-lrucache/archive/v$LUA_RESTY_CACHE.tar.gz"
207276

208277
get_src 2b4683f9abe73e18ca00345c65010c9056777970907a311d6e1699f753141de2 \
209278
"https://github.com/openresty/lua-resty-lock/archive/v$LUA_RESTY_LOCK.tar.gz"
210279

211-
get_src 4aca34f324d543754968359672dcf5f856234574ee4da360ce02c778d244572a \
280+
get_src 70e9a01eb32ccade0d5116a25bcffde0445b94ad35035ce06b94ccd260ad1bf0 \
212281
"https://github.com/openresty/lua-resty-dns/archive/v$LUA_RESTY_DNS.tar.gz"
213282

214-
get_src 987d5754a366d3ccbf745d2765f82595dcff5b94ba6c755eeb6d310447996f32 \
215-
"https://github.com/ledgetech/lua-resty-http/archive/v$LUA_RESTY_HTTP.tar.gz"
283+
get_src 9fcb6db95bc37b6fce77d3b3dc740d593f9d90dce0369b405eb04844d56ac43f \
284+
"https://github.com/ledgetech/lua-resty-http/archive/$LUA_RESTY_HTTP.tar.gz"
216285

217-
get_src 8257e8fbf78eb2cc2cf2fdca2fda3c2e755f7d3222e7d15cc322111a0f720f9c \
286+
get_src 42893da0e3de4ec180c9bf02f82608d78787290a70c5644b538f29d243147396 \
218287
"https://github.com/openresty/lua-resty-memcached/archive/v$LUA_RESTY_MEMCACHED_VERSION.tar.gz"
219288

220289
get_src 3f602af507aacd1f7aaeddfe7b77627fcde095fe9f115cb9d6ad8de2a52520e1 \
221290
"https://github.com/openresty/lua-resty-redis/archive/v$LUA_RESTY_REDIS_VERSION.tar.gz"
222291

223-
get_src d0eacda122ab36585936256cb222ea9147bc5ad1fc3f24fd3748475653dd27ad \
292+
get_src b8dbd502751140993a852381bcd8e98a402454596bd91838c1e51268d42db261 \
224293
"https://github.com/api7/lua-resty-ipmatcher/archive/$LUA_RESTY_IPMATCHER_VERSION.tar.gz"
225294

226295
get_src 0fb790e394510e73fdba1492e576aaec0b8ee9ef08e3e821ce253a07719cf7ea \

0 commit comments

Comments
 (0)