Copy in various point releases to HISTORY
[lhc/web/wiklou.git] / RELEASE-NOTES-1.29
1 == MediaWiki 1.29 ==
2
3 THIS IS NOT A RELEASE YET
4
5 MediaWiki 1.29 is an alpha-quality branch and is not recommended for use in
6 production.
7
8 === Configuration changes in 1.29 ===
9 * Default cookie expiration time has been reduced to 30 days. Login cookie
10 expiration time is kept at 180 days.
11 * A new configuration variable has been added: $wgCookieSetOnAutoblock. This
12 determines whether to set a cookie when a user is autoblocked. Doing so means
13 that a blocked user, even after logging out and moving to a new IP address,
14 will still be blocked.
15 * The resetpassword right and associated password reset capture feature has
16 been removed.
17 * The $error parameter to the EmailUser hook should be set to a Status object
18 or boolean false. This should be compatible with at least MediaWiki 1.23 if
19 not earlier. Returning a raw HTML string is now deprecated.
20 * The $message parameter to the ApiCheckCanExecute hook should be set to an
21 ApiMessage. This is compatible with MediaWiki 1.27 and later. Returning a
22 code for ApiBase::parseMsg() will no longer work.
23 * ApiBase::$messageMap is no longer public. Code attempting to access it will
24 result in a PHP fatal error.
25 * $wgUserEmailUseReplyTo is now true by default to work around restrictive DMARC
26 policies.
27 * Subpages are now enabled by default in the Template namespace. Set
28 $wgNamespacesWithSubpages[NS_TEMPLATE] to false to keep the old behavior.
29 * $wgRunJobsAsync is now false by default (T142751). This change only affects
30 wikis with $wgJobRunRate > 0.
31 * A temporary feature flag, $wgDisableUserGroupExpiry, is provided to disable
32 new features that rely on the schema changes to the user_groups table. This
33 feature flag will likely be removed before 1.29 is released.
34
35 === New features in 1.29 ===
36 * (T5233) A cookie can now be set when a user is autoblocked, to track that user
37 if they move to a new IP address. This is disabled by default.
38 * Added ILocalizedException interface to standardize the use of localized
39 exceptions, largely so the API can handle them more sensibly.
40 * Blocks created automatically by MediaWiki, such as for configured proxies or
41 dnsbls, are now indicated as such and use a new i18n message when displayed.
42 * Added new $wgHTTPImportTimeout setting. Sets timeout for
43 downloading the XML dump during a transwiki import in seconds.
44 * Parser limit report is now available in machine-readable format to JavaScript
45 via mw.config.get('wgPageParseReport').
46 * Added $wgSoftBlockRanges, to allow for automatically blocking anonymous edits
47 from certain IP ranges (e.g. private IPs).
48 * (T59603) Added new magic word {{PAGELANGUAGE}} which returns the language code
49 of the page being parsed.
50 * HTML5 form validation attributes will no longer be suppressed. Originally
51 browsers had poor support for them, but modern browsers handle them fine.
52 This might affect some forms that used them and only worked because the
53 attributes were not actually being set.
54 * Expiry times can now be specified when users are added to user groups.
55
56 === External library changes in 1.29 ===
57
58 ==== Upgraded external libraries ====
59 * Updated QUnit from v1.22.0 to v1.23.1.
60 * Updated cssjanus from v1.1.2 to 1.1.3.
61 * Updated psr/log from v1.0.0 to v1.0.2.
62
63 ==== New external libraries ====
64
65 ==== Removed and replaced external libraries ====
66
67 === Bug fixes in 1.29 ===
68 * (T62604) Core parser functions returning a number now format the number according
69 to the page content language, not wiki content language.
70 * (T27187) Search suggestions based on jquery.suggestions will now correctly only
71 highlight prefix matches in the results.
72 * (T157035) "new mw.Uri()" was ignoring options when using default URI.
73
74 === Action API changes in 1.29 ===
75 * Submitting sensitive authentication request parameters to action=login,
76 action=clientlogin, action=createaccount, action=linkaccount, and
77 action=changeauthenticationdata in the query string is now an error. They
78 should be submitted in the POST body instead.
79 * The capture option for action=resetpassword has been removed
80 * action=clearhasmsg now requires a POST.
81 * (T47843) API errors and warnings may be requested in non-English languages
82 using the new 'errorformat', 'errorlang', and 'errorsuselocal' parameters.
83 * API error codes may have changed. Most notably, errors from modules using
84 parameter prefixes (e.g. all query submodules) will no longer be prefixed.
85 * ApiPageSet-using modules will report the 'invalidreason' using the specified
86 'errorformat'.
87 * action=emailuser may return a "Warnings" status, and now returns 'warnings' and
88 'errors' subelements (as applicable) instead of 'message'.
89 * action=imagerotate returns an 'errors' subelement rather than 'errormessage'.
90 * action=move now reports errors when moving the talk page as an array under
91 key 'talkmove-errors', rather than using 'talkmove-error-code' and
92 'talkmove-error-info'. The format for subpage move errors has also changed.
93 * action=revisiondelete no longer includes a "rendered" property on warnings
94 and errors for each item. Use errorformat=wikitext if you're wanting parsed
95 output.
96 * action=rollback no longer returns a "messageHtml" property. Use
97 errorformat=html if you're wanting HTML formatting of error messages.
98 * action=upload now reports optional stash failures as an array under key
99 'stasherrors' rather than a 'stashfailed' text string.
100 * action=watch reports 'errors' and 'warnings' instead of a single 'error', and
101 no longer returns a 'message' on success.
102 * Added action=validatepassword to validate passwords for the account creation
103 and password change forms.
104 * action=purge now requires a POST.
105
106 === Action API internal changes in 1.29 ===
107 * New methods were added to ApiBase to handle errors and warnings using i18n
108 keys. Methods for using hard-coded English messages were deprecated:
109 * ApiBase::dieUsage() was deprecated
110 * ApiBase::dieUsageMsg() was deprecated
111 * ApiBase::dieUsageMsgOrDebug() was deprecated
112 * ApiBase::getErrorFromStatus() was deprecated
113 * ApiBase::parseMsg() was deprecated
114 * ApiBase::setWarning() was deprecated
115 * ApiBase::$messageMap is no longer public. Code attempting to access it will
116 result in a PHP fatal error.
117 * The $message parameter to the ApiCheckCanExecute hook should be set to an
118 ApiMessage. This is compatible with MediaWiki 1.27 and later. Returning a
119 code for ApiBase::parseMsg() will no longer work.
120 * UsageException is deprecated in favor of ApiUsageException. For the time
121 being ApiUsageException is a subclass of UsageException to allow things that
122 catch only UsageException to still function properly.
123 * If, for some strange reason, code was using an ApiErrorFormatter instead of
124 ApiErrorFormatter_BackCompat, note that the result format has changed and
125 various methods now take a module path rather than a module name.
126 * ApiMessageTrait::getApiCode() now strips 'apierror-' and 'apiwarn-' prefixes
127 from the message key, and maps some message keys for backwards compatibility.
128
129 === Languages updated in 1.29 ===
130
131 MediaWiki supports over 350 languages. Many localisations are updated
132 regularly. Below only new and removed languages are listed, as well as
133 changes to languages because of Phabricator reports.
134
135 * Based as always on linguistic studies on intelligibility and language
136 knowledge by geography, language fallbacks have been expanded. When a
137 translation is missing in the user's preferred interface language, the
138 corresponding translation for the fallback language will be used instead.
139 English will only be used as last resort when there are no translations.
140 Some configurations (such as date formats and gender namespaces) have also
141 been updated when using the fallback language's configuration was inadequate.
142 The new or reinstated language fallbacks are (after cs ↔ sk in 1.28):
143 ca ↔ oc; hsb ↔ dsb; io → eo; mdf → ru; pnt → el; roa-tara → it; rup → ro;
144 sh → bs, sr-el, hr.
145 * (T155957) Talk Namespaces for Javanese language (jv) have been updated.
146
147 ==== No fallback for Ukrainian ====
148 * (T39314) The fallback from Ukrainian to Russian was removed. The Ukrainian
149 language will now use the default fallback language: English. When a translation
150 to Ukrainian is not available, an English string will be shown.
151
152 === Other changes in 1.29 ===
153 * Database::getSearchEngine() (deprecated in 1.28) was removed. Use
154 SearchEngineFactory::getSearchEngineClass() instead.
155 * $wgSessionsInMemcached (deprecated in 1.20) was removed. No replacement is
156 required as all sessions are stored in Object Cache now.
157 * MWHttpRequest::execute() should be considered to return a StatusValue; the
158 Status return type is deprecated.
159 * User::edits() (deprecated in 1.21) was removed.
160 * Xml::escapeJsString() (deprecated in 1.21) was removed.
161 * Article::getText() and Article::prepareTextForEdit() (deprecated in 1.21)
162 were removed.
163 * Article::getAutosummary() and WikiPage::getAutosummary() (deprecated in 1.21)
164 were removed.
165 * Hook ArticleViewCustom (deprecated in 1.21) was removed. Use ArticleContentViewCustom
166 instead.
167 * Hooks EditPageGetDiffText and ShowRawCssJs (deprecated in 1.21) were removed.
168 * Class RevisiondeleteAction (deprecated in 1.25) was removed.
169 * WikiPage::prepareTextForEdit() (deprecated in 1.21) was removed.
170 * WikiPage::getText() (deprecated in 1.21) was removed.
171 * Article::fetchContent() (deprecated in 1.21) was removed.
172 * User::getPassword() (deprecated in 1.27) was removed.
173 * User::getTemporaryPassword() (deprecated in 1.27) was removed.
174 * User::isPasswordReminderThrottled() (deprecated in 1.27) was removed.
175 * Class FSRepo (deprecated in 1.19) was removed.
176 * WebRequest::checkSessionCookie() (deprecated in 1.27) was removed. Use
177 \MediaWiki\Session\SessionManager::singleton()->getPersistedSessionId() instead.
178 * Class ImageGallery (deprecated in 1.22) was removed.
179 Use ImageGalleryBase::factory instead.
180 * Title::moveNoAuth() (deprecated in 1.25) was removed. Use MovePage class instead.
181 * Hook UnknownAction (deprecated in 1.19) was actually deprecated (it will now
182 emit warnings). Create a subclass of Action and add it to $wgActions instead.
183 * WikiRevision::getText() (deprecated since 1.21) is no longer marked deprecated.
184 * Linker::getInterwikiLinkAttributes() (deprecated since 1.25) was removed.
185 * Linker::getInternalLinkAttributes() (deprecated since 1.25) was removed.
186 * Linker::getInternalLinkAttributesObj() (deprecated since 1.25) was removed.
187 * Linker::getLinkAttributesInternal() (deprecated since 1.25) was removed.
188 * RedisConnectionPool::handleException (deprecated since 1.23) was removed.
189 * The static properties mw.Api.errors and mw.Api.warnings, containing incomplete
190 and outdated lists of errors/warnings returned by the API, are now deprecated.
191 * wiki.phtml entry point was removed. Refer to index.php instead. If you want "wiki.phtml"
192 URLs to continue to work, set up redirects. In Apache, this can be done by enabling
193 mod_rewrite and adding the following rules to your configuration:
194
195 RewriteEngine On
196 RewriteBase /
197 RewriteRule ^/w/wiki\.phtml$ /w/index.php [R=301,L]
198 * Hook ArticleAfterFetchContent (deprecated in 1.21) was removed.
199 Use ArticleAfterFetchContentObject instead.
200 * Hook ArticleInsertComplete (deprecated in 1.21) was removed.
201 Use PageContentInsertComplete instead.
202 * Hook ArticleSave (deprecated in 1.21) was removed.
203 Use PageContentSave instead.
204 * Hook ArticleSaveComplete (deprecated in 1.21) was removed.
205 Use PageContentSaveComplete instead.
206 * Hook EditFilterMerged (deprecated in 1.21) was removed.
207 Use EditFilterMergedContent instead.
208 * Hook EditPageGetPreviewText (deprecated in 1.21) was removed.
209 Use EditPageGetPreviewContent instead.
210 * Hook TitleIsCssOrJsPage (deprecated in 1.21) was removed.
211 Use ContentHandlerDefaultModelFor instead.
212 * Hook TitleIsWikitextPage (deprecated in 1.21) was removed.
213 Use ContentHandlerDefaultModelFor instead.
214 * Article::getContent() (deprecated in 1.21) was removed.
215 * Revision::getText() (deprecated in 1.21) was removed.
216 * Article::doEdit() and WikiPage::doEdit() (deprecated in 1.21) were removed.
217 * Parser::replaceUnusualEscapes() (deprecated in 1.24) was removed.
218 * Article::doEditContent() was marked as deprecated, to be removed in 1.30
219 or later.
220 * ContentHandler::runLegacyHooks() was removed.
221 * refreshLinks.php now can be limited to a particular category with --category=...
222 or a tracking category with --tracking-category=...
223 * User-like objects that are passed to SpecialUserRights and its subclasses are
224 now required to have a getGroupMemberships() method. See UserRightsProxy for
225 an example.
226 * User::$mGroups (instance variable) was marked private. Use User::getGroups()
227 instead.
228 * User::getGroupName(), User::getGroupMember(), User:getGroupPage(),
229 User::makeGroupLinkHTML(), and User::makeGroupLinkWiki() were deprecated.
230 Use equivalent methods on the UserGroupMembership class.
231 * Maintenance scripts and tests that call User::addGroup() must now ensure that
232 User objects have been added to the database prior to calling addGroup().
233 * Protected function UsersPager::getGroups() was removed, and protected function
234 UsersPager::buildGroupLink() was changed from a static to an instance method.
235 * The third parameter ($cache) to the UsersPagerDoBatchLookups hook was changed;
236 see docs/hooks.txt.
237 * User::crypt() (deprecated in 1.24) was removed.
238 * User::comparePasswords() (deprecated in 1.24) was removed.
239 * ArchivedFile::getUserText() (deprecated in 1.23) was removed.
240 * HTMLFileCache::newFromTitle() (deprecated in 1.24) was removed.
241
242 == Compatibility ==
243
244 MediaWiki 1.29 requires PHP 5.5.9 or later. There is experimental support for
245 HHVM 3.6.5 or later.
246
247 MySQL is the recommended DBMS. PostgreSQL or SQLite can also be used, but
248 support for them is somewhat less mature. There is experimental support for
249 Oracle and Microsoft SQL Server.
250
251 The supported versions are:
252
253 * MySQL 5.0.3 or later
254 * PostgreSQL 8.3 or later
255 * SQLite 3.3.7 or later
256 * Oracle 9.0.1 or later
257 * Microsoft SQL Server 2005 (9.00.1399)
258
259 == Upgrading ==
260
261 1.29 has several database changes since 1.28, and will not work without schema
262 updates. Note that due to changes to some very large tables like the revision
263 table, the schema update may take quite long (minutes on a medium sized site,
264 many hours on a large site).
265
266 If upgrading from before 1.11, and you are using a wiki as a commons
267 repository, make sure that it is updated as well. Otherwise, errors may arise
268 due to database schema changes.
269
270 If upgrading from before 1.7, you may want to run refreshLinks.php to ensure
271 new database fields are filled with data.
272
273 If you are upgrading from MediaWiki 1.4.x or earlier, you should upgrade to
274 1.5 first. The upgrade script maintenance/upgrade1_5.php has been removed
275 with MediaWiki 1.21.
276
277 Don't forget to always back up your database before upgrading!
278
279 See the file UPGRADE for more detailed upgrade instructions.
280
281 For notes on 1.28.x and older releases, see HISTORY.
282
283 == Online documentation ==
284
285 Documentation for both end-users and site administrators is available on
286 MediaWiki.org, and is covered under the GNU Free Documentation License (except
287 for pages that explicitly state that their contents are in the public domain):
288
289 https://www.mediawiki.org/wiki/Special:MyLanguage/Documentation
290
291 == Mailing list ==
292
293 A mailing list is available for MediaWiki user support and discussion:
294
295 https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
296
297 A low-traffic announcements-only list is also available:
298
299 https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce
300
301 It's highly recommended that you sign up for one of these lists if you're
302 going to run a public MediaWiki, so you can be notified of security fixes.
303
304 == IRC help ==
305
306 There's usually someone online in #mediawiki on irc.freenode.net.