Add since tag to wfRemoveDotSegments
[lhc/web/wiklou.git] / RELEASE-NOTES-1.31
1 == MediaWiki 1.31 ==
2
3 THIS IS NOT A RELEASE YET
4
5 MediaWiki 1.31 is an alpha-quality branch and is not recommended for use in
6 production.
7
8 === Important pre-upgrade notes for 1.31 ===
9 * If you're using MySQL, SQLite, or MSSQL, are not using update.php to apply
10 schema changes, and cannot have downtime to run migrateArchiveText.php and
11 apply patch-drop-ar_text.sql manually, you'll have to apply a default value
12 to the ar_text and ar_flags columns of the archive table or make those
13 columns nullable before upgrading to MediaWiki 1.31.
14 maintenance/archives/patch-nullable-ar_text.sql shows how to do this for MySQL.
15
16 === Configuration changes in 1.31 ===
17 * $wgEnableAPI and $wgEnableWriteAPI are now deprecated and will be removed in
18 a future version. The API is now considered to be stable, secure and
19 essential.
20 * $wgUsejQueryThree was removed, as it is now the default. This was documented as a
21 temporary variable during the migration period, deprecated since 1.29.
22 * $wgLogoHD has been updated to support svg images and uses $wgLogo where
23 possible for fallback images such as png.
24 * (T44246) $wgFilterLogTypes will no longer ignore 'patrol' when user does
25 not have the right to mark things patrolled.
26 * Wikis that contain imported revisions or CentralAuth global blocks should run
27 maintenance/cleanupUsersWithNoId.php.
28 * $wgResourceLoaderMinifierStatementsOnOwnLine and $wgResourceLoaderMinifierMaxLineLength
29 were removed (deprecated since 1.27).
30 * (T180921) $wgReferrerPolicy now supports having fallbacks for browsers that are not
31 using the latest version of the Referrer Policy specification.
32 * $wgFragmentMode is now set to [ 'legacy', 'html5' ] by default. This is a first step of
33 migration to human-readable section IDs that will later result in 'html5' being the
34 default mode.
35 * CACHE_ACCEL now only supports APC(u) or WinCache. XCache support was removed
36 as upstream is inactive and has no plans to move to PHP 7.
37 * The old CategorizedRecentChanges feature, including its related configuration
38 option $wgAllowCategorizedRecentChanges, has been removed.
39 * (T188472) The 'comma' value for $wgArticleCountMethod is no longer supported for
40 performance reasons, and installations with this setting will now work as if it
41 was configured with 'any'.
42 * (T185753) MediaWiki now defaults to using RemexHtml to tidy up user input, rather than
43 being off by default. If you wish to disable HTML tidying entirely, set $wgTidyConfig
44 to null; if you wish to use the old, deprecated Tidy external binary, both
45 set $wgTidyConfig to null and also set $wgUseTidy to true.
46 * $wgLogAutopatrol now defaults to false instead of true.
47 * $wgValidateAllHtml was removed and will be ignored.
48 * $wgScriptExtension was removed (deprecated and ignored since 1.25).
49 See 1.25 release notes for more information.
50 * $wgUseAjax is now marked as deprecated, just like the deprecated AJAX
51 framework that it enables. Some extensions mistakenly used this to check
52 whether any AJAX functionality at all should be enabled, further making this
53 problematic to retain.
54
55 === New features in 1.31 ===
56 * (T76554) User sub-pages named ….json are now protected in the same way that ….js
57 and ….css pages are, so that configuration options can safely be placed there.
58 * Wikimedia\Rdbms\IDatabase->select() and similar methods now support
59 joins with parentheses for grouping.
60 * As a first pass in standardizing dialog boxes across the MediaWiki product,
61 Html class now provides helper methods for messageBox, successBox, errorBox and
62 warningBox generation.
63 * (T9240) Imports will now record unknown (and, optionally, known) usernames in
64 a format like "iw>Example".
65 * (T20209) Linker (used on history pages, log pages, and so on) will display
66 usernames formed like "iw>Example" as interwiki links, as if by wikitext like
67 [[iw:User:Example|iw>Example]].
68 * (T111605) The 'ImportHandleUnknownUser' hook allows extensions to auto-create
69 users during an import.
70 * Added a hook, ParserOutputPostCacheTransform, to allow extensions to affect
71 the ParserOutput::getText() post-cache transformations.
72 * Added a hook, UploadForm:getInitialPageText, to allow extensions to alter the
73 initial page text for file uploads.
74 * (T181651) The info page for File pages now displays the file's base-16 SHA1
75 hash value in the table of basic information.
76 * Style tags with a 'data-mw-deduplicate' attribute will be deduplicated as a
77 ParserOutput::getText() post-cache transformation. This may be disabled by
78 passing 'deduplicateStyles' => false to that method.
79 * The identity of the logged-in or IP "actor" for logged actions is being moved
80 into a new actor table, with the rows in tables such as revision and logging
81 referring to the actor ID instead of storing the user ID and name/IP in
82 every row.
83 * This is currently gated by $wgActorTableSchemaMigrationStage. Most wikis
84 can set this to MIGRATION_NEW and run maintenance/migrateActors.php as
85 soon as any necessary extensions are updated.
86 * Most code accessing rows for logged actions from the database should use
87 the relevant getQueryInfo() methods to get the information needed to build
88 the SQL query. The ActorMigration class may also be used to get feature-flagged
89 information needed to access actor-related fields during the migration
90 period.
91 * Added Wikimedia\Rdbms\IDatabase::cancelAtomic(), to roll back an atomic
92 section without having to roll back the whole transaction.
93 * Wikimedia\Rdbms\IDatabase::doAtomicSection(), non-native ::insertSelect(),
94 and non-MySQL ::replace() and ::upsert() no longer roll back the whole
95 transaction on failure.
96 * (T189785) Added a monthly heartbeat ping to the pingback feature.
97 * The CLI installer (maintenance/install.php) learned to detect and include
98 extensions. Pass --with-extensions to enable that feature.
99 * (T184791) rc_patrolled now has three states: "0" for unpatrolled,
100 "1" for manually patrolled and "2" for autopatrolled actions.
101 * Extensions can now set their type to "editor" if they provide an editor
102 or enhance the editing experience.
103 * Extensions can use a PSR-4 autoloader by setting an "AutoloadNamespaces" property
104 in extension.json. See
105 <https://www.mediawiki.org/wiki/Manual:Extension.json/Schema#AutoloadNamespaces>
106 for more details and an example.
107
108 === External library changes in 1.31 ===
109
110 ==== Upgraded external libraries ====
111 * Updated jquery.chosen from v0.9.14 to v1.8.2.
112 * Updated composer/spdx-licenses from 1.1.4 to
113 1.3.0 (development dependency).
114 * Updated nikic/php-parser from 2.1.0 to 3.1.3
115 (development dependency).
116 * Updated wikimedia/ip-set from 1.1.0 to 1.2.0.
117 * Updated wikimedia/relpath from 2.0.0 to 2.1.1.
118 * Updated wikimedia/running-stat from 1.1.0 to 1.2.0.
119 * Updated wikimedia/wrappedstring from 2.2.0 to 2.3.0.
120 * Updated mediawiki/at-ease from 1.1.0 to 1.2.0.
121 * Updated wikimedia/php-session-serializer from 1.0.4 to 1.0.6.
122 * Updated wikimedia/remex-html from 1.0.2 to 1.0.3.
123 * …
124
125 ==== New external libraries ====
126 * Added wikimedia/object-factory 1.0.0
127 * …
128
129 ==== Removed and replaced external libraries ====
130 * (T17845) The deprecated 'jquery.badge' module was removed.
131 * The deprecated 'jquery.autoEllipsis' module was removed. Use the CSS
132 text-overflow property instead.
133 * The deprecated 'jquery.placeholder' module was removed.
134 * The deprecated 'jquery.appear' module was removed. Use the
135 'mediawiki.viewport' module instead.
136 * The deprecated 'mediawiki.widgets.CategorySelector' module alias was removed.
137 Use the 'mediawiki.widgets.CategoryMultiselectWidget' module directly instead.
138 * mediawiki/at-ease was replaced with wikimedia/at-ease.
139
140 === Bug fixes in 1.31 ===
141 * (T90902) Non-breaking space in header ID breaks anchor.
142 * (T189375) CSSMin now allows quoted urls in `url()` syntax to start with a space.
143
144 === Action API changes in 1.31 ===
145 * (T185058) The 'name' value to tgprop for action=query&list=tags has been
146 removed. It has never made a difference in the output, the name was always
147 returned regardless.
148 * The 'watch' and 'unwatch' parameters for action=move have been removed. They
149 were deprecated and also accidentally nonfunctional since 1.17 in 2010. Use
150 'watchlist' instead.
151
152 === Action API internal changes in 1.31 ===
153 * ApiBase::getProfileDBTime was removed (deprecated since 1.25)
154 * ApiBase::getModuleProfileName was removed (deprecated since 1.25)
155 * ApiBase::getProfileTime was removed (deprecated since 1.25)
156
157 === Languages updated in 1.31 ===
158 MediaWiki supports over 350 languages. Many localisations are updated
159 regularly. Below only new and removed languages are listed, as well as
160 changes to languages because of Phabricator reports.
161
162 * (T180052) Mirandese (mwl) now supports gendered NS_USER/NS_USER_TALK namespaces.
163 * (T182305) New language support: Nyungar (nys).
164 * (T186359) New language support: Siberian Tatar [cебертатар] (sty).
165 * (T186635) New language support: Guianan Creole (gcr).
166 * (T186647) New language support: Kumyk [къумукъ] (kum).
167 * (T187750) New language support: Spanish formal address (es-formal).
168 * (T187824) New language support: Hungarian formal address (hu-formal).
169 * (T189127) New language support: Gorontalo (gor).
170
171 === Breaking changes in 1.31 ===
172 * MessageBlobStore::insertMessageBlob() (deprecated in 1.27) was removed.
173 * The OutputPage class constructor now requires a context parameter,
174 (instantiating without context was deprecated in 1.18)
175 * The mw.page JavaScript singleton (deprecated in 1.30) was removed.
176 * Article::getLastPurgeTimestamp(), WikiPage::getLastPurgeTimestamp(), and the
177 related WikiPage::PURGE_* constants, deprecated in 1.29, were removed.
178 * The Article::selectFields(), Article::onArticleCreate(),
179 Article::onArticleDelete(), and Article::onArticleEdit() methods, deprecated
180 in 1.24, were removed.
181 * Installer::locateExecutable() and Installer::locateExecutableInDefaultPaths()
182 were removed, use ExecutableFinder::findInDefaultPaths() instead.
183 * The deprecated MW_DIFF_VERSION constant was removed.
184 DifferenceEngine::MW_DIFF_VERSION should be used instead.
185 * Due to significant refactoring, method ContribsPager::getUserCond() that had
186 no access restriction has been removed.
187 * The Block class will no longer accept usable-but-missing usernames for
188 'byText' or ->setBlocker(). Callers should either ensure the blocker exists
189 locally or use a new interwiki-format username like "iw>Example".
190 * The following methods and constants from the WatchedItem class, which were deprecated in
191 1.27, have been removed.
192 * WatchedItem::getTitle()
193 * WatchedItem::fromUserTitle()
194 * WatchedItem::addWatch()
195 * WatchedItem::removeWatch()
196 * WatchedItem::isWatched()
197 * WatchedItem::duplicateEntries()
198 * WatchedItem::IGNORE_USER_RIGHTS
199 * WatchedItem::CHECK_USER_RIGHTS
200 * WatchedItem::DEPRECATED_USAGE_TIMESTAMP
201 * The $statementsOnOwnLine parameter of JavaScriptMinifier::minify was removed.
202 The corresponding configuration variable ($wgResourceLoaderMinifierStatementsOnOwnLine)
203 has been deprecated since 1.27 and was removed as well.
204 * The $maxLineLength parameter of JavaScriptMinifier::minify was removed.
205 The corresponding configuration variable ($wgResourceLoaderMinifierMaxLineLength)
206 has been deprecated since 1.27 and was removed as well.
207 * The HtmlFormatter class was removed (deprecated in 1.27). The namespaced
208 HtmlFormatter\HtmlFormatter class should be used instead.
209 * The driver 'mysql' for MySQL, deprecated in MediaWiki 1.30, has been removed.
210 The driver has been deprecated since PHP 5.5 and was removed in PHP 7.0. The
211 default driver for MySQL has been 'mysqli' since MediaWiki 1.22.
212 * The following properties of PreparedEdit were deprecated in 1.21 and have been removed:
213 * PreparedEdit->newText
214 * PreparedEdit->oldText
215 * PreparedEdit->pst
216 * ParserOutput objects generated using a non-default value for
217 ParserOptions::setWrapOutputClass() can no longer be added to the parser cache.
218 * The following deprecated methods from the OutputPage class have been removed:
219 * OutputPage::addExtensionStyle(); deprecated in 1.27
220 * OutputPage::getExtStyle(); deprecated in 1.27
221 * OutputPage::setETag(); deprecated in 1.28 (obsolete no-op)
222 * OutputPage::setSquidMaxage(); deprecated in 1.27
223 * OutputPage::readOnlyPage(); deprecated in 1.25
224 * OutputPage::rateLimited(); deprecated in 1.25
225 * Additionally, the protected OutputPage::$mExtStyles array, only accessed through
226 the above and with no known uses, was removed.
227 * The no-op method Skin::showIPinHeader(), deprecated in 1.27, was removed.
228 * The following variables and methods in EditPage, deprecated in MediaWiki 1.30, were removed:
229 * $isCssJsSubpage — use ::isUserConfigPage()
230 * $isCssSubpage — use ::isUserCssConfigPage()
231 * $isJsSubpage — use ::isUserJsConfigPage()
232 * $isWrongCaseCssJsPage – use ::isWrongCaseUserConfigPage()
233 * ::getSummaryInput() – use ::getSummaryInputWidget()
234 * ::getSummaryInputOOUI() – use ::getSummaryInputWidget()
235 * ::getCheckboxes() – use ::getCheckboxesWidget() or ::getCheckboxesDefinition()
236 * ::getCheckboxesOOUI() – use ::getCheckboxesWidget() or ::getCheckboxesDefinition()
237 * The method ResourceLoaderModule::getPosition(), deprecated in 1.29, has been removed.
238 * In User, the cookie-related methods which were wrappers for the functions on the response
239 object, and were deprecated in 1.27, have been removed:
240 * ::setCookie()
241 * ::clearCookie()
242 * ::setExtendedLoginCookie()
243 Note that User::setCookies() remains, and is not deprecated.
244 * Also in User, some auth-related methods which were deprecated in 1.27, have been removed:
245 * ::getEditTokenTimestamp() – use MediaWiki\Session\Token::getTimestamp()
246 * ::getPasswordFactory() – create a PasswordFactory directly
247 * ::passwordChangeInputAttribs()
248 * The global functions wfProfileIn and wfProfileOut, deprecated in 1.25, have been removed.
249 * SpecialPageFactory::getList(), deprecated in 1.24, has been removed. You can
250 use ::getNames() instead.
251 * OpenSearch::getOpenSearchTemplate(), deprecated in 1.25, has been removed. You
252 can use ApiOpenSearch::getOpenSearchTemplate() instead.
253 * The global function wfBaseConvert, deprecated in 1.27, has been removed. Use
254 Wikimedia\base_convert() directly.
255 * Calling Database::begin() explicitly during an implicit transaction or when DBO_TRX
256 is set results in an exception. Calling Database::commit() explicitly for an implicit
257 transaction also results in an exception. Previously these were logged as errors.
258 The startAtomic() and endAtomic() methods, or AtomicSectionUpdate should be used
259 instead.
260 * The global function wfOutputHandler() was removed, use the its replacement
261 MediaWiki\OutputHandler::handle() instead. The global function was only sometimes defined.
262 Its replacement is always available via the autoloader.
263 * ChangeTags::listExtensionActivatedTags and ::listExtensionDefinedTags, deprecated
264 in 1.28, have been removed. Use ::listSoftwareActivatedTags() and
265 ::listSoftwareDefinedTags() instead.
266 * Title::getTitleInvalidRegex(), deprecated in 1.25, has been removed. You
267 can use MediaWikiTitleCodec::getTitleInvalidRegex() instead.
268 * HTMLForm & VFormHTMLForm::isVForm(), deprecated in 1.25, have been removed.
269 * The ProfileSection class, deprecated in 1.25 and unused, has been removed.
270 * The ResourceLoaderGetLessVars hook, deprecated in 1.30, has been removed.
271 Use ResourceLoaderModule::getLessVars() to expose local variables instead
272 of global ones.
273 * As part of work to modernise user-generated content clean-up, a config option and some
274 methods related to HTML validity were removed without deprecation. The public methods
275 MWTidy::checkErrors() and its callee TidyDriverBase::validate() are removed, as are
276 MediaWikiTestCase::assertValidHtmlSnippet() and ::assertValidHtmlDocument(). The
277 $wgValidateAllHtml configuration option is removed and will be ignored.
278 * Execution of external programs using MediaWiki\Shell\Command now applies RESTRICT_DEFAULT
279 Firejail restriction by default.
280 * The ResourceLoaderModule::getHashMtime() and ::getDefinitionMtime() methods,
281 deprecated in 1.26, were removed.
282
283 === Deprecations in 1.31 ===
284 * The Revision class was deprecated in favor of RevisionStore, BlobStore, and
285 RevisionRecord and its subclasses.
286 * The global function wfBCP47 is deprecated in favour of LanguageCode::bcp47.
287 * The global function wfCountDown is now deprecated in favor of Maintenance::countDown.
288 * Several methods for returning lists of fields to select from the database
289 have been deprecated in favor of similar methods that also return the tables
290 to select from and the join conditions for those tables.
291 * Block::selectFields() → Block::getQueryInfo()
292 * RecentChange::selectFields() → RecentChange::getQueryInfo()
293 * ArchivedFile::selectFields() → ArchivedFile::getQueryInfo()
294 * LocalFile::selectFields() → LocalFile::getQueryInfo()
295 * LocalFile::getCacheFields() with a prefix no longer works
296 * LocalFile::getLazyCacheFields() with a prefix no longer works
297 * OldLocalFile::selectFields() → OldLocalFile::getQueryInfo()
298 * RecentChange::selectFields() → RecentChange::getQueryInfo()
299 * Revision::userJoinCond() → Revision::getQueryInfo( [ 'user' ] )
300 * Revision::selectUserFields() → Revision::getQueryInfo( [ 'user' ] )
301 * Revision::pageJoinCond() → Revision::getQueryInfo( [ 'page' ] )
302 * Revision::selectPageFields() → Revision::getQueryInfo( [ 'page' ] )
303 * Revision::selectTextFields() → Revision::getQueryInfo( [ 'text' ] )
304 * Revision::selectFields() → Revision::getQueryInfo()
305 * Revision::selectArchiveFields() → Revision::getArchiveQueryInfo()
306 * User::selectFields() → User::getQueryInfo()
307 * WikiPage::selectFields() → WikiPage::getQueryInfo()
308 * Revision::setUserIdAndName() was deprecated.
309 * Access to TitleValue class properties was deprecated, the relevant getters
310 should be used instead.
311 * DifferenceEngine::getDiffBodyCacheKey() is deprecated. Subclasses should
312 override DifferenceEngine::getDiffBodyCacheKeyParams() instead.
313 * Use of Maintenance::error( $err, $die ) to exit script was deprecated. Use
314 Maintenance::fatalError() instead.
315 * Passing a ParserOptions object to OutputPage::parserOptions() is deprecated.
316 * The RevisionInsertComplete hook is now deprecated, use RevisionRecordInserted instead.
317 RevisionInsertComplete is still called, but the second and third parameter will always be null.
318 Hard deprecation is scheduled for 1.32.
319 * The following methods that get and set ParserOutput state are deprecated.
320 Callers should use the new stateless $options parameter to
321 ParserOutput::getText() instead.
322 * ParserOptions::getEditSection()
323 * ParserOptions::setEditSection()
324 * ParserOutput::getEditSectionTokens()
325 * ParserOutput::setEditSectionTokens()
326 * ParserOutput::getTOCEnabled()
327 * ParserOutput::setTOCEnabled()
328 * OutputPage::enableSectionEditLinks()
329 * OutputPage::sectionEditLinksEnabled()
330 * The public ParserOutput state fields $mTOCEnabled and $mEditSectionTokens are also deprecated.
331 * License::getLicenses has been deprecated; use License::getLines instead.
332 * QuickTemplate::setRef() was deprecated in favour of QuickTemplate::set().
333 Setting template variables by reference allowed violating the principle of data being
334 immutable once added to the skin template. In practice, this method was not being
335 used for that. Rather, setRef() existed as memory optimisation for PHP 4.
336 * QuickTemplate::setTranslator() was deprecated in favour of Skin::msg() parameters.
337 * MediaWikiI18N::set() was deprecated in favour of Skin::msg() parameters.
338 * MediaWikiI18N::translate() was deprecated in favour of Skin::msg() or wfMessage().
339 * Passing false to ParserOptions::setWrapOutputClass() is deprecated. Use the
340 'unwrap' transform to ParserOutput::getText() instead.
341 * \ObjectFactory (no namespace) is deprecated, the namespaced \Wikimedia\ObjectFactory
342 from the wikimedia/object-factory library should be used instead.
343 * CommentStore::newKey is deprecated. Get an instance from MediaWikiServices instead.
344 * The following CommentStore methods have had their signatures changed to introduce a $key parameter,
345 usage of the methods on instances retrieved from CommentStore::newKey will remain unchanged but deprecated:
346 * CommentStore::getFields
347 * CommentStore::getJoin
348 * CommentStore::getComment
349 * CommentStore::getCommentLegacy
350 * CommentStore::insert
351 * CommentStore::insertWithTemplate
352 * The following methods in Title have been renamed, and the old ones are deprecated:
353 * Title::getSkinFromCssJsSubpage – use ::getSkinFromConfigSubpage
354 * Title::isCssOrJsPage – use ::isSiteConfigPage
355 * Title::isCssJsSubpage – use ::isUserConfigPage
356 * Title::isCssSubpage – use ::isUserCssConfigPage
357 * Title::isJsSubpage – use ::isUserJsConfigPage
358 * The following methods related to caching of half-parsed HTML were deprecated:
359 * Parser::serializeHalfParsedText()
360 * Parser::unserializeHalfParsedText()
361 * Parser::isValidHalfParsedText()
362 * StripState::getSubState()
363 * StripState::merge()
364 * The DeferredStringifier class is deprecated, use Message::listParam() instead.
365 * The type string for the parameter $lang of DateFormatter::getInstance is
366 deprecated.
367 * Wikimedia\Rdbms\SavepointPostgres is deprecated.
368 * The DO_MAINTENANCE constant is deprecated. RUN_MAINTENANCE_IF_MAIN should be
369 used instead.
370 * The function wfShellWikiCmd() has been deprecated, use
371 MediaWiki\Shell::makeScriptCommand().
372
373 === Other changes in 1.31 ===
374 * Browser support for Internet Explorer 10 was lowered from Grade A to Grade C.
375 * Browser support for Opera 12 and older was removed. Opera 15+ continues at Grade A.
376 * Introducing multi-content-revision capability into the storage layer. For details,
377 see <https://www.mediawiki.org/wiki/Requests_for_comment/Multi-Content_Revisions>.
378 * The "free" CSS class is now only applied to unbracketed URLs in wikitext. Links
379 written using square brackets will get the class "text" not "free".
380 * RFC 157418: Whitespace is trimmed from wikitext headings, wikitext list items,
381 wikitext table captions, wikitext table headings, wikitext table cells. HTML
382 headings, HTML list items, HTML table captions, HTML table headings, HTML table cells
383 will not have this trimming behavior.
384
385 == Compatibility ==
386 MediaWiki 1.31 requires PHP 5.5.9 or later. Although HHVM 3.18.5 or later is supported,
387 it is generally advised to use PHP 5.5.9 or later for long term support.
388
389 MySQL/MariaDB is the recommended DBMS. PostgreSQL or SQLite can also be used,
390 but support for them is somewhat less mature. There is experimental support for
391 Oracle and Microsoft SQL Server.
392
393 The supported versions are:
394
395 * MySQL 5.5.8 or later
396 * PostgreSQL 9.2 or later
397 * SQLite 3.3.7 or later
398 * Oracle 9.0.1 or later
399 * Microsoft SQL Server 2005 (9.00.1399)
400
401 == Upgrading ==
402 1.31 has several database changes since 1.30, and will not work without schema
403 updates. Note that due to changes to some very large tables like the revision
404 table, the schema update may take quite long (minutes on a medium sized site,
405 many hours on a large site).
406
407 Don't forget to always back up your database before upgrading!
408
409 See the file UPGRADE for more detailed upgrade instructions, including
410 important information when upgrading from versions prior to 1.11.
411
412 For notes on 1.30.x and older releases, see HISTORY.
413
414 == Online documentation ==
415 Documentation for both end-users and site administrators is available on
416 MediaWiki.org, and is covered under the GNU Free Documentation License (except
417 for pages that explicitly state that their contents are in the public domain):
418
419 https://www.mediawiki.org/wiki/Special:MyLanguage/Documentation
420
421 == Mailing list ==
422 A mailing list is available for MediaWiki user support and discussion:
423
424 https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
425
426 A low-traffic announcements-only list is also available:
427
428 https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce
429
430 It's highly recommended that you sign up for one of these lists if you're
431 going to run a public MediaWiki, so you can be notified of security fixes.
432
433 == IRC help ==
434 There's usually someone online in #mediawiki on irc.freenode.net.