X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=RELEASE-NOTES-1.23;h=9633edd49be18c742436f6850435c3a0f7e0c765;hb=9cfd31a708afc617837dc9830689cea8a224ebcd;hp=bdb75e80db113bd1ff277c1a5ab967899c069876;hpb=9ed334b55c57fa387cb25bd3a14bc90af345903e;p=lhc%2Fweb%2Fwiklou.git diff --git a/RELEASE-NOTES-1.23 b/RELEASE-NOTES-1.23 index bdb75e80db..9633edd49b 100644 --- a/RELEASE-NOTES-1.23 +++ b/RELEASE-NOTES-1.23 @@ -43,6 +43,14 @@ production. * Removed deprecated $wgDisabledActions as it is hardly used anywhere. * $wgRateLimitLog has been deprecated and replaced by $wgDebugLogGroup['ratelimit']. +* $wgLocalInterwikis is an array containing multiple local interwiki prefixes + (interwiki prefixes that point back to the current wiki). This effectively + allows more than one value of $wgLocalInterwiki to be specified and + understood by the parser. The value of $wgLocalInterwiki is automatically + prepended to the start of this array. +* $wgQueryPages has been removed. Query Pages should be added to by using the + wgQueryPages hook. +* $wgHttpOnlyBlacklist has been removed. === New features in 1.23 === * ResourceLoader can utilize the Web Storage API to cache modules client-side. @@ -118,6 +126,11 @@ production. creations, similar to the topOnly option. * Add mediawiki.ui.button styling to all pages so wiki content can use styled buttons. +* Special:UserLogin/signup now does AJAX checks for invalid and taken usernames, + displaying the error live. +* Added BaseTemplateAfterPortlet hook to allow injecting html after portlets in skins. +* Support has been added for a JSON based localisation file format. The + installer has been updated to use it. === Bug fixes in 1.23 === * (bug 41759) The "updated since last visit" markers (on history pages, recent @@ -158,6 +171,8 @@ production. * (bug 26811) When a DBUnexpectedError occurs, DB server hostnames are now hidden unless $wgShowExceptionDetails is true, and $wgShowDBErrorBacktrace no longer applies in such cases. +* (bug 60960) Avoid doing file_exist() checks on data: URIs, as they cause + warnings to be printed on Windows due to large path length. === Web API changes in 1.23 === * (bug 54884) action=parse&prop=categories now indicates hidden and missing @@ -276,6 +291,19 @@ changes to languages because of Bugzilla reports. table.mw-prefixindex-list-table to avoid duplicate ids when the special page is transcluded. * (bug 62198) window.$j has been deprecated. +* Preference "Disable link title conversion" was removed. +* SpecialRecentChanges no longer includes any functionality for generating feeds + - it has been factored out to ApiFeedRecentChanges. Old URLs redirect to new + ones. +* RecentChange::mExtra['lang'] is no longer set and should no longer be used. + Extensions should read from other configuration variables, including + $wgLocalInterwikis, to identify the current wiki. +* Sections in the parser test framework have been renamed and the old + section names are deprecated. Please use "!!wikitext" and "!!html" + (or "!!html/php") instead of "!!input" and "!!result". This allows + us to extend parser tests to accommodate additional input/output + pairs, such as "!!html/parsoid" (for the output of the Parsoid + parser, where it differs from the PHP parser). ==== Removed classes ==== * FakeMemCachedClient (deprecated in 1.18)