Update wikimedia/html-formatter from 1.0.1 to 1.0.2
[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 * Updated wikimedia/html-formatter from 1.0.1 to 1.0.2.
124 * …
125
126 ==== New external libraries ====
127 * Added wikimedia/object-factory 1.0.0
128 * …
129
130 ==== Removed and replaced external libraries ====
131 * (T17845) The deprecated 'jquery.badge' module was removed.
132 * The deprecated 'jquery.autoEllipsis' module was removed. Use the CSS
133 text-overflow property instead.
134 * The deprecated 'jquery.placeholder' module was removed.
135 * The deprecated 'jquery.appear' module was removed. Use the
136 'mediawiki.viewport' module instead.
137 * The deprecated 'mediawiki.widgets.CategorySelector' module alias was removed.
138 Use the 'mediawiki.widgets.CategoryMultiselectWidget' module directly instead.
139 * mediawiki/at-ease was replaced with wikimedia/at-ease.
140
141 === Bug fixes in 1.31 ===
142 * (T90902) Non-breaking space in header ID breaks anchor.
143 * (T189375) CSSMin now allows quoted urls in `url()` syntax to start with a space.
144
145 === Action API changes in 1.31 ===
146 * (T185058) The 'name' value to tgprop for action=query&list=tags has been
147 removed. It has never made a difference in the output, the name was always
148 returned regardless.
149 * The 'watch' and 'unwatch' parameters for action=move have been removed. They
150 were deprecated and also accidentally nonfunctional since 1.17 in 2010. Use
151 'watchlist' instead.
152
153 === Action API internal changes in 1.31 ===
154 * ApiBase::getProfileDBTime was removed (deprecated since 1.25)
155 * ApiBase::getModuleProfileName was removed (deprecated since 1.25)
156 * ApiBase::getProfileTime was removed (deprecated since 1.25)
157
158 === Languages updated in 1.31 ===
159 MediaWiki supports over 350 languages. Many localisations are updated
160 regularly. Below only new and removed languages are listed, as well as
161 changes to languages because of Phabricator reports.
162
163 * (T180052) Mirandese (mwl) now supports gendered NS_USER/NS_USER_TALK namespaces.
164 * (T182305) New language support: Nyungar (nys).
165 * (T186359) New language support: Siberian Tatar [cебертатар] (sty).
166 * (T186635) New language support: Guianan Creole (gcr).
167 * (T186647) New language support: Kumyk [къумукъ] (kum).
168 * (T187750) New language support: Spanish formal address (es-formal).
169 * (T187824) New language support: Hungarian formal address (hu-formal).
170 * (T189127) New language support: Gorontalo (gor).
171
172 === Breaking changes in 1.31 ===
173 * MessageBlobStore::insertMessageBlob() (deprecated in 1.27) was removed.
174 * The OutputPage class constructor now requires a context parameter,
175 (instantiating without context was deprecated in 1.18)
176 * The mw.page JavaScript singleton (deprecated in 1.30) was removed.
177 * Article::getLastPurgeTimestamp(), WikiPage::getLastPurgeTimestamp(), and the
178 related WikiPage::PURGE_* constants, deprecated in 1.29, were removed.
179 * The Article::selectFields(), Article::onArticleCreate(),
180 Article::onArticleDelete(), and Article::onArticleEdit() methods, deprecated
181 in 1.24, were removed.
182 * Installer::locateExecutable() and Installer::locateExecutableInDefaultPaths()
183 were removed, use ExecutableFinder::findInDefaultPaths() instead.
184 * The deprecated MW_DIFF_VERSION constant was removed.
185 DifferenceEngine::MW_DIFF_VERSION should be used instead.
186 * Due to significant refactoring, method ContribsPager::getUserCond() that had
187 no access restriction has been removed.
188 * The Block class will no longer accept usable-but-missing usernames for
189 'byText' or ->setBlocker(). Callers should either ensure the blocker exists
190 locally or use a new interwiki-format username like "iw>Example".
191 * The following methods and constants from the WatchedItem class, which were deprecated in
192 1.27, have been removed.
193 * WatchedItem::getTitle()
194 * WatchedItem::fromUserTitle()
195 * WatchedItem::addWatch()
196 * WatchedItem::removeWatch()
197 * WatchedItem::isWatched()
198 * WatchedItem::duplicateEntries()
199 * WatchedItem::IGNORE_USER_RIGHTS
200 * WatchedItem::CHECK_USER_RIGHTS
201 * WatchedItem::DEPRECATED_USAGE_TIMESTAMP
202 * The $statementsOnOwnLine parameter of JavaScriptMinifier::minify was removed.
203 The corresponding configuration variable ($wgResourceLoaderMinifierStatementsOnOwnLine)
204 has been deprecated since 1.27 and was removed as well.
205 * The $maxLineLength parameter of JavaScriptMinifier::minify was removed.
206 The corresponding configuration variable ($wgResourceLoaderMinifierMaxLineLength)
207 has been deprecated since 1.27 and was removed as well.
208 * The HtmlFormatter class was removed (deprecated in 1.27). The namespaced
209 HtmlFormatter\HtmlFormatter class should be used instead.
210 * The driver 'mysql' for MySQL, deprecated in MediaWiki 1.30, has been removed.
211 The driver has been deprecated since PHP 5.5 and was removed in PHP 7.0. The
212 default driver for MySQL has been 'mysqli' since MediaWiki 1.22.
213 * The following properties of PreparedEdit were deprecated in 1.21 and have been removed:
214 * PreparedEdit->newText
215 * PreparedEdit->oldText
216 * PreparedEdit->pst
217 * ParserOutput objects generated using a non-default value for
218 ParserOptions::setWrapOutputClass() can no longer be added to the parser cache.
219 * The following deprecated methods from the OutputPage class have been removed:
220 * OutputPage::addExtensionStyle(); deprecated in 1.27
221 * OutputPage::getExtStyle(); deprecated in 1.27
222 * OutputPage::setETag(); deprecated in 1.28 (obsolete no-op)
223 * OutputPage::setSquidMaxage(); deprecated in 1.27
224 * OutputPage::readOnlyPage(); deprecated in 1.25
225 * OutputPage::rateLimited(); deprecated in 1.25
226 * Additionally, the protected OutputPage::$mExtStyles array, only accessed through
227 the above and with no known uses, was removed.
228 * The no-op method Skin::showIPinHeader(), deprecated in 1.27, was removed.
229 * The following variables and methods in EditPage, deprecated in MediaWiki 1.30, were removed:
230 * $isCssJsSubpage — use ::isUserConfigPage()
231 * $isCssSubpage — use ::isUserCssConfigPage()
232 * $isJsSubpage — use ::isUserJsConfigPage()
233 * $isWrongCaseCssJsPage – use ::isWrongCaseUserConfigPage()
234 * ::getSummaryInput() – use ::getSummaryInputWidget()
235 * ::getSummaryInputOOUI() – use ::getSummaryInputWidget()
236 * ::getCheckboxes() – use ::getCheckboxesWidget() or ::getCheckboxesDefinition()
237 * ::getCheckboxesOOUI() – use ::getCheckboxesWidget() or ::getCheckboxesDefinition()
238 * The method ResourceLoaderModule::getPosition(), deprecated in 1.29, has been removed.
239 * In User, the cookie-related methods which were wrappers for the functions on the response
240 object, and were deprecated in 1.27, have been removed:
241 * ::setCookie()
242 * ::clearCookie()
243 * ::setExtendedLoginCookie()
244 Note that User::setCookies() remains, and is not deprecated.
245 * Also in User, some auth-related methods which were deprecated in 1.27, have been removed:
246 * ::getEditTokenTimestamp() – use MediaWiki\Session\Token::getTimestamp()
247 * ::getPasswordFactory() – create a PasswordFactory directly
248 * ::passwordChangeInputAttribs()
249 * The global functions wfProfileIn and wfProfileOut, deprecated in 1.25, have been removed.
250 * SpecialPageFactory::getList(), deprecated in 1.24, has been removed. You can
251 use ::getNames() instead.
252 * OpenSearch::getOpenSearchTemplate(), deprecated in 1.25, has been removed. You
253 can use ApiOpenSearch::getOpenSearchTemplate() instead.
254 * The global function wfBaseConvert, deprecated in 1.27, has been removed. Use
255 Wikimedia\base_convert() directly.
256 * Calling Database::begin() explicitly during an implicit transaction or when DBO_TRX
257 is set results in an exception. Calling Database::commit() explicitly for an implicit
258 transaction also results in an exception. Previously these were logged as errors.
259 The startAtomic() and endAtomic() methods, or AtomicSectionUpdate should be used
260 instead.
261 * The global function wfOutputHandler() was removed, use the its replacement
262 MediaWiki\OutputHandler::handle() instead. The global function was only sometimes defined.
263 Its replacement is always available via the autoloader.
264 * ChangeTags::listExtensionActivatedTags and ::listExtensionDefinedTags, deprecated
265 in 1.28, have been removed. Use ::listSoftwareActivatedTags() and
266 ::listSoftwareDefinedTags() instead.
267 * Title::getTitleInvalidRegex(), deprecated in 1.25, has been removed. You
268 can use MediaWikiTitleCodec::getTitleInvalidRegex() instead.
269 * HTMLForm & VFormHTMLForm::isVForm(), deprecated in 1.25, have been removed.
270 * The ProfileSection class, deprecated in 1.25 and unused, has been removed.
271 * The ResourceLoaderGetLessVars hook, deprecated in 1.30, has been removed.
272 Use ResourceLoaderModule::getLessVars() to expose local variables instead
273 of global ones.
274 * As part of work to modernise user-generated content clean-up, a config option and some
275 methods related to HTML validity were removed without deprecation. The public methods
276 MWTidy::checkErrors() and its callee TidyDriverBase::validate() are removed, as are
277 MediaWikiTestCase::assertValidHtmlSnippet() and ::assertValidHtmlDocument(). The
278 $wgValidateAllHtml configuration option is removed and will be ignored.
279 * Execution of external programs using MediaWiki\Shell\Command now applies RESTRICT_DEFAULT
280 Firejail restriction by default.
281 * The ResourceLoaderModule::getHashMtime() and ::getDefinitionMtime() methods,
282 deprecated in 1.26, were removed.
283
284 === Deprecations in 1.31 ===
285 * The Revision class was deprecated in favor of RevisionStore, BlobStore, and
286 RevisionRecord and its subclasses.
287 * The global function wfBCP47 is deprecated in favour of LanguageCode::bcp47.
288 * The global function wfCountDown is now deprecated in favor of Maintenance::countDown.
289 * Several methods for returning lists of fields to select from the database
290 have been deprecated in favor of similar methods that also return the tables
291 to select from and the join conditions for those tables.
292 * Block::selectFields() → Block::getQueryInfo()
293 * RecentChange::selectFields() → RecentChange::getQueryInfo()
294 * ArchivedFile::selectFields() → ArchivedFile::getQueryInfo()
295 * LocalFile::selectFields() → LocalFile::getQueryInfo()
296 * LocalFile::getCacheFields() with a prefix no longer works
297 * LocalFile::getLazyCacheFields() with a prefix no longer works
298 * OldLocalFile::selectFields() → OldLocalFile::getQueryInfo()
299 * RecentChange::selectFields() → RecentChange::getQueryInfo()
300 * Revision::userJoinCond() → Revision::getQueryInfo( [ 'user' ] )
301 * Revision::selectUserFields() → Revision::getQueryInfo( [ 'user' ] )
302 * Revision::pageJoinCond() → Revision::getQueryInfo( [ 'page' ] )
303 * Revision::selectPageFields() → Revision::getQueryInfo( [ 'page' ] )
304 * Revision::selectTextFields() → Revision::getQueryInfo( [ 'text' ] )
305 * Revision::selectFields() → Revision::getQueryInfo()
306 * Revision::selectArchiveFields() → Revision::getArchiveQueryInfo()
307 * User::selectFields() → User::getQueryInfo()
308 * WikiPage::selectFields() → WikiPage::getQueryInfo()
309 * Revision::setUserIdAndName() was deprecated.
310 * Access to TitleValue class properties was deprecated, the relevant getters
311 should be used instead.
312 * DifferenceEngine::getDiffBodyCacheKey() is deprecated. Subclasses should
313 override DifferenceEngine::getDiffBodyCacheKeyParams() instead.
314 * Use of Maintenance::error( $err, $die ) to exit script was deprecated. Use
315 Maintenance::fatalError() instead.
316 * Passing a ParserOptions object to OutputPage::parserOptions() is deprecated.
317 * The RevisionInsertComplete hook is now deprecated, use RevisionRecordInserted instead.
318 RevisionInsertComplete is still called, but the second and third parameter will always be null.
319 Hard deprecation is scheduled for 1.32.
320 * The following methods that get and set ParserOutput state are deprecated.
321 Callers should use the new stateless $options parameter to
322 ParserOutput::getText() instead.
323 * ParserOptions::getEditSection()
324 * ParserOptions::setEditSection()
325 * ParserOutput::getEditSectionTokens()
326 * ParserOutput::setEditSectionTokens()
327 * ParserOutput::getTOCEnabled()
328 * ParserOutput::setTOCEnabled()
329 * OutputPage::enableSectionEditLinks()
330 * OutputPage::sectionEditLinksEnabled()
331 * The public ParserOutput state fields $mTOCEnabled and $mEditSectionTokens are also deprecated.
332 * License::getLicenses has been deprecated; use License::getLines instead.
333 * QuickTemplate::setRef() was deprecated in favour of QuickTemplate::set().
334 Setting template variables by reference allowed violating the principle of data being
335 immutable once added to the skin template. In practice, this method was not being
336 used for that. Rather, setRef() existed as memory optimisation for PHP 4.
337 * QuickTemplate::setTranslator() was deprecated in favour of Skin::msg() parameters.
338 * MediaWikiI18N::set() was deprecated in favour of Skin::msg() parameters.
339 * MediaWikiI18N::translate() was deprecated in favour of Skin::msg() or wfMessage().
340 * Passing false to ParserOptions::setWrapOutputClass() is deprecated. Use the
341 'unwrap' transform to ParserOutput::getText() instead.
342 * \ObjectFactory (no namespace) is deprecated, the namespaced \Wikimedia\ObjectFactory
343 from the wikimedia/object-factory library should be used instead.
344 * CommentStore::newKey is deprecated. Get an instance from MediaWikiServices instead.
345 * The following CommentStore methods have had their signatures changed to introduce a $key parameter,
346 usage of the methods on instances retrieved from CommentStore::newKey will remain unchanged but deprecated:
347 * CommentStore::getFields
348 * CommentStore::getJoin
349 * CommentStore::getComment
350 * CommentStore::getCommentLegacy
351 * CommentStore::insert
352 * CommentStore::insertWithTemplate
353 * The following methods in Title have been renamed, and the old ones are deprecated:
354 * Title::getSkinFromCssJsSubpage – use ::getSkinFromConfigSubpage
355 * Title::isCssOrJsPage – use ::isSiteConfigPage
356 * Title::isCssJsSubpage – use ::isUserConfigPage
357 * Title::isCssSubpage – use ::isUserCssConfigPage
358 * Title::isJsSubpage – use ::isUserJsConfigPage
359 * The following methods related to caching of half-parsed HTML were deprecated:
360 * Parser::serializeHalfParsedText()
361 * Parser::unserializeHalfParsedText()
362 * Parser::isValidHalfParsedText()
363 * StripState::getSubState()
364 * StripState::merge()
365 * The DeferredStringifier class is deprecated, use Message::listParam() instead.
366 * The type string for the parameter $lang of DateFormatter::getInstance is
367 deprecated.
368 * Wikimedia\Rdbms\SavepointPostgres is deprecated.
369 * The DO_MAINTENANCE constant is deprecated. RUN_MAINTENANCE_IF_MAIN should be
370 used instead.
371 * The function wfShellWikiCmd() has been deprecated, use
372 MediaWiki\Shell::makeScriptCommand().
373
374 === Other changes in 1.31 ===
375 * Browser support for Internet Explorer 10 was lowered from Grade A to Grade C.
376 * Browser support for Opera 12 and older was removed. Opera 15+ continues at Grade A.
377 * Introducing multi-content-revision capability into the storage layer. For details,
378 see <https://www.mediawiki.org/wiki/Requests_for_comment/Multi-Content_Revisions>.
379 * The "free" CSS class is now only applied to unbracketed URLs in wikitext. Links
380 written using square brackets will get the class "text" not "free".
381 * RFC 157418: Whitespace is trimmed from wikitext headings, wikitext list items,
382 wikitext table captions, wikitext table headings, wikitext table cells. HTML
383 headings, HTML list items, HTML table captions, HTML table headings, HTML table cells
384 will not have this trimming behavior.
385
386 == Compatibility ==
387 MediaWiki 1.31 requires PHP 5.5.9 or later. Although HHVM 3.18.5 or later is supported,
388 it is generally advised to use PHP 5.5.9 or later for long term support.
389
390 MySQL/MariaDB is the recommended DBMS. PostgreSQL or SQLite can also be used,
391 but support for them is somewhat less mature. There is experimental support for
392 Oracle and Microsoft SQL Server.
393
394 The supported versions are:
395
396 * MySQL 5.5.8 or later
397 * PostgreSQL 9.2 or later
398 * SQLite 3.3.7 or later
399 * Oracle 9.0.1 or later
400 * Microsoft SQL Server 2005 (9.00.1399)
401
402 == Upgrading ==
403 1.31 has several database changes since 1.30, and will not work without schema
404 updates. Note that due to changes to some very large tables like the revision
405 table, the schema update may take quite long (minutes on a medium sized site,
406 many hours on a large site).
407
408 Don't forget to always back up your database before upgrading!
409
410 See the file UPGRADE for more detailed upgrade instructions, including
411 important information when upgrading from versions prior to 1.11.
412
413 For notes on 1.30.x and older releases, see HISTORY.
414
415 == Online documentation ==
416 Documentation for both end-users and site administrators is available on
417 MediaWiki.org, and is covered under the GNU Free Documentation License (except
418 for pages that explicitly state that their contents are in the public domain):
419
420 https://www.mediawiki.org/wiki/Special:MyLanguage/Documentation
421
422 == Mailing list ==
423 A mailing list is available for MediaWiki user support and discussion:
424
425 https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
426
427 A low-traffic announcements-only list is also available:
428
429 https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce
430
431 It's highly recommended that you sign up for one of these lists if you're
432 going to run a public MediaWiki, so you can be notified of security fixes.
433
434 == IRC help ==
435 There's usually someone online in #mediawiki on irc.freenode.net.