DnsBlacklistUrls: Remove sorbs.net
Service is no longer running, so it's a default that doesn't do anything Bug: T382987 Change-Id: I3a21c12ba689928d38e410cbe2547ab7e616ac8a (cherry picked from commit 4a6fac8b7dadfdffe6e0e239b8a551436e147d97)
This commit is contained in:
parent
8892eed498
commit
30c8f812ac
4 changed files with 24 additions and 4 deletions
|
|
@ -1,5 +1,22 @@
|
||||||
= MediaWiki 1.43 =
|
= MediaWiki 1.43 =
|
||||||
|
|
||||||
|
PHP 8.1 workboard: https://phabricator.wikimedia.org/tag/php_8.1_support/
|
||||||
|
PHP 8.2 workboard: https://phabricator.wikimedia.org/tag/php_8.2_support/
|
||||||
|
PHP 8.3 workboard: https://phabricator.wikimedia.org/tag/php_8.3_support/
|
||||||
|
PHP 8.4 workboard: https://phabricator.wikimedia.org/tag/php_8.4_support/
|
||||||
|
|
||||||
|
== MediaWiki 1.43.1 ==
|
||||||
|
|
||||||
|
THIS IS NOT A RELEASE YET
|
||||||
|
|
||||||
|
=== Changes since MediaWiki 1.43.1 ===
|
||||||
|
|
||||||
|
* Localisation updates.
|
||||||
|
* (T382987) $wgDnsBlacklistUrls now defaults to an empty array. See the comment
|
||||||
|
in the "Configuration changes for system administrators" section.
|
||||||
|
|
||||||
|
== MediaWiki 1.43.0 ==
|
||||||
|
|
||||||
=== Changes since MediaWiki 1.43.0-rc.0 ===
|
=== Changes since MediaWiki 1.43.0-rc.0 ===
|
||||||
* (T381728) Use PHP 8.3 in MediaWiki-Docker
|
* (T381728) Use PHP 8.3 in MediaWiki-Docker
|
||||||
* (T382375) Misaligned label margins on Special:MathStatus
|
* (T382375) Misaligned label margins on Special:MathStatus
|
||||||
|
|
@ -58,6 +75,11 @@ For notes on 1.42.x and older releases, see HISTORY.
|
||||||
|
|
||||||
* $wgBlockTargetMigrationStage, which was introduced in 1.42, is now deprecated
|
* $wgBlockTargetMigrationStage, which was introduced in 1.42, is now deprecated
|
||||||
and has no effect.
|
and has no effect.
|
||||||
|
* (T382987) The default value of 'http.dnsbl.sorbs.net.' in $wgDnsBlacklistUrls
|
||||||
|
has been removed. This is because sorbs.net have stopped providing their
|
||||||
|
services. This means that if you have $wgEnableDnsBlacklist set to true, it
|
||||||
|
will no longer provide any value unless you add other servers to
|
||||||
|
$wgDnsBlacklistUrls.
|
||||||
|
|
||||||
==== New configuration ====
|
==== New configuration ====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5489,8 +5489,7 @@ config-schema:
|
||||||
proxies
|
proxies
|
||||||
@since 1.16
|
@since 1.16
|
||||||
DnsBlacklistUrls:
|
DnsBlacklistUrls:
|
||||||
default:
|
default: []
|
||||||
- http.dnsbl.sorbs.net.
|
|
||||||
type: array
|
type: array
|
||||||
description: |-
|
description: |-
|
||||||
List of DNS blacklists to use, if $wgEnableDnsBlacklist is true.
|
List of DNS blacklists to use, if $wgEnableDnsBlacklist is true.
|
||||||
|
|
|
||||||
|
|
@ -8663,7 +8663,7 @@ class MainConfigSchema {
|
||||||
* @since 1.16
|
* @since 1.16
|
||||||
*/
|
*/
|
||||||
public const DnsBlacklistUrls = [
|
public const DnsBlacklistUrls = [
|
||||||
'default' => [ 'http.dnsbl.sorbs.net.', ],
|
'default' => [],
|
||||||
'type' => 'list',
|
'type' => 'list',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1383,7 +1383,6 @@ return [
|
||||||
],
|
],
|
||||||
'EnableDnsBlacklist' => false,
|
'EnableDnsBlacklist' => false,
|
||||||
'DnsBlacklistUrls' => [
|
'DnsBlacklistUrls' => [
|
||||||
'http.dnsbl.sorbs.net.',
|
|
||||||
],
|
],
|
||||||
'ProxyList' => [
|
'ProxyList' => [
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue