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