X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=RELEASE-NOTES-1.33;h=9f0f3dbbc9bbf0e864e4c4345cb2f47ed7c92368;hp=de58ca7094617fe16009969263d7b26546308446;hb=20a5054172ba1f8046f8a5d859d9917f65001c13;hpb=3433d6fd461f759044880a3deac6372bc076d78b diff --git a/RELEASE-NOTES-1.33 b/RELEASE-NOTES-1.33 index de58ca7094..9f0f3dbbc9 100644 --- a/RELEASE-NOTES-1.33 +++ b/RELEASE-NOTES-1.33 @@ -20,6 +20,8 @@ production. IP addresses, internationalized domain names, and possibly mailto links. * (T193868) $wgChangeTagsSchemaMigrationStage — This temporary setting, added in MediaWiki 1.32, now defaults to MIGRATION_NEW instead of MIGRATION_WRITE_BOTH. +* Special:ActiveUsers will no longer filter out users who became inactive since + the last time the active users query cache was updated. ==== Removed configuration ==== * (T199334) $wgTagStatisticsNewTable — This temporary setting, added in @@ -33,6 +35,8 @@ production. * $wgEnableParserCache, deprecated since 1.26, was removed. If disabling the parser cache is still desirable, set `$wgParserCacheType = CACHE_NONE;` instead. +* $wgCommentTableSchemaMigrationStage has been removed. Extension code finding + it unset should treat it as being MIGRATION_NEW. === New features in 1.33 === * (T96041) __EXPECTUNUSEDCATEGORY__ on a category page causes the category @@ -44,21 +48,31 @@ production. Content::getNativeData() for text-based content models. * (T210814) SVGs are now by default displayed in wiki language on image pages. +* (T214706) LinksUpdate::getAddedExternalLinks() and + LinksUpdate::getRemovedExternalLinks() were introduced. === External library changes in 1.33 === ==== New external libraries ==== * Added wikimedia/password-blacklist 0.1.4. * Added guzzlehttp/guzzle 6.3.3. +* Added jakub-onderka/php-console-highlighter 0.3.2 explicitly (dev-only). ==== Changed external libraries ==== * Updated OOUI from v0.29.2 to v0.30.2. +* Updated OOjs Router from pre-release to v0.2.0. * Updated wikimedia/xmp-reader from 0.6.0 to 0.6.1. * Updated wikimedia/scoped-callback from 2.0.0 to 3.0.0. -* Updated wikimedia/ip-set from 1.2.0 to 2.0.0. +* Updated wikimedia/ip-set from 1.2.0 to 2.0.1. * The deprecated IPSet\IPSet alias was removed, Wikimedia\IPSet must be used instead. * Updated qunitjs from 2.6.2 to 2.9.1. +* Updated jquery-client from 2.0.1 to 2.0.2. +* Updated psy/psysh from 0.9.6 to 0.9.9 (dev-only). +* Updated nikic/php-parser from 3.1.3 to 3.1.5 (dev-only). +* Updated pear/net_smtp from 1.8.0 to 1.8.1. +* Updated cssjanus/cssjanus from 1.2.0 to 1.2.1. +* Updated wikimedia/php-session-serializer from 1.0.6 to 1.0.7. ==== Removed external libraries ==== @@ -185,6 +199,51 @@ because of Phabricator reports. * The 'jquery.byteLimit' module alias for 'jquery.lengthLimit', deprecated in 1.31, was removed. * Revision::fetchRevision(), deprecated in 1.28, was removed. +* Class SquidUpdate, deprecated in 1.27, was removed. +* Title->getSquidURLs(), deprecated in 1.27, was removed. Instead, use + Title->getCdnUrls(). +* Title::escapeFragmentForURL(), deprecated in 1.30, was removed. Use + Sanitizer::escapeIdForLink() or escapeIdForExternalInterwiki() instead. +* Title->canTalk(), deprecated in 1.30, was removed. Instead, use + Title->canHaveTalkPage(). +* Title's methods for site and user page related to CSS and JS, deprecated in + 1.31, were removed: + * Title->isCssOrJsPage() — Use Title->isSiteConfigPage() + * Title->isCssJsSubpage() – Use Title->isUserConfigPage() + * Title->getSkinFromCssJsSubpage() – Use Title->getSkinFromConfigSubpage() + * Title->isCssSubpage() – Use Title->isUserCssConfigPage() + * Title->isJsSubpage() – Use Title->isUserJsConfigPage() +* SiteSQLStore, deprecated in 1.27 and whose only method, ::newInstance(), + would return the global SiteStore instance, has been removed. You can get to + this via MediaWiki\MediaWikiServices::getInstance()->getSiteStore() directly. +* Linker::formatSize, deprecated in 1.28, has been removed (with DummyLinker's). + Instead, use Language->formatSize() with the relevant Language object. +* Linker::formatTemplates, deprecated in 1.28, has been removed (along with the + version in DummyLinker). You can use TemplatesOnThisPageFormatter directly. +* EventRelayerGroup::singleton(), deprecated in 1.27, has been removed. You can + use MediaWikiServices::getInstance()->getEventRelayerGroup() directly. +* LinkCache->addLink(), deprecated in 1.27, has been removed. It is thought to + be unused, and is distinct from OutputPage->addLink(), which remains. +* JsonContent->getJsonData(), deprecated in 1.25, has been removed. Instead, use + JsonContent->getData(). +* MWExceptionHandler::getLogId(), deprecated in 1.27, has been removed, as the + exception ID is the same as the request ID, from WebRequest::getRequestId(). +* SearchEngine::getNearMatchResultSet(), deprecated in 1.27, has been removed. + You can use SearchEngine::getNearMatcher() instead. +* EmailNotification::updateWatchlistTimestamp, deprecated in 1.27, has been + removed. Instead, use WatchedItemStore::updateNotificationTimestamp directly. +* User::getGroupName() and ::getGroupMember(), both deprecated in 1.29, have + been removed. Instead, please use UserGroupMembership::getGroupName() and + UserGroupMembership::getGroupMemberName(). +* Backwards compatibility for setting wgSessionsInObjectCache to false or using + wgSessionHandler, both of which were deprecated in 1.27 with the introduction + of SessionManager, has been removed. +* SessionManager::autoCreateUser, deprecated in 1.27, has been removed. Use + MediaWiki\Auth\AuthManager::autoCreateUser instead. +* The mw.libs.jpegmeta property, deprecated in 1.31, was removed. + Use require( 'mediawiki.libs.jpegmeta' ) instead. +* The mw.user.stickyRandomId() method, deprecated in 1.32, was removed. + Use mw.user.getPageviewToken() instead. === Deprecations in 1.33 === * The configuration option $wgUseESI has been deprecated, and is expected @@ -224,11 +283,17 @@ because of Phabricator reports. * Password::equals() is deprecated, use verify(). * BaseTemplate::msgWiki() and QuickTemplate::msgWiki() will be removed. Use other means to fetch a properly escaped message string or Message object. +* (T126091) The 'ResourceLoaderTestModules' hook, which lets you declare QUnit + testing code for your JavaScript modules, is deprecated. Instead, you can now + use the new extension registration key 'QUnitTestModule'. +* (T213426) The jquery.throttle-debounce module has been deprecated. JavaScript + code that needs this behaviour should use OO.ui.debounce/throttle. +* The mw.language.specialCharacters property from the + 'mediawiki.language.specialCharacters' module has been deprecated. + Use require( 'mediawiki.language.specialCharacters' ) instead. === Other changes in 1.33 === -* (T208871) The hard-coded Google search form on the database error page was - removed. -* (T201747) Html::openElement() warns if given an element name wiht a space +* (T201747) Html::openElement() warns if given an element name with a space in it. == Compatibility ==