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