X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=RELEASE-NOTES-1.25;h=9d8487cb554ab0bb40740c806292d9bd7c3f55d2;hb=f94e85e976e2fd5e326be2a103eaa682eda78b11;hp=4612c4519fae12b6c20f93f020801fe24a8422ec;hpb=5a8b2edfdffbc962bb80763084d5c8b27ff45318;p=lhc%2Fweb%2Fwiklou.git diff --git a/RELEASE-NOTES-1.25 b/RELEASE-NOTES-1.25 index 4612c4519f..9d8487cb55 100644 --- a/RELEASE-NOTES-1.25 +++ b/RELEASE-NOTES-1.25 @@ -94,8 +94,7 @@ production. * Update QUnit from v1.14.0 to v1.16.0. * Update Moment.js from v2.8.3 to v2.8.4. * Special:Tags now allows for manipulating the list of user-modifiable change - tags. Actually modifying the tagging of a revision or log entry is not - implemented yet. + tags. * Added 'managetags' user right and 'ChangeTagCanCreate', 'ChangeTagCanDelete', and 'ChangeTagCanCreate' hooks to allow for managing user-modifiable change tags. @@ -122,6 +121,13 @@ production. * (T94536) You can now make the sitenotice appear to logged-in users only by editing MediaWiki:Anonnotice and replacing its content with "". Setting it to "-" (default) will continue disable it and fallback to MediaWiki:Sitenotice. +* Modifying the tagging of a revision or log entry is now available via + Special:EditTags, generally accessed via the revision-deletion-like interface + on history pages and Special:Log is likely to be more useful. +* Added 'applychangetags' and 'changetags' user rights. +* (T35235) LogFormatter subclasses are now responsible for formatting the + parameters for API log event output. Extensions should implement the new + getParametersForApi() method in their log formatters. ==== External libraries ==== * MediaWiki now requires certain external libraries to be installed. In the past @@ -184,6 +190,7 @@ production. HTML validation. * $wgUseTidy is now set when parserTests are run with the tidy option to match output on wiki. +* (T37472) update.php will purge ResourceLoader cache unless --nopurge is passed to it. === Action API changes in 1.25 === * (T67403) XML tag highlighting is now only performed for formats @@ -248,6 +255,22 @@ production. Title::userCan() via the API. * Default type param for query list=watchlist and list=recentchanges has been changed from all types (e.g. including 'external') to 'edit|new|log'. +* Added formatversion to format=json, still experimental. +* (T73020) Log event details are now always under a 'params' subkey for + list=logevents, and a 'logparams' subkey for list=watchlist and + list=recentchanges. +* Log event details are changing formatting: + * block events now report flags as an array rather than as a comma-separated + list. + * patrol events now report the 'auto' flag as a boolean (absent/empty string + for BC formats) rather than as an integer. + * rights events now report the old and new group lists as arrays rather than + as comma-separated lists. + * merge events use new-style formatting. + * delete/event and delete/revision events use new-style formatting. +* The root node and various other nodes will now always be an object in formats + such as json that distinguish between arrays and objects. + * Except for action=opensearch where the spec requires an array. === Action API internal changes in 1.25 === * ApiHelp has been rewritten to support i18n and paginated HTML output. @@ -285,6 +308,21 @@ production. the current request was sent with the 'callback' parameter (or any future method that breaks the same-origin policy). * Profiling methods in ApiBase are deprecated and no longer need to be called. +* ApiResult was greatly overhauled. See inline documentation for details. +* ApiResult will automatically convert objects to strings or arrays (depending + on whether a __toString() method exists on the object), and will refuse to + add unsupported value types. + * An informal interface, ApiSerializable, exists to override the default + object conversion. +* ApiResult/ApiFormatBase "raw mode" is deprecated. +* ApiFormatXml now assumes defaults and so on instead of throwing errors when + metadata isn't set. +* (T35235) LogFormatter subclasses are now responsible for formatting log event + parameters for the API. +* Many modules have changed result data formats. While this shouldn't affect + clients not using the experimental formatversion=2015, code using + ApiResult::getResultData() and not using ApiResult::transformForBC() may need + updating. * The following methods have been deprecated and may be removed in a future release: * ApiBase::getDescription @@ -301,16 +339,33 @@ production. * ApiBase::profileDBIn * ApiBase::profileDBOut * ApiBase::getProfileDBTime + * ApiBase::getResultData * ApiFormatBase::setUnescapeAmps * ApiFormatBase::getWantsHelp * ApiFormatBase::setHelp * ApiFormatBase::formatHTML * ApiFormatBase::setBufferResult * ApiFormatBase::getDescription + * ApiFormatBase::getNeedsRawData * ApiMain::setHelp * ApiMain::reallyMakeHelpMsg * ApiMain::makeHelpMsgHeader + * ApiResult::setRawMode + * ApiResult::getIsRawMode + * ApiResult::getData + * ApiResult::setElement + * ApiResult::setContent + * ApiResult::setIndexedTagName_recursive + * ApiResult::setIndexedTagName_internal + * ApiResult::setParsedLimit + * ApiResult::beginContinuation + * ApiResult::setContinueParam + * ApiResult::setGeneratorContinueParam + * ApiResult::endContinuation + * ApiResult::size + * ApiResult::convertStatusToArray * ApiQueryImageInfo::getPropertyDescriptions + * ApiQueryLogEvents::addLogParams * The following classes have been deprecated and may be removed in a future release: * ApiQueryDeletedrevs @@ -363,9 +418,6 @@ changes to languages because of Bugzilla reports. and getInternalLinkAttributes methods in Linker, and removed getExternalLinkAttributes method, which was deprecated in MediaWiki 1.18. * Removed Sites class, which was deprecated in 1.21 and replaced by SiteSQLStore. -* The mw.api.getToken() method now uses action=query?meta=tokens. This will now - fail for custom tokens registered only via the deprecated ApiTokensGetTokenTypes - hook. The ApiQueryTokensRegisterTypes hook should be used for this to work. * Added wgRelevantArticleId to the client-side config, for use on special pages. * Deprecated the TitleIsCssOrJsPage hook. Superseded by the ContentHandlerDefaultModelFor hook since MediaWiki 1.21. @@ -429,6 +481,20 @@ changes to languages because of Bugzilla reports. * All BloomCache related code has been removed. This was largely experimental. * $wgResourceModuleSkinStyles no longer supports per-module local or remote paths. They can only be set for the entire skin. +* Removed global function swap(). (deprecated since 1.24) +* Deprecated the ".php5" file extension entry points. Refer to the ".php" files + instead. If you want ".php5" URLs to continue to work, set up redirects. In + Apache, this can be done by enabling mod_rewrite and adding the following + rules to your configuration: + + RewriteEngine On + RewriteBase / + RewriteRule ^(.*)\.php5 $1.php [R=301,L] + +* The global importScriptURI and importStylesheetURI functions, as well as the + loadedScripts object, from wikibits.js (deprecated since 1.17) now emit + warnings through mw.log.warn when accessed. + == Compatibility ==