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