Drop wgPasswordSalt, deprecated since 1.24
[lhc/web/wiklou.git] / RELEASE-NOTES-1.34
1 = MediaWiki 1.34 =
2
3 == MediaWiki 1.34.0-PRERELEASE ==
4
5 THIS IS NOT A RELEASE YET
6
7 MediaWiki 1.34 is an alpha-quality development branch, and is not recommended
8 for use in production.
9
10 == Upgrading notes for 1.34 ==
11 1.34 has several database changes since 1.33, 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.34 upgrades are below:
22
23 * …
24
25 For notes on 1.33.x and older releases, see HISTORY.
26
27 === Configuration changes for system administrators in 1.34 ===
28
29 ==== New configuration ====
30 * $wgAllowExternalReqID (T201409) - This configuration setting controls whether
31 Mediawiki accepts the request ID set by the incoming request via the
32 `X-Request-Id` header. If set to `true`, that value will be used throughout
33 the code as the request identificator. Otherwise, the sent header will be
34 ignored and the request ID will either be taken from Apache's mod_unique
35 module or will be generated by Mediawiki itself (depending on the set-up).
36 * $wgEnableSpecialMute (T218265) - This configuration controls whether
37 Special:Mute is available and whether to include a link to it on emails
38 originating from Special:Email.
39 * editmyuserjsredirect user right – users without this right now cannot edit JS
40 redirects in their userspace unless the target of the redirect is also in
41 their userspace. By default, this right is given to everyone.
42
43 ==== Changed configuration ====
44 * $wgUseCdn, $wgCdnServers, $wgCdnServersNoPurge, and $wgCdnMaxAge – These four
45 CDN-related config variables have been renamed from being specific to Squid –
46 they were previously $wgUseSquid, $wgSquidServers, $wgSquidServersNoPurge, and
47 $wgSquidMaxage respectively. This aligns them with the related existing
48 variable $wgCdnMaxageLagged. The previous configuration variable names are
49 deprecated, but will be used as the fall back if they are still set.
50 Note that wgSquidPurgeUseHostHeader has not been renamed, as it is deprecated.
51 * (T27707) File type checks for image uploads have been relaxed to allow files
52 containing some HTML markup in metadata. As a result, the $wgAllowTitlesInSVG
53 setting is no longer applied and is now always true. Note that MSIE 7 may
54 still be able to misinterpret certain malformed PNG files as HTML.
55 * Introduced $wgVerifyMimeTypeIE to allow disabling the MSIE 6/7 file type
56 detection heuristic on upload, which is more conservative than the checks
57 that were changed above.
58 * $wgSkipSkin — Setting this instead of $wgSkipSkins, deprecated in 1.23, is now
59 hard-deprecated.
60 * $wgLocalInterwiki — Setting this instead of $wgLocalInterwikis, deprecated in
61 1.23, is now hard-deprecated.
62 * $wgProfileOnly — Setting this, deprecated in 1.23, is now hard-deprecated.
63 Instead, set the log file in $wgDebugLogGroups['profileoutput'].
64 * …
65
66 ==== Removed configuration ====
67 * $wgWikiDiff2MovedParagraphDetectionCutoff — If you still want a custom change
68 size threshold, please specify in php.ini, using the configuration variable
69 wikidiff2.moved_paragraph_detection_cutoff.
70 * $wgDebugPrintHttpHeaders - The default of including HTTP headers in the
71 debug log channel is no longer configurable. The debug log itself remains
72 configurable via $wgDebugLogFile.
73 * $wgPasswordSalt – This setting, used for migrating exceptionally old, insecure
74 password setups and deprecated since 1.24, is now removed.
75
76 === New user-facing features in 1.34 ===
77 * Special:Mute has been added as a quick way for users to block unwanted emails
78 from other users originating from Special:EmailUser.
79
80 === New developer features in 1.34 ===
81 * The ImgAuthModifyHeaders hook was added to img_auth.php to allow modification
82 of headers in private wikis.
83 * Language::formatTimePeriod now supports the new 'avoidhours' option to output
84 strings like "5 days ago" instead of "5 days 13 hours ago".
85 * (T220163) Added SpecialMuteModifyFormFields hook to allow extensions
86 to add fields to Special:Mute.
87
88 === External library changes in 1.34 ===
89
90 ==== New external libraries ====
91 * …
92
93 ==== Changed external libraries ====
94 * Updated Mustache from 1.0.0 to v3.0.1.
95 * Updated OOUI from v0.31.3 to v0.33.2.
96 * Updated composer/semver from 1.4.2 to 1.5.0.
97 * Updated composer/spdx-licenses from 1.4.0 to 1.5.1 (dev-only).
98 * Updated mediawiki/codesniffer from 25.0.0 to 26.0.0 (dev-only).
99 * Updated cssjanus/cssjanus from 1.2.1 to 1.3.0.
100 * Updated wikimedia/at-ease from 1.2.0 to 2.0.0.
101 * Updated wikimedia/remex-html from 2.0.1 to 2.0.3.
102 * Updated monolog/monolog from 1.22.1 to 1.24.0 (dev-only).
103 * Updated wikimedia/object-factory from 1.0.0 to 2.1.0.
104 * Updated wikimedia/timestamp from 2.2.0 to 3.0.0.
105 * Updated wikimedia/xmp-reader from 0.6.2 to 0.6.3.
106 * Updated mediawiki/mediawiki-phan-config from 0.6.0 to 0.6.1 (dev-only).
107 * …
108
109 ==== Removed external libraries ====
110 * The jquery.async module, deprecated in 1.33, was removed.
111 * …
112
113 === Bug fixes in 1.34 ===
114 * (T222529) If a log entry or page revision is recorded in the database with an
115 empty username, attempting to display it will log an error and return a "no
116 username available" to the user instead of silently displaying nothing or
117 invalid links.
118
119 === Action API changes in 1.34 ===
120 * The 'recenteditcount' response property from action=query list=allusers,
121 deprecated in 1.25, has been removed.
122
123 === Action API internal changes in 1.34 ===
124 * …
125
126 === Languages updated in 1.34 ===
127 MediaWiki supports over 350 languages. Many localisations are updated regularly.
128 Below only new and removed languages are listed, as well as changes to languages
129 because of Phabricator reports.
130
131 * (T152908) Added language support for N'Ko (nqo).
132
133 === Breaking changes in 1.34 ===
134 * The global functions wfSuppressWarnings and wfRestoreWarnings, deprecated in
135 1.26, have been removed. Use Wikimedia\AtEase\AtEase::suppressWarnings() and
136 Wikimedia\AtEase\AtEase::restoreWarnings() directly.
137 * Preferences class, deprecated in 1.31, has been removed.
138 * The following parts of code, deprecated in 1.32, were removed in favor of
139 built-in PHP functions:
140 * CryptRand class
141 * CryptRand service
142 * Functions of the MWCryptRand class: singleton(), wasStrong() and generate().
143 * Language::setCode, deprecated in 1.32, was removed. Use Language::factory to
144 create a new Language object with a different language code.
145 * MWNamespace::clearCaches() has been removed. So has the $rebuild parameter
146 to MWNamespace::getCanonicalNamespaces(), which was deprecated since 1.31.
147 Instead, reset services, such as by calling $this->overrideMwServices() (if
148 your test extends MediaWikiTestCase). Services will generally not pick up
149 configuration changes from after they were created, so you must reset
150 services after any configuration change. Even if your code works now, it is
151 likely to break in future versions as more code is moved to services.
152 * The ill-defined "DatabaseOraclePostInit" hook has been removed.
153 * PreferencesFormLegacy and PreferencesForm classes, deprecated in 1.32, have
154 been removed.
155 * ObjectFactory class, deprecated in 1.31, has been removed.
156 * HWLDFWordAccumudlator class, deprecated in 1.28, has been removed.
157 * XMPInfo, XMPReader and XMPValidate, deprecated in 1.32, have been removed.
158 * The RedirectSpecialPage::execute method could sometimes return a Title object.
159 This behavior was removed, and the method now matches the parent signature
160 (SpecialPage::execute) which is to return HTML string or void.
161 To obtain the destination title, use RedirectSpecialPage::getRedirect.
162 * The 'recenteditcount' response property from action API action=query
163 list=allusers, deprecated in 1.25, has been removed.
164 * SearchEngine::userNamespaces(), SearchEngine::namespacesAsText(),
165 SearchEngine::create(), SearchEngine::getSearchTypes() and
166 SearchEngine::getNearMatch(), methods deprecated in 1.27, have been removed.
167 * FileRepo::streamFile(), deprecated in 1.26, has been removed.
168 * User::randomPassword() method, deprecated in 1.27, have been removed.
169 * MWNamespace::canTalk(), deprecated in 1.30, have been removed.
170 * Parser class property $mUniqPrefix, deprecated in 1.26, has been removed.
171 * wfArrayFilter() and wfArrayFilterByKey(), deprecated in 1.32, have been
172 removed.
173 * wfMakeUrlIndexes() function, deprecated in 1.33, have been removed.
174 * Method signatures in WatchedItemQueryServiceExtension have changed from taking
175 User objects to taking UserIdentity objects. Extensions implementing this
176 interface need to be changed accordingly.
177 * User::getGroupPage() and ::makeGroupLinkHTML(), deprecated in 1.29, have been
178 removed. Use UserGroupMembership::getGroupPage and ::getLink instead.
179 * User::makeGroupLinkWiki(), deprecated in 1.29, has been removed. Use
180 UserGroupMembership::getLink() instead.
181 * SavepointPostgres, deprecated in 1.31, has been removed.
182 * OutputPage::enableSectionEditLinks(), OutputPage::sectionEditLinksEnabled(),
183 ParserOptions::getEditSection(), ParserOptions::setEditSection(), and
184 ParserOutput::getEditSectionTokens, ::getTOCEnabled, ::setEditSectionTokens,
185 and ::setTOCEnabled, deprecated in 1.31, have been removed.
186 * EditPage::safeUnicodeInput() and ::safeUnicodeOutput(), deprecated in 1.30,
187 have been removed.
188 * Four methods in OutputPage, deprecated in 1.32, have been removed. You should
189 use OutputPage::showFatalError or throw a FatalError instead. The methods are
190 ::showFileCopyError(), ::showFileRenameError(), ::showFileDeleteError(), and
191 ::showFileNotFoundError().
192 * ApiBase::truncateArray(), deprecated in 1.32, has been removed.
193 * IcuCollation::getICUVersion(), deprecated in 1.32, has been removed. Use PHP's
194 INTL_ICU_VERSION constant directly.
195 * HTMLForm::setSubmitProgressive(), deprecated in 1.32, has been removed.
196 * ResourceLoaderStartUpModules::getStartupModules() and ::getLegacyModules(),
197 both deprecated in 1.32, have been removed.
198 * BaseTemplate::msgHtml() and QuickTemplate::msgHtml(), deprecated in 1.32, have
199 been removed. Use ->msg() or ->getMsg() instead.
200 * WatchAction::getUnwatchToken(), deprecated in 1.32, has been removed. Instead,
201 use WatchAction::getWatchToken() with action 'unwatch' directly.
202 * Language::initEncoding(), ::recodeForEdit(), and recodeInput(), deprecated in
203 1.28, have been removed.
204 * PageArchive::getTextFromRow(), ::listAllPages(), and ::getLastRevisionText(),
205 deprecated in 1.32, have been removed.
206 * OutputPage::getModuleScripts(), ParserOutput::getModuleScripts(), deprecated
207 in 1.33, have been removed.
208 * User::getPasswordValidity(), deprecated in 1.33, has been removed.
209 * ApiQueryBase::prepareUrlQuerySearchString(), deprecated in 1.33, has been
210 removed.
211 * ChangeTags::purgeTagUsageCache(), deprecated in 1.33, has been removed.
212 * JobQueueGroup::pushLazyJobs(), deprecated in 1.33, has been removed.
213 * MediaWikiTestCase::stashMwGlobals(), deprecated in 1.32, has been removed.
214 * SearchEngine::transformSearchTerm(), deprecated in 1.32, has been removed.
215 * The Block typehint only refers to blocks stored in the database. It should be
216 updated to AbstractBlock in cases where any type of block could be expected.
217 * FileRepoStatus, deprecated in 1.25, has been removed.
218 * The LegacyHookPreAuthenticationProvider class, deprecated since its creation
219 in 1.27, has been removed.
220 * IP::isValidBlock(), deprecated in 1.30, has been removed.
221 * WikiPage::prepareContentForEdit now doesn't accept an integer for $revision,
222 was deprecated in 1.25.
223 * The jquery.byteLength module, deprecated in 1.31, was removed.
224 Use the mediawiki.String module instead.
225 * mw.language.specialCharacters, deprecated in 1.33, has been removed.
226 Use require( 'mediawiki.language.specialCharacters' ) instead.
227 * EditPage::submit(), deprecated in 1.29, has been removed. Use $this->edit()
228 directly.
229 * HTMLForm::getErrors(), deprecated in 1.28, has been removed. Use
230 getErrorsOrWarnings() instead.
231 * SpecialPage::getTitle(), deprecated in 1.23, has been removed. Use
232 SpecialPage::getPageTitle() instead.
233 * jquery.ui.effect-bounce, jquery.ui.effect-explode, jquery.ui.effect-fold
234 jquery.ui.effect-pulsate, jquery.ui.effect-slide, jquery.ui.effect-transfer,
235 which are no longer used, have now been removed.
236 * SpecialEmailUser::validateTarget(), ::getTarget() without a sender/user
237 specified, deprecated in 1.30, have been removed.
238 * BufferingStatsdDataFactory::getBuffer(), deprecated in 1.30, has been removed.
239 * The constant DB_SLAVE, deprecated in 1.28, has been removed. Use DB_REPLICA.
240 * The constants NS_IMAGE and NS_IMAGE_TALK, deprecated in 1.14, have been
241 removed. Use NS_FILE and NS_FILE_TALK respectively.
242 * Replacer, DoubleReplacer, HashtableReplacer and RegexlikeReplacer
243 (deprecated in 1.32) have been removed. Closures should be used instead.
244 * OutputPage::addWikiText(), ::addWikiTextWithTitle(), ::addWikiTextTitleTidy(),
245 ::addWikiTextTidy(), ::addWikiTextTitle(), deprecated in 1.32, have been
246 removed.
247 * The $wgUseKeyHeader configuration option and the OutputPage::getKeyHeader()
248 method, deprecated in 1.32, have been removed.
249 * WebInstallerOutput::addWikiText(), deprecated in 1.32, has been removed.
250 * Parser::fetchFile(), deprecated in 1.32, has been removed. Use the method
251 Parser::fetchFileAndTitle() instead.
252 * The global function wfBCP47, deprecated in 1.31, has been removed.
253 * wfCountDown() function, deprecated in 1.31, has been removed. Use
254 \Maintenance::countDown() method instead.
255 * OutputPage::wrapWikiMsg() no longer accepts an options parameter. This was
256 deprecated since 1.20.
257 * Skin::outputPage() no longer accepts a context. This was deprecated in 1.20.
258 * Linker::link() no longer accepts a string for the query array, as was
259 deprecated in 1.20.
260 * PrefixSearch::titleSearch(), deprecated in 1.23, has been removed. Use the
261 SearchEngine::defaultPrefixSearch or ::completionSearch() methods instead.
262 * The UserRights hook, deprecated in 1.26, has been removed. Instead, use the
263 UserGroupsChanged hook.
264 * Skin::getDefaultInstance(), deprecated in 1.27, has been removed. Get the
265 instance from MediaWikiServices instead.
266 * The UserLoadFromSession hook, deprecated in 1.27, has been removed.
267 * The wfResetSessionID global function, deprecated in 1.27, has been removed.
268 Use MediaWiki\Session\SessionManager instead.
269 * The wfGetLBFactory global function, deprecated in 1.27, has been removed.
270 Use MediaWikiServices::getInstance()->getDBLoadBalancerFactory().
271 * The internal method OutputPage->addScriptFile() will no longer silently drop
272 calls that use an invalid path (i.e., something other than an absolute path,
273 protocol-relative URL, or full scheme URL), and will instead pass them to the
274 client where they will likely 404. This usage was deprecated in 1.24.
275 * Database::reportConnectionError, deprecated in 1.32, has been removed.
276 * APIEditBeforeSave hook, deprecated in 1.28, has been removed. Please see
277 EditFilterMergedContent hook for an alternative way to use this feature.
278 * API module methods getDescription(), getParamDescription(), & getExamples(),
279 all deprecated in 1.25 and ignored, have been removed.
280 * The API module method getDescriptionMessage(), deprecated in 1.30, has been
281 removed.
282 * The JavaScript global variable wgLoadScript has been removed. Use
283 mw.util.wikiScript( 'load' ) instead.
284 * ResourceLoader no longer creates the 'mw.legacy' placeholder object. It has
285 been unused since 1.16 and was deprecated in 1.22. To deprecate a property
286 in JavaScript, use mw.log.deprecate() instead.
287 * The 'user.groups' module, deprecated in 1.28, was removed.
288 Use the 'user' module instead.
289 * The ability to override User::$mRights has been removed. Use
290 PermissionManager::addTemporaryUserRights() instead.
291 * Previously, when iterating ResultWrapper with foreach() or a similar
292 construct, the range of the index was 1..numRows. This has been fixed to be
293 0..(numRows-1).
294 * The ChangePasswordForm hook, deprecated in 1.27, has been removed. Use the
295 AuthChangeFormFields hook or security levels instead.
296 * WikiMap::getWikiIdFromDomain(), deprecated in 1.33, has been removed.
297 Use WikiMap::getWikiIdFromDbDomain() instead.
298 * The config variables $wgHtml5, $wgJsMimeType, and $wgXhtmlDefaultNamespace,
299 which were deprecated and ignored by core since 1.22, are no longer set to any
300 value, and SkinTemplate no longer emits a 'jsmimetype' key. Any extensions not
301 updated since 2013 to cope with this deprecation may now break.
302 * (T222637) Passing ResourceLoaderModule objects to ResourceLoader::register()
303 or $wgResourceModules is no longer supported.
304 Use the 'class' or 'factory' option of the array format instead.
305 * The parameter $lang of the functions generateTOC and tocList in Linker and
306 DummyLinker must be in type Language when present. Other types are
307 deprecated since 1.33.
308 * The static properties mw.Api.errors and mw.Api.warnings, deprecated in 1.29,
309 have been removed.
310 * The UploadVerification hook, deprecated in 1.28, has been removed. Instead,
311 use the UploadVerifyFile hook.
312 * UploadBase:: and UploadFromChunks::stashFileGetKey() and stashSession(),
313 deprecated in 1.28, have been removed. Instead, please use the getFileKey()
314 method on the response from doStashFile().
315 * …
316
317 === Deprecations in 1.34 ===
318 * The MWNamespace class is deprecated. Use NamespaceInfo.
319 * ExtensionRegistry->load() is deprecated, as it breaks dependency checking.
320 Instead, use ->queue().
321 * User::isBlocked() is deprecated since it does not tell you if the user is
322 blocked from editing a particular page. Use User::getBlock() or
323 PermissionManager::isBlockedFrom() or PermissionManager::userCan() instead.
324 * User::isLocallyBlockedProxy and User::inDnsBlacklist are deprecated and moved
325 to the BlockManager as private helper methods.
326 * User::isDnsBlacklisted is deprecated. Use BlockManager::isDnsBlacklisted
327 instead.
328 * The Config argument to ChangesListSpecialPage::checkStructuredFilterUiEnabled
329 is deprecated. Pass only the User argument.
330 * WatchedItem::getUser is deprecated. Use getUserIdentity.
331 * Passing a Title as the first parameter to the getTimestampById method of
332 RevisionStore is deprecated. Omit it, passing only the remaining parameters.
333 * Title::getPreviousRevisionId and Title::getNextRevisionId are deprecated. Use
334 RevisionLookup::getPreviousRevision and RevisionLookup::getNextRevision.
335 * The Title parameter to RevisionLookup::getPreviousRevision and
336 RevisionLookup::getNextRevision is deprecated and should be omitted.
337 * MWHttpRequest::factory is deprecated. Use HttpRequestFactory.
338 * The Http class is deprecated. For the request, get, and post methods, use
339 HttpRequestFactory. For isValidURI, use MWHttpRequest::isValidURI. For
340 getProxy, use (string)$wgHTTPProxy. For createMultiClient, construct a
341 MultiHttpClient directly.
342 * Http::$httpEngine is deprecated and has no replacement. The default 'guzzle'
343 engine will eventually be made the only engine for HTTP requests.
344 * RepoGroup::singleton(), RepoGroup::destroySingleton(),
345 RepoGroup::setSingleton(), wfFindFile(), and wfLocalFile() are all
346 deprecated. Use MediaWikiServices instead.
347 * The getSubjectPage, getTalkPage, and getOtherPage of Title are deprecated.
348 Use NamespaceInfo's getSubjectPage, getTalkPage, and getAssociatedPage.
349 * MWMessagePack class, no longer used, has been deprecated in 1.34.
350 * The Block class is separated into DatabaseBlock (for blocks stored in the
351 database), and SystemBlock (for temporary blocks created by the system).
352 SystemBlock should be used when creating any temporary blocks. Block is
353 a deprecated alias for DatabaseBlock.
354 * Parser::$mConf is deprecated. It will be removed entirely in a later version.
355 Some context can be found at T224165.
356 * Constructing Parser directly is deprecated. Obtain one from ParserFactory.
357 * Title::moveSubpages is deprecated. Use MovePage::moveSubpages or
358 MovePage::moveSubpagesIfAllowed.
359 * The MWNamespace class is deprecated. Use MediaWikiServices::getNamespaceInfo.
360 * (T62260) Hard deprecate Language::getExtraUserToggles() method.
361 * Language::viewPrevNext function is deprecated, use
362 PrevNextNavigationRenderer::buildPrevNextNavigation instead
363 * User::trackBlockWithCookie and DatabaseBlock::clearCookie are deprecated. Use
364 BlockManager::trackBlockWithCookie and BlockManager::clearCookie instead.
365 * DatabaseBlock::setCookie, DatabaseBlock::getCookieValue,
366 DatabaseBlock::getIdFromCookieValue and AbstractBlock::shouldTrackWithCookie
367 are moved to internal helper methods for BlockManager::trackBlockWithCookie.
368 * ResourceLoaderContext::getConfig and ResourceLoaderContext::getLogger have
369 been deprecated. Inside ResourceLoaderModule subclasses, use the local methods
370 instead. Elsewhere, use the methods from the ResourceLoader class.
371 * The Preprocessor_DOM implementation has been deprecated. It will be
372 removed in a future release. Use the Preprocessor_Hash implementation
373 instead.
374 * Sanitizer::attributeWhitelist() and Sanitizer::setupAttributeWhitelist()
375 have been deprecated; they will be made private in the future.
376 * SearchResult::termMatches() method is deprecated. It was unreliable because
377 only populated by few search engine implementations. Use
378 SqlSearchResult::getTermMatches() if really needed.
379 * SearchResult::getTextSnippet( $terms ) the $terms param is being deprecated
380 and should no longer be passed. Search engine implemenations should be
381 responsible for carrying relevant information needed for highlighting with
382 their own SearchResultSet/SearchResult sub-classes.
383 * SearchEngine::$searchTerms protected field is deprecated. Moved to
384 SearchDatabase.
385 * The use of the $terms param in the ShowSearchHit and ShowSearchHitTitle
386 hooks is highly discouraged as it's only populated by SearchDatabase search
387 engines.
388 * Skin::escapeSearchLink() is deprecated. Use Skin::getSearchLink() or the skin
389 template option 'searchaction' instead.
390 * LoadBalancer::haveIndex() and LoadBalancer::isNonZeroLoad() have
391 been deprecated.
392 * User::getRights() and User::$mRights have been deprecated. Use
393 PermissionManager::getUserPermissions() instead.
394 * The LocalisationCacheRecache hook no longer allows purging of message blobs
395 to be prevented. Modifying the $purgeBlobs parameter now has no effect.
396
397 === Other changes in 1.34 ===
398 * …
399
400 == Compatibility ==
401 MediaWiki 1.34 requires PHP 7.0.13 or later. Although HHVM 3.18.5 or later is
402 supported, it is generally advised to use PHP 7.0.13 or later for long term
403 support.
404
405 MySQL/MariaDB is the recommended DBMS. PostgreSQL or SQLite can also be used,
406 but support for them is somewhat less mature. There is experimental support for
407 Oracle and Microsoft SQL Server.
408
409 The supported versions are:
410
411 * MySQL 5.5.8 or later
412 * PostgreSQL 9.2 or later
413 * SQLite 3.8.0 or later
414 * Oracle 9.0.1 or later
415 * Microsoft SQL Server 2005 (9.00.1399)
416
417 == Online documentation ==
418 Documentation for both end-users and site administrators is available on
419 MediaWiki.org, and is covered under the GNU Free Documentation License (except
420 for pages that explicitly state that their contents are in the public domain):
421
422 https://www.mediawiki.org/wiki/Special:MyLanguage/Documentation
423
424 == Mailing list ==
425 A mailing list is available for MediaWiki user support and discussion:
426
427 https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
428
429 A low-traffic announcements-only list is also available:
430
431 https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce
432
433 It's highly recommended that you sign up for one of these lists if you're
434 going to run a public MediaWiki, so you can be notified of security fixes.
435
436 == IRC help ==
437 There's usually someone online in #mediawiki on irc.freenode.net.