Merge "Fix return type in fallback8bitEncoding() documentation block"
[lhc/web/wiklou.git] / RELEASE-NOTES-1.33
1 = MediaWiki 1.33 =
2
3 == MediaWiki 1.33.0-PRERELEASE ==
4
5 THIS IS NOT A RELEASE YET
6
7 MediaWiki 1.33 is an alpha-quality branch and is not recommended for use in
8 production.
9
10 == Upgrading notes for 1.33 ==
11 1.33 has several database changes since 1.32, and will not work without schema
12 updates. Note that due to changes to some very large tables like the revision
13 table, the schema update may take quite long (minutes on a medium sized site,
14 many hours on a large site).
15
16 Don't forget to always back up your database before upgrading!
17
18 See the file UPGRADE for more detailed upgrade instructions, including
19 important information when upgrading from versions prior to 1.11.
20
21 Some specific notes for MediaWiki 1.33 upgrades are below:
22
23 * Some external link searches will not work correctly until update.php (or
24 refreshExternallinksIndex.php) is run. These include searches for links using
25 IP addresses, internationalized domain names, and possibly mailto links.
26 * If you ran migrateActors.php using an older version of MediaWiki and want to
27 run your wiki with $wgActorTableSchemaMigrationStage SCHEMA_COMPAT_READ_OLD,
28 note that log_search rows needed to find revision deletions by target user
29 were incorrectly deleted. See T215464 for details.
30 * If revision deletions were performed when the wiki was configured with
31 $wgActorTableSchemaMigrationStage SCHEMA_COMPAT_WRITE_BOTH and without
32 migrateActors.php having been run, the log_search table may contain rows with
33 empty values for "target_author_actor" which will prevent log searches for
34 revision deletions by target user from finding those log entries. These rows
35 may be corrected by (re-)running migrateActors.php.
36
37 For notes on 1.32.x and older releases, see HISTORY.
38
39 === Configuration changes for system administrators in 1.33 ===
40 ==== New configuration ====
41 * $wgEnablePartialBlocks – This enables the Partial Blocks feature, which gives
42 accounts with block permissions the ability to block users, IPs, and IP ranges
43 from editing specific pages, while allowing them to edit the rest of the wiki.
44 It is a temporary setting for gradual enablement, current default to `false`,
45 and will be set to `true` and then removed once initial development completes.
46
47 ==== Changed configuration ====
48 * $wgChangeTagsSchemaMigrationStage (T193868) — This temporary setting, added in
49 MediaWiki 1.32, now defaults to MIGRATION_NEW instead of MIGRATION_WRITE_BOTH.
50 * $wgPasswordPolicy – There is a new password policy to check that the account's
51 password is not in the large blacklist. This is enabled by default for the
52 built-in user groups bureaucrat, sysop, interface-admin, and bot. To configure
53 this for other user groups, set the `PasswordNotInLargeBlacklist` flag `true`.
54 * wgPasswordDefault – There is a new password type configuration using Argon2
55 password hashing (which requires PHP 7.2 and above). It's designed to resist
56 timing attacks, and (on systems with PHP 7.3+) GPU hacking; if you configure
57 argon2 to be used, by default, it will automatically choose the best available
58 algorithm depending on which version of PHP you have available. To use this,
59 you can set `$wgPasswordDefault = 'argon2';`.
60 * $wgActorTableSchemaMigrationStage now defaults to reading the new schema.
61 update.php will back-populate the new database fields due to the changed
62 setting, which may take some time on large wikis. You can avoid downtime by
63 following a process like that described in T188327.
64
65 ==== Removed configuration ====
66 * $wgTagStatisticsNewTable (T199334) — This temporary setting, added in
67 MediaWiki 1.32, has now been removed. When loading Special:Tags, MediaWiki
68 will now always use the `change_tag_def` instead of the `change_tag` table.
69 * $wgUseTidy, $wgTidyBin, $wgTidyConf, $wgTidyOpts, $wgTidyInternal, and
70 $wgDebugTidy – These options, all deprecated since 1.26, have now all been
71 removed, as MediaWiki now always tidies user output. The $wgTidyConfig setting
72 remains only for experimental features and debugging, and should not be used.
73 * $wgEnableParserCache – This setting has been deprecated since 1.26, has now
74 been removed. If you still desire to disable the parser cache, instead you can
75 set `$wgParserCacheType = CACHE_NONE;`.
76 * $wgCommentTableSchemaMigrationStage – This temporary migration setting has now
77 been removed. Code finding it unset should treat it as being MIGRATION_NEW.
78 * $wgAuth – This old setting, deprecated in 1.27, has been removed as part of
79 the removal of AuthPlugin.
80 * $wgSitesCacheFile – This configuration was introduced in 1.25 with the intent
81 to allow sites to configure a file in which to cache the SiteStore database
82 table, but it was never used. SiteStore already caches its information by
83 default using BagOStuff (e.g. Memcached or APC).
84 * $wgClockSkewFudge – This setting was used by User.php to let sites adjust by
85 how much MediaWiki would fudge when trying to minimize the chances of a
86 user.user_touched database update to the "current" timestamp being before the
87 value already there (e.g. due to clock skew between different servers). This
88 is no longer a problem, because the code now ensures the timestamp is always
89 higher than the previous one. The writes are guarded with CAS logic (check
90 and set), which prevents updates that would overlap.
91 * $wgDBmysql5 (T196185) - This experimental setting, deprecated in 1.31, has
92 been removed.
93
94 === New user-facing features in 1.33 ===
95 * (T96041) __EXPECTUNUSEDCATEGORY__ on a category page causes the category
96 to be hidden on Special:UnusedCategories.
97 * (T210814) SVGs are now by default displayed in wiki language on image
98 pages.
99 * Special:CreateAccount now warns the user if their chosen username has to be
100 normalized.
101 * (T205040) Multilingual images are now be displayed in the current parse
102 language where available.
103 * Special:ActiveUsers will no longer filter out users who became inactive since
104 the last time the active users query cache was updated.
105 * (T215675) RecentChange and ManualLogEntry implement new Taggable interface.
106 * (T215675) Added a hook, ManualLogEntryBeforePublish, to allow extensions
107 to modify (example: add tags) log entries.
108
109 === New developer features in 1.33 ===
110 * The AuthManagerLoginAuthenticateAudit hook has a new parameter for
111 additional information about the authentication event.
112 * TextContent::getText() was introduced as a replacement for
113 Content::getNativeData() for text-based content models.
114 * (T214706) LinksUpdate::getAddedExternalLinks() and
115 LinksUpdate::getRemovedExternalLinks() were introduced.
116 * (T213893) Added 'MaintenanceUpdateAddParams' hook
117 * (T219655) The MarkPatrolled hook has a new parameter for the tags
118 associated with this entry in the patrol log.
119
120 === External library changes in 1.33 ===
121 ==== New external libraries ====
122 * Added wikimedia/password-blacklist 0.1.4.
123 * Added guzzlehttp/guzzle 6.3.3.
124 * Added jakub-onderka/php-console-highlighter 0.3.2 explicitly (dev-only).
125
126 ==== Changed external libraries ====
127 * Updated OOUI from v0.29.2 to v0.31.2.
128 * Updated OOjs Router from pre-release to v0.2.0.
129 * Updated moment from v2.19.3 to v2.24.0.
130 * Updated wikimedia/xmp-reader from 0.6.0 to 0.6.2.
131 * Updated wikimedia/scoped-callback from 2.0.0 to 3.0.0.
132 * Updated wikimedia/ip-set from 1.2.0 to 2.0.1.
133 * The deprecated IPSet\IPSet alias was removed, Wikimedia\IPSet must be
134 used instead.
135 * Updated qunitjs from 2.6.2 to 2.9.1.
136 * Updated jquery-client from 2.0.1 to 2.0.2.
137 * Updated psy/psysh from 0.9.6 to 0.9.9 (dev-only).
138 * Updated nikic/php-parser from 3.1.3 to 3.1.5 (dev-only).
139 * Updated pear/net_smtp from 1.8.0 to 1.8.1.
140 * Updated cssjanus/cssjanus from 1.2.0 to 1.2.1.
141 * Updated wikimedia/php-session-serializer from 1.0.6 to 1.0.7.
142
143 ==== Removed external libraries ====
144 * (T219403) jquery.ui.spinner, deprecated since 1.31, was removed.
145
146 === Bug fixes in 1.33 ===
147 * (T164211) Special:UserRights could sometimes fail with a
148 "conflict detected" error when there weren't any conflicts.
149 * (T216029) Chrome redirects to Special:BadTitle after editing a section with
150 a non-Latin name on a page with non-Latin characters in title.
151
152 === Action API changes in 1.33 ===
153 * (T198913) Added 'ApiOptions' hook.
154 * The JSON formatversion=2 is no longer experimental.
155 * Internal API errors (those with code beginning "internal_api_error") will
156 include the exception class name in a data field named "errorclass".
157 * Class names are not guaranteed to remain stable, and in particular database
158 exceptions will now include the "Wikimedia\Rdbms\" prefix in the class name.
159 * The code including an exception class name is deprecated. In the future,
160 all internal errors will use code "internal_api_error".
161 * (T212356) When using action=delete on pages with many revisions, the module
162 may return a boolean-true 'scheduled' and no 'logid'. This signifies that the
163 deletion will be processed via the job queue.
164 * action=setnotificationtimestamp will now update the watchlist asynchronously
165 if entirewatchlist is set, so updates may not be visible immediately
166 * Block info will be added to "blocked" errors from more modules.
167 * (T216245) Autoblocks will now be spread by action=edit and action=move.
168 * action=query&meta=userinfo has a new uiprop, 'latestcontrib', that returns
169 the date of user's latest contribution.
170
171 === Action API internal changes in 1.33 ===
172 * A number of deprecated methods for API documentation, intended for overriding
173 by extensions, are no longer called by MediaWiki, and will emit deprecation
174 notices if your extension attempts to use them:
175 * ApiBase::getDescription() (deprecated in 1.25)
176 * ApiBase::getParamDescription() (deprecated in 1.25)
177 * ApiBase::getExamples() (deprecated in 1.25)
178 * ApiBase::getDescriptionMessage() (deprecated in 1.30)
179 Additionally, the 'APIGetDescription' and 'APIGetParamDescription' hooks have
180 been removed, as their only use was to let extensions override values returned
181 by getDescription() and getParamDescription(), respectively.
182 * API error codes may only contain ASCII letters, numbers, underscore, and
183 hyphen. Methods such as ApiBase::dieWithError() and
184 ApiMessageTrait::setApiCode() will throw an InvalidArgumentException if
185 passed a bad code.
186 * ApiBase::checkTitleUserPermissions() now takes an options array as its third
187 parameter. Passing a User object or null is deprecated.
188 * The api-feature-usage log channel now has log context. The text message is
189 deprecated and will be removed in the future.
190
191 === Languages updated in 1.33 ===
192 MediaWiki supports over 350 languages. Many localisations are updated regularly.
193 Below only new and removed languages are listed, as well as changes to languages
194 because of Phabricator reports.
195
196 * (T203908) Added language support for Eastern Pwo (kjp).
197 * (T213717) Fixed a translation error on Goan Konkani (gom-deva) translations
198 for NS_TEMPLATE.
199 * (T212221) Added $digitTransformTable for Santali (sat).
200 * (T216479) Added language support for Saisiyat (xsy).
201
202 === Breaking changes in 1.33 ===
203 * The parameteter $lang in DifferenceEngine::setTextLanguage must be of type
204 Language. Other types are deprecated since 1.32.
205 * Skin::doEditSectionLink requires type Language for the parameter $lang.
206 The parameters $tooltip and $lang are mandatory. Omitting the parameters is
207 deprecated since 1.32.
208 * Language::truncate(), deprecated in 1.31, has been removed.
209 * UtfNormal, deprecated in 1.25, was removed. Use UtfNormal\Validator directly
210 instead.
211 * (T197179) In OOUI HTMLForm fields, the parameters 'notice', 'notice-messages',
212 and 'notice-message', which were deprecated in 1.32, were removed. Instead,
213 use 'help', 'help-message', and 'help-messages'.
214 * (T197179) HTMLFormField::getNotices(), deprecated in 1.32, was removed.
215 * The "Parsoid v1" compatibility mappings in ParsoidVirtualRESTService and
216 RestbaseVirtualRESTService, deprecated since 1.26, have been removed.
217 Use the RESTBase v1 or Parsoid v3 API instead.
218 * ParserOptions defaults 'tidy' to true now, since the untidy modes of the
219 parser are being deprecated and ParserOptions::getCanonicalOverrides()
220 has always been true at any rate.
221 * Support for disabling tidy and external tidy implementations has been removed.
222 This was deprecated in 1.32. The pure PHP Remex tidy implementation is now
223 used and no configuration is necessary.
224 * A number of deprecated methods for API documentation, intended for overriding
225 by extensions, are no longer called by MediaWiki, and will emit deprecation
226 notices if your extension attempts to use them:
227 * ApiBase::getDescription() (deprecated in 1.25)
228 * ApiBase::getParamDescription() (deprecated in 1.25)
229 * ApiBase::getExamples() (deprecated in 1.25)
230 * ApiBase::getDescriptionMessage() (deprecated in 1.30)
231 Additionally, the 'APIGetDescription' and 'APIGetParamDescription' hooks have
232 been removed, as their only use was to let extensions override values returned
233 by getDescription() and getParamDescription(), respectively.
234 * The authentication hooks 'AbortAutoAccount' 'AbortNewAccount', 'AbortLogin',
235 'LoginUserMigrated', 'UserCreateForm', and 'UserLoginForm', all deprecated by
236 the creation of AuthManager in 1.27, have been removed. This also means that
237 the FakeAuthTemplate and LoginForm classes are removed, that FakeAuthTemplate
238 is no longer passed into LoginSignupSpecialPage->getFieldDefinitions(), and
239 that LoginSignupSpecialPage->getBCFieldDefinitions() is removed.
240 * The 'jquery.localize' module, deprecated in 1.32, has been removed. Instead,
241 use 'jquery.i18n'.
242 * The hooks LanguageGetSpecialPageAliases and LanguageGetMagic, deprecated since
243 1.16, have now been removed. Instead, use $specialPageAliases or $magicWords
244 respectively in a $wgExtensionMessagesFiles file.
245 * The following methods of the Preferences class, deprecated in 1.31, have been
246 removed:
247 * getSaveBlacklist()
248 * loadPreferenceValues()
249 * getOptionFromUser()
250 * profilePreferences()
251 * skinPreferences()
252 * filesPreferences()
253 * datetimePreferences()
254 * renderingPreferences()
255 * editingPreferences()
256 * rcPreferences()
257 * watchlistPreferences()
258 * searchPreferences()
259 * miscPreferences()
260 * generateSkinOptions()
261 * getDateOptions()
262 * getImageSizes()
263 * getThumbSizes()
264 * validateSignature()
265 * cleanSignature()
266 * getTimezoneOptions()
267 * filterIntval()
268 * filterTimezoneInput()
269 * getTimeZoneList()
270 * mw.util.jsMessage(), deprecated in 1.20, was removed. Use mw.notify instead.
271 * (T61113) User::EDIT_TOKEN_SUFFIX was removed. It was deprecated since 1.27.
272 * The 'mediawiki.api' module aliases, deprecated in 1.32, have been removed.
273 Specifically: mediawiki.api.category, mediawiki.api.edit,
274 mediawiki.api.login, mediawiki.api.options, mediawiki.api.parse,
275 mediawiki.api.upload, mediawiki.api.user, mediawiki.api.watch,
276 mediawiki.api.messages, and mediawiki.api.rollback.
277 * The 'jquery.byteLimit' module alias for 'jquery.lengthLimit',
278 deprecated in 1.31, was removed.
279 * Revision::fetchRevision(), deprecated in 1.28, was removed.
280 * Class SquidUpdate, deprecated in 1.27, was removed.
281 * Title->getSquidURLs(), deprecated in 1.27, was removed. Instead, use
282 Title->getCdnUrls().
283 * Title::escapeFragmentForURL(), deprecated in 1.30, was removed. Use
284 Sanitizer::escapeIdForLink() or escapeIdForExternalInterwiki() instead.
285 * Title->canTalk(), deprecated in 1.30, was removed. Instead, use
286 Title->canHaveTalkPage().
287 * Title's methods for site and user page related to CSS and JS, deprecated in
288 1.31, were removed:
289 * Title->isCssOrJsPage() — Use Title->isSiteConfigPage()
290 * Title->isCssJsSubpage() – Use Title->isUserConfigPage()
291 * Title->getSkinFromCssJsSubpage() – Use Title->getSkinFromConfigSubpage()
292 * Title->isCssSubpage() – Use Title->isUserCssConfigPage()
293 * Title->isJsSubpage() – Use Title->isUserJsConfigPage()
294 * SiteSQLStore, deprecated in 1.27 and whose only method, ::newInstance(),
295 would return the global SiteStore instance, has been removed. You can get to
296 this via MediaWiki\MediaWikiServices::getInstance()->getSiteStore() directly.
297 * Linker::formatSize, deprecated in 1.28, has been removed (with DummyLinker's).
298 Instead, use Language->formatSize() with the relevant Language object.
299 * Linker::formatTemplates, deprecated in 1.28, has been removed (along with the
300 version in DummyLinker). You can use TemplatesOnThisPageFormatter directly.
301 * EventRelayerGroup::singleton(), deprecated in 1.27, has been removed. You can
302 use MediaWikiServices::getInstance()->getEventRelayerGroup() directly.
303 * LinkCache->addLink(), deprecated in 1.27, has been removed. It is thought to
304 be unused, and is distinct from OutputPage->addLink(), which remains.
305 * JsonContent->getJsonData(), deprecated in 1.25, has been removed. Instead, use
306 JsonContent->getData().
307 * MWExceptionHandler::getLogId(), deprecated in 1.27, has been removed, as the
308 exception ID is the same as the request ID, from WebRequest::getRequestId().
309 * SearchEngine::getNearMatchResultSet(), deprecated in 1.27, has been removed.
310 You can use SearchEngine::getNearMatcher() instead.
311 * EmailNotification::updateWatchlistTimestamp, deprecated in 1.27, has been
312 removed. Instead, use WatchedItemStore::updateNotificationTimestamp directly.
313 * User::getGroupName() and ::getGroupMember(), both deprecated in 1.29, have
314 been removed. Instead, please use UserGroupMembership::getGroupName() and
315 UserGroupMembership::getGroupMemberName().
316 * Backwards compatibility for setting wgSessionsInObjectCache to false or using
317 wgSessionHandler, both of which were deprecated in 1.27 with the introduction
318 of SessionManager, has been removed.
319 * SessionManager::autoCreateUser, deprecated in 1.27, has been removed. Use
320 MediaWiki\Auth\AuthManager::autoCreateUser instead.
321 * The mw.libs.jpegmeta property, deprecated in 1.31, was removed.
322 Use require( 'mediawiki.libs.jpegmeta' ) instead.
323 * The mw.user.stickyRandomId() method, deprecated in 1.32, was removed.
324 Use mw.user.getPageviewToken() instead.
325 * Removed deprecated class property WikiRevision::$importer.
326 * ResourceLoaderFileModule::readStyleFiles() now requires its $context
327 parameter.
328 * The ChangeList::insertArticleLink() method, that was deprecated in 1.27, has
329 been removed.
330 * MessageBlobStore::__construct() now requires its $rl parameter.
331 * Second parameter to Sanitizer::escapeIdReferenceList() (deprecated in 1.31)
332 has been removed.
333 * The 'jquery.xmldom' module has been removed.
334 * The 'jquery.mockjax' module has been removed.
335 * The 'jquery.hidpi' module, deprecated in 1.32, has been removed.
336 * AuthPlugin and related code, deprecated in 1.27, has been removed. Extensions
337 should instead use AuthManager. The following no longer exist:
338 * The AuthPlugin class itself and the related AuthPluginUser class and i18n
339 * The AuthPluginSetup and AuthPluginAutoCreate hooks
340 * The transitional wrapper classes AuthPluginPrimaryAuthenticationProvider,
341 AuthManagerAuthPlugin, and AuthManagerAuthPluginUser.
342 * The $wgAuth configuration setting and its use in Setup.php and unit tests
343 * (T217772) The 'wgAvailableSkins' mw.config key in JavaScript, was removed.
344 * Language::markNoConversion, deprecated in 1.32, has been removed. Use
345 LanguageConverter::markNoConversion instead.
346 * BagOStuff::modifySimpleRelayEvent() method has been removed.
347 * ParserOutput::getLegacyOptions, deprecated in 1.30, has been removed.
348 Use ParserOutput::allCacheVaryingOptions instead.
349 * CdnCacheUpdate::newSimplePurge, deprecated in 1.27, has been removed.
350 Use CdnCacheUpdate::newFromTitles() instead.
351 * Handling of multiple arguments by the Block constructor, deprecated in 1.26,
352 has been removed.
353 * The translation of main page in Sardinian (sc) was changed from "Pàgina Base"
354 to "Pàgina printzipale". Existing wikis using this content language need to
355 move the main page or change the name through MediaWiki:Mainpage page.
356 * wfSplitWikiID(), deprecated in 1.32, has been removed.
357 * MessageBlobStore::getBlob(), deprecated in 1.27, has been removed.
358 Use ::getBlobs() instead.
359 * The .background-size() LESS mixin, deprecated in 1.27, has been removed.
360
361 === Deprecations in 1.33 ===
362 * The configuration option $wgUseESI has been deprecated, and is expected
363 to be removed in a future release.
364 * The configuration option $wgSquidPurgeUseHostHeader has been deprecated,
365 and is expected to be removed in a future release.
366 * The configuration options $wgFixArabicUnicode and $wgFixMalayalamUnicode,
367 introduced in MW 1.17, have been deprecated. These fixes will always be
368 applied for Arabic and Malayalam in the future. Please enable these on
369 your local wiki (if you have them explicitly set to false) and run
370 maintenance/cleanupTitles.php to fix any existing page titles.
371 * The LegacyHookPreAuthenticationProvider class, deprecated since its creation
372 in 1.27 as part of the AuthManager re-write, now emits deprecation warnings.
373 This will help identify the issue if you added it to $wgAuthManagerConfig.
374 * wfSplitWikiId() is now deprecated. Cache key generation should have the wiki
375 domain ID as a key component and use makeGlobalKey().
376 * (T202094) Title::getUserCaseDBKey() is deprecated; instead, please use
377 Title::getDBKey(), which doesn't vary case.
378 * User::getPasswordValidity() is now deprecated. User::checkPasswordValidity()
379 returns the same information in a more useful format.
380 * For Linker::generateTOC() and Linker::tocList(), passing strings or booleans
381 as the $lang parameter was deprecated. The same applies to DummyLinker.
382 * The PasswordPolicy 'PasswordCannotBePopular' has been deprecated. To
383 follow best practices, it is reccommended to use 'PasswordNotInLargeBlacklist'
384 instead which blacklists 100,000 commonly used passwords.
385 * (T208862) Action::requiresUnblock() is now called from
386 Title::getUserPermissionsErrors() and Title::userCan(). Previously, the method
387 was only called in Action::checkCanExecute(). Actions should ensure that their
388 requiresUnblock() returns the proper result (the default is `true`).
389 * (T211608) The MediaWiki\Services namespace has been renamed to
390 Wikimedia\Services. The old name is still supported, but deprecated.
391 * (T155582) Content::getNativeData has been deprecated. Please use model-
392 specific getters, such as TextContent::getText().
393 * The class WebInstallerOutput is now marked as @private.
394 * (T209699) The jquery.async module has been deprecated. JavaScript code that
395 needs asynchronous behaviour should use Promises.
396 * Password::equals() is deprecated, use verify().
397 * BaseTemplate::msgWiki() and QuickTemplate::msgWiki() will be removed. Use
398 other means to fetch a properly escaped message string or Message object.
399 * (T126091) The 'ResourceLoaderTestModules' hook, which lets you declare QUnit
400 testing code for your JavaScript modules, is deprecated. Instead, you can now
401 use the new extension registration key 'QUnitTestModule'.
402 * (T213426) The jquery.throttle-debounce module has been deprecated. JavaScript
403 code that needs this behaviour should use OO.ui.debounce/throttle.
404 * The mw.language.specialCharacters property from the
405 'mediawiki.language.specialCharacters' module has been deprecated.
406 Use require( 'mediawiki.language.specialCharacters' ) instead.
407 * ChangeTags::purgeTagUsageCache() has been deprecated, and is expected to be
408 removed in a future release.
409 * Passing a User object or null as the third parameter to
410 ApiBase::checkTitleUserPermissions() has been deprecated. Pass an array
411 [ 'user' => $user ] instead.
412 * (T211578) Block::prevents is deprecated. Use Block::isEmailBlocked,
413 Block::isCreateAccountBlocked and Block::isUsertalkEditAllowed to get and set
414 block properties; use Block::appliesToRight and Block::appliesToUsertalk to
415 check block behaviour.
416 * The api-feature-usage log channel now has log context. The text message is
417 deprecated and will be removed in the future.
418 * The FileBasedSiteLookup class has been deprecated. For a cacheable SiteLookup
419 implementation, use CachingSiteStore instead.
420 * Language::viewPrevNext function is deprecated, use
421 SpecialPage::buildPrevNextNavigation instead
422 * ManualLogEntry::setTags() is deprecated, use ManualLogEntry::addTags()
423 instead. The setTags() method was overriding the tags, addTags() doesn't
424 override, only adds new tags.
425 * Block::isValid is deprecated, since it is no longer needed in core.
426 * Calling Maintenance::hasArg() as well as Maintenance::getArg() with no
427 parameter has been deprecated. Please pass the argument number 0.
428
429 === Other changes in 1.33 ===
430 * (T201747) Html::openElement() warns if given an element name with a space
431 in it.
432 * The implementation of buildStringCast() in Wikimedia\Rdbms\Database has
433 changed to explicitly cast. Subclasses relying on the base-class
434 implementation should check whether they need to override it now.
435 * BagOStuff::add is now abstract and must explicitly be defined in subclasses.
436 * LinksDeletionUpdate is now a subclass of LinksUpdate. As a consequence,
437 the following hooks will now be triggered upon page deletion in addition
438 to page updates: LinksUpdateConstructed, LinksUpdate, LinksUpdateComplete.
439 LinksUpdateAfterInsert is not triggered since deletions do not cause
440 insertions into links tables.
441 * Category::newFromID( $id )->getID() will now return $id without any
442 validation, to avoid a mostly unnecessary DB query.
443 * On Special:Version, the name for an extension can no longer be arbitrary
444 html when no link is specified.
445
446 == Compatibility ==
447 MediaWiki 1.33 requires PHP 7.0.13 or later. Although HHVM 3.18.5 or later is
448 supported, it is generally advised to use PHP 7.0.13 or later for long term
449 support.
450
451 MySQL/MariaDB is the recommended DBMS. PostgreSQL or SQLite can also be used,
452 but support for them is somewhat less mature. There is experimental support for
453 Oracle and Microsoft SQL Server.
454
455 The supported versions are:
456
457 * MySQL 5.5.8 or later
458 * PostgreSQL 9.2 or later
459 * SQLite 3.8.0 or later
460 * Oracle 9.0.1 or later
461 * Microsoft SQL Server 2005 (9.00.1399)
462
463 == Online documentation ==
464 Documentation for both end-users and site administrators is available on
465 MediaWiki.org, and is covered under the GNU Free Documentation License (except
466 for pages that explicitly state that their contents are in the public domain):
467
468 https://www.mediawiki.org/wiki/Special:MyLanguage/Documentation
469
470 == Mailing list ==
471 A mailing list is available for MediaWiki user support and discussion:
472
473 https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
474
475 A low-traffic announcements-only list is also available:
476
477 https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce
478
479 It's highly recommended that you sign up for one of these lists if you're
480 going to run a public MediaWiki, so you can be notified of security fixes.
481
482 == IRC help ==
483 There's usually someone online in #mediawiki on irc.freenode.net.