Skip to content

Commit 83abfaa

Browse files
committedFeb 26, 2025
Update to MediaWiki 1.42.5
1 parent fec2474 commit 83abfaa

File tree

596 files changed

+8111
-2852
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

596 files changed

+8111
-2852
lines changed
 

‎RELEASE-NOTES-1.42

+25
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,26 @@ PHP 8.2 workboard: https://phabricator.wikimedia.org/tag/php_8.2_support/
55
PHP 8.3 workboard: https://phabricator.wikimedia.org/tag/php_8.3_support/
66
PHP 8.4 workboard: https://phabricator.wikimedia.org/tag/php_8.4_support/
77

8+
== MediaWiki 1.42.5 ==
9+
10+
This is a maintenance release of the MediaWiki 1.42 branch.
11+
12+
=== Changes since MediaWiki 1.42.4 ===
13+
* Localisation updates.
14+
* (T382783) Update wikimedia/parsoid to 0.19.1.
15+
* (T382590) PaserTestRunner: Avoid json_decode deprecation warning.
16+
* (T375707) exception: Convert E_STRICT errors to E_USER_NOTICE.
17+
* (T380755) session: Do not set session.use_trans_sid.
18+
* (T382987) $wgDnsBlacklistUrls now defaults to an empty array. See the comment
19+
in the "Configuration changes for system administrators" section.
20+
* (T382484) dumps: Use proc_close() to close proc_open() subprocess.
21+
* (T375707) MWExceptionHandler: Add error suppression to constant( 'E_STRICT' ).
22+
* (T384879) FormatMetadata: Prevent running preg_match() on null.
23+
* (T384995) specialpage: Improve handling of invalid lang codes on login/signup.
24+
* (T385055) resourceloader: Fix hash computation for virtual files with
25+
versionFilePath.
26+
* (T385169) MultiUsernameFilter: Don't try to split ids if they're not a string.
27+
828
== MediaWiki 1.42.4 ==
929

1030
This is a maintenance release of the MediaWiki 1.42 branch.
@@ -103,6 +123,11 @@ For notes on 1.41.x and older releases, see HISTORY.
103123

104124
=== Configuration changes for system administrators in 1.42 ===
105125
* Composer 1.x is no longer supported, and can no longer be used with MediaWiki.
126+
* (T382987) The default value of 'http.dnsbl.sorbs.net.' in $wgDnsBlacklistUrls
127+
has been removed. This is because sorbs.net have stopped providing their
128+
services. This means that if you have $wgEnableDnsBlacklist set to true, it
129+
will no longer provide any value unless you add other servers to
130+
$wgDnsBlacklistUrls.
106131

107132
==== New configuration ====
108133
* $wgMicroStashType: This setting allows for control of the object cache backend

‎docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
version: '3.7'
88
services:
99
mediawiki:
10-
image: docker-registry.wikimedia.org/dev/buster-php81-fpm:1.0.1-s2
10+
image: docker-registry.wikimedia.org/dev/bookworm-php83-fpm:1.0.0
1111
user: "${MW_DOCKER_UID}:${MW_DOCKER_GID}"
1212
volumes:
1313
- ./:/var/www/html/w:cached
@@ -30,7 +30,7 @@ services:
3030
XHPROF_ENABLE: '${XHPROF_ENABLE:-true}'
3131

3232
mediawiki-web:
33-
image: docker-registry.wikimedia.org/dev/buster-apache2:2.0.1
33+
image: docker-registry.wikimedia.org/dev/bookworm-apache2:1.0.1
3434
user: "${MW_DOCKER_UID}:${MW_DOCKER_GID}"
3535
ports:
3636
- "${MW_DOCKER_PORT:-8080}:8080"
@@ -43,7 +43,7 @@ services:
4343
MW_DOCKER_PORT: "${MW_DOCKER_PORT:-8080}"
4444

4545
mediawiki-jobrunner:
46-
image: docker-registry.wikimedia.org/dev/buster-php81-jobrunner:1.0.1-s2
46+
image: docker-registry.wikimedia.org/dev/bookworm-php83-jobrunner:1.0.0
4747
user: "${MW_DOCKER_UID}:${MW_DOCKER_GID}"
4848
volumes:
4949
- ./:/var/www/html/w:cached

0 commit comments

Comments
 (0)