File tree Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -98,9 +98,10 @@ RUN { \
9898# MediaWiki setup
9999WORKDIR /var/www/html
100100ARG MEDIAWIKI_VERSION
101+ # Set the user agent as releases.wikimedia.org will 403 us otherwise
101102# hadolint ignore=DL4006
102103RUN set -eux; \
103- curl -fSL "https://releases.wikimedia.org/mediawiki/$(echo ${MEDIAWIKI_VERSION} | cut -d. -f1,2)/mediawiki-${MEDIAWIKI_VERSION}.tar.gz" -o mediawiki.tar.gz; \
104+ curl -A "Mozilla/5.0" - fSL "https://releases.wikimedia.org/mediawiki/$(echo ${MEDIAWIKI_VERSION} | cut -d. -f1,2)/mediawiki-${MEDIAWIKI_VERSION}.tar.gz" -o mediawiki.tar.gz; \
104105 tar -x --strip-components=1 -f mediawiki.tar.gz; \
105106 rm -r mediawiki.tar.gz; \
106107 install -d /var/log/mediawiki -o www-data
Original file line number Diff line number Diff line change 1+ ## 5.0.1 (2025-08-26)
2+
3+
4+ ### 🩹 Fixes
5+
6+ - bump wikbase container to 5
7+
18# 5.0.0 (2025-07-24)
29
310
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ services:
66 # --------------------------------------------------
77
88 wikibase :
9- image : wikibase/wikibase:4
9+ image : wikibase/wikibase:5
1010 depends_on :
1111 mysql :
1212 condition : service_healthy
@@ -39,7 +39,7 @@ services:
3939 start_period : 5m
4040
4141 wikibase-jobrunner :
42- image : wikibase/wikibase:4
42+ image : wikibase/wikibase:5
4343 command : /jobrunner-entrypoint.sh
4444 depends_on :
4545 wikibase :
Original file line number Diff line number Diff line change 11{
22 "name" : " deploy" ,
3- "version" : " 5.0.0 " ,
3+ "version" : " 5.0.1 " ,
44 "nx" : {
55 "targets" : {
66 "lint" : {},
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ usage() {
2525}
2626
2727# Error handler to capture errors
28+ # shellcheck disable=SC2329 # spell check does not see the usage in the trap
2829error_handler () {
2930 # shellcheck disable=SC2317
3031 exit_code=1
You can’t perform that action at this time.
0 commit comments