Removed double hook explanation AfterFinalPageOutput
[lhc/web/wiklou.git] / RELEASE-NOTES-1.23
1 Security reminder: MediaWiki does not require PHP's register_globals. If you
2 have it on, turn it '''off''' if you can.
3
4 == MediaWiki 1.23 ==
5
6 THIS IS NOT A RELEASE YET
7
8 MediaWiki 1.23 is an alpha-quality branch and is not recommended for use in
9 production.
10
11 === Configuration changes in 1.23 ===
12 * Introduced $wgPagePropsHaveSortkey as a backwards-compatibility switch,
13 for using the old schema of the page_props table, in case the respective
14 schema update was not applied.
15 * When $wgJobRunRate is higher that zero, jobs are now executed via an
16 asynchronous HTTP request to a MediaWiki entry point. This may require
17 increasing the number of server worker threads. $wgRunJobsAsync has been
18 added to disable this feature if needed, falling back to executing the job
19 on the same process but making the execution synchronously.
20 * $wgDebugLogGroups values may be set to an associative array with a
21 'destination' key specifying the log destination. The array may also contain
22 a 'sample' key with a positive integer value N indicating that the log group
23 should be sampled by dispatching one in every N messages on average. The
24 sampling is random.
25 * In addition to the current exception log format, MediaWiki now serializes
26 exception metadata to JSON and logs it to the 'exception-json' log group.
27 This makes MediaWiki easier to integrate with log aggregation and analysis
28 tools.
29 * $wgSquidServersNoPurge now supports the use of Classless Inter-Domain
30 Routing (CIDR) notation to specify contiguous blocks of IPv4 and/or IPv6
31 addresses that should be trusted to provide X-Forwarded-For headers.
32 * Preferences 'watchcreations', 'watchdefault', 'enotifwatchlistpages' ("Add
33 pages I create and files I upload to my watchlist", "Add pages and files I
34 edit to my watchlist", "Email me when a page or file on my watchlist is
35 changed") are now enabled by default. In addition new user accounts' personal
36 and talk pages are now watched by them by default.
37 * $wgLBFactoryConf: Class names have had underscores removed. The configuration
38 should be updated if LBFactory_Simple or LBFactory_Multi is configured.
39 * $wgPasswordSenderName has been removed and is no longer functional. To set a
40 custom mailer name, the system message 'emailsender' should be modified
41 (default: "{{SITENAME}}").
42 * (bug 63269) Email notifications were not correctly handling the
43 [[MediaWiki:Helppage]] message being set to a full URL (the default).
44 If you customized [[MediaWiki:Enotif body]] (the text of email notifications),
45 you'll need to edit it locally to include the URL via the new variable
46 $HELPPAGE instead of the parser functions fullurl and canonicalurl; otherwise
47 you don't have to do anything.
48 * $wgDBAhandler was removed as the only class using it was also removed
49 * The 'max threads' setting was removed from $wgDBservers.
50 * Support for AdminSettings.php has been completely removed. All configuration
51 belongs in LocalSettings.php.
52 * $wgSkipSkin, which has been replaceable by $wgSkipSkins since 2005 (r9249), is
53 now formally deprecated.
54 * Removed deprecated $wgDisabledActions as it is hardly used anywhere.
55 * $wgRateLimitLog has been deprecated and replaced by
56 $wgDebugLogGroup['ratelimit'].
57 * $wgLocalInterwikis is an array containing multiple local interwiki prefixes
58 (interwiki prefixes that point back to the current wiki). This effectively
59 allows more than one value of $wgLocalInterwiki to be specified and
60 understood by the parser. The value of $wgLocalInterwiki is automatically
61 prepended to the start of this array.
62 * $wgQueryPages has been removed. Query Pages should be added to by using the
63 wgQueryPages hook.
64 * $wgHttpOnlyBlacklist has been removed.
65 * $wgLicenseTerms has been removed as it was unused.
66 * $wgProfileOnly is now deprecated; set the log file in
67 $wgDebugLogGroups['profileoutput'] to replace it.
68 * $wgMaxBacklinksInvalidate was removed; use $wgJobBackoffThrottling instead
69 * Deprecated ResourceLoaderGetStartupModules hook.
70
71 === New features in 1.23 ===
72 * ResourceLoader can utilize the Web Storage API to cache modules client-side.
73 Compared to the browser cache, caching in Web Storage allows ResourceLoader
74 to be more granular about evicting stale modules from the cache while
75 retaining the ability to retrieve multiple modules in a single HTTP request.
76 This capability can be enabled by setting $wgResourceLoaderStorageEnabled to
77 true. This feature is currently considered experimental and should only be
78 enabled with care.
79 * (bug 6092) Add expensive parser functions {{REVISIONID:}}, {{REVISIONUSER:}}
80 and {{REVISIONTIMESTAMP:}} (with friends).
81 * Add "wgRelevantUserName" to mw.config containing the current
82 Skin::getRelevantUser value.
83 * (bug 56033) Add content model to the page information.
84 * Added Article::MissingArticleConditions hook to give extensions a chance to
85 hide their (unrelated) log entries.
86 * Added LonelyPagesQuery hook to let extensions modify the query used to
87 generate Special:LonelyPages.
88 * Added $wgOpenSearchDefaultLimit defining the default number of entries to show
89 on action=opensearch API call.
90 * For namespaces with $wgNamespaceProtection (including the MediaWiki
91 namespace), the "protect" tab will be shown only if there are restriction
92 levels available that would restrict editing beyond what
93 $wgNamespaceProtection already applies. The protection form will offer only
94 those protection levels.
95 * Added $wgAPIFormatModules, allowing extensions to add additional output
96 formatting modules for the API.
97 * (bug 47812) The MediaWiki:Group-user.{css,js} pages can now be used to add
98 custom CSS or JavaScript enabled only for registered users.
99 * (bug 52005) Special pages RecentChanges, RecentChangesLinked and Watchlist
100 now include a legend describing the symbols used in lists of changes.
101 * Improved the accessibility of the tabs in Special:Preferences.
102 * Added ApiBeforeMain hook, roughly equivalent to the BeforeInitialize hook:
103 it's called after everything is set up but before any major processing
104 happens.
105 * The jquery.client module now performs a component-wise version comparison in
106 its #test method when strings are used in the browser map: version '1.10' is
107 now correctly considered larger than '1.2'. Using numbers in the version map
108 is not affected.
109 * All API modules now support an assert parameter, which can either be
110 'user' or 'bot'. The API will throw an error if the user is not logged
111 in (user) or does not have the 'bot' userright (bot). Based off of the
112 AssertEdit extension by Steve Sanbeg.
113 * WikitextContent will now render redirects with the expected "redirect"
114 header, rather than as an ordered list. Code calling Article::viewRedirect
115 can probably be changed to no longer special-case redirects.
116 * [[Special:Diff]] was added, allowing users to create internal links to
117 revision comparison pages using syntax such as [[Special:Diff/12345]],
118 [[Special:Diff/12345/prev]] or [[Special:Diff/12345/98765]].
119 * New user accounts' personal and talk pages are now watched by them by default.
120 * Added SkinTemplateGetLanguageLink hook to allow changing the html of language
121 links.
122 * Added MessageCache::get hook as a new way to customize messages across
123 multiple sites.
124 * Added jquery.throttle-debounce ResourceLoader module to limit the number of
125 callbacks for frequently occurring events.
126 * Special:ProtectedPages shows now a table. The timestamp, the reason and
127 the protecting user is also shown.
128 * Added experimental support for using Microsoft SQL Server as the database
129 backend.
130 ** Added new Microsoft SQL Server-specific configuration variable
131 $wgDBWindowsAuthentication, which makes the web server authenticate against
132 the database server using Integrated Windows Authentication instead of
133 $wgDBuser/$wgDBpassword.
134 * HTMLForm 'select', 'selectandother', 'selectorother', 'multiselect', and
135 'radio' fields can now use message keys as labels via the 'options-messages'
136 parameter, which overrides the 'options' parameter.
137 * Admins can expire users users passwords manually, or on a schedule using the
138 $wgPasswordExpirationDays configuration setting.
139 * Add new hook SendWatchlistEmailNotification, this will be used to determine
140 whether to send a watchlist email notification.
141 * (bug 42026) Special:Contributions now includes an option to filter page
142 creations, similar to the topOnly option.
143 * Add mediawiki.ui.button styling to all pages so wiki content can use styled
144 buttons.
145 * Special:UserLogin/signup now does AJAX checks for invalid and taken usernames,
146 displaying the error live.
147 * Added BaseTemplateAfterPortlet hook to allow injecting html after portlets in skins.
148 * Support has been added for a JSON based localisation file format. The
149 installer has been updated to use it.
150 * Changes to content typography (fonts, line-height, etc.). See
151 https://www.mediawiki.org/wiki/Typography_refresh for further information.
152 * The Vector skin's visual treatment of external links has been simplified to a
153 single icon (from nine). This should not affect local rules unless they were
154 re-using these icons, which have now been deleted.
155 * ResourceLoader: mw.loader.using() now implements a Promise interface.
156 * Add new hook ChangesListInitRows accessed via ChangesList::initChangesListRows.
157 If called by the ChangesList consumer this gives extensions a chance to batch
158 process the result set prior to rendering.
159 * A PoolCounterRedis class was added which can be make use of in $wgPoolCounterConf.
160 This requires at least one Redis 2.6+ server.
161 * $wgProfileToDatabase was removed. Set $wgProfiler to ProfilerSimpleDB
162 in StartProfiler.php instead of using this.
163 * (bug 63444) Made it possible to change the indent string (default: 4 spaces)
164 used by FormatJson::encode().
165
166 === Bug fixes in 1.23 ===
167 * (bug 41759) The "updated since last visit" markers (on history pages, recent
168 changes and watchlist) and the talk page message indicator are now correctly
169 updated when the user is viewing old revisions of pages, instead of always
170 acting as if the latest revision was being viewed.
171 * (bug 56443) Special:ConfirmEmail no longer shows a "Mail a confirmation code"
172 when the email address is already confirmed. Also, consistently use
173 "confirmed", rather than "authenticated", when messaging whether or not the
174 user has confirmed an email address.
175 * (bug 19415) action=render no longer shows section edit links. This affects
176 behavior of several other features where (bogus) section edit links will
177 disappear, such as file description pages loaded via $wgUseInstantCommons or
178 pages transcluded cross-wiki via $wgEnableScaryTranscluding.
179 * (bug 56912) Show correct link color on cached result of Special:DeadendPages.
180 * Classes TitleListDependency and TitleDependency have been removed, as they
181 have been found unused in core and extensions for a long time.
182 * (bug 57098) SpecialPasswordReset now obeys returnto parameter
183 * (bug 37812) ResourceLoader will notice when a module's definition changes and
184 recompile it accordingly.
185 * (bug 57201) SpecialRecentChangesFilters hook is now executed for feeds.
186 * (bug 58640) Fixed a compatibility issue with PCRE 8.34 that caused pages
187 to appear blank or with missing text.
188 * (bug 56931) Updated the plural rules to CLDR 24. They are in new format
189 which is detailed in UTS 35 Rev 33. The PHP parser and evaluator as well as
190 the JavaScript evaluator were updated to support the new format. Plural rules
191 for some languages have changed, most notably Russian. Affected software
192 messages have been updated and marked for review at translatewiki.net.
193 * (bug 14323) Redirect pages, when viewed with redirect=no, no longer hide the
194 remaining page content.
195 * (bug 23542) imagelinks now stores both the redirect and target (as
196 templatelinks does).
197 * (bug 58167) The web installer no longer throws an exception when PHP is
198 compiled without support for MySQL yet with support for another DBMS.
199 * (bug 56199) Raw option of parser functions must now match complete word,
200 to take effect.
201 * (bug 60543) Special:PrefixIndex forgot stripprefix=1 for "Next page" link
202 * (bug 29762) Undoing an already-undone edit will now display an appropriate
203 message instead of leading the user to make a null edit.
204 * (bug 52659) mediawiki.notification: Notification area remained visible when
205 empty and thus was stealing pointer events from links on the page.
206 * (bug 26811) When a DBUnexpectedError occurs, DB server hostnames are now
207 hidden unless $wgShowExceptionDetails is true, and $wgShowDBErrorBacktrace
208 no longer applies in such cases.
209 * (bug 60960) Avoid doing file_exist() checks on data: URIs, as they cause
210 warnings to be printed on Windows due to large path length.
211 * (bug 48084) Fixed a bug in the installer that could cause $wgLogo to hold
212 the wrong path to the placeholder logo (skins/common/images/wiki.png).
213
214 === Web API changes in 1.23 ===
215 * (bug 54884) action=parse&prop=categories now indicates hidden and missing
216 categories.
217 * action=query&meta=filerepoinfo now returns additional information for each
218 repo.
219 * action=parse&prop=languageshtml was deprecated in 1.18 and will be removed in
220 MediaWiki 1.24.
221 * action=parse now has disabletoc flag to disable table of contents in output.
222 * (bug 25702) list=allcategories, list=allimages, list=alllinks, list=allpages,
223 list=deletedrevs and list=filearchive did not handle case-sensitivity
224 properly for all parameters.
225 * ApiQueryBase::titlePartToKey allows an extra parameter that indicates the
226 namespace in order to properly capitalize the title part.
227 * (bug 57874) action=feedcontributions no longer has one item more than limit.
228 * All API modules now support an assert parameter. See the new features section
229 for more details.
230 * Added prop=contributors to fetch the list of contributors to the page.
231 * The following API modules will now return entries where fields have been
232 revision-deleted: list=deletedrevs, list=filearchive, list=recentchanges,
233 list=watchlist. "hidden" indicators will be included, in the same style as is
234 already done for prop=revisions.
235 * The following API modules will now return the content of revision-deleted
236 fields, in addition to the "hidden" indicators, if the querying user has the
237 necessary rights: list=logevents, list=usercontribs, prop=imageinfo,
238 prop=revisions.
239 * The above modules, where applicable, will now return entries filtered by
240 revision-deleted fields if the querying user has the necessary rights. For
241 example, prop=revisions with rvuser or rvexcludeuser will no longer skip
242 revisions where the user was revision-deleted if the current user has the
243 deletedhistory right.
244 * The 'hideuser' right, used when blocking, is no longer necessary or
245 sufficient for seeing contributions with revision-deleted in
246 list=usercontribs.
247 * list=watchlist now uses the querying user's rights rather than the wlowner's
248 rights when checking whether wlprop=patrol is allowed.
249 * (bug 32151) ApiWatch now has pageset capabilities (titles/pageids/generators).
250 Title parameter is now deprecated.
251 * (bug 23005) Added action=revisiondelete.
252 * Added siprop=restrictions to API action=query&meta=siteinfo for querying
253 possible page restriction (protection) levels and types.
254 * Added prop 'limitreportdata' and 'limitreporthtml' to action=parse.
255 * (bug 58627) Provide language names on action=parse&prop=langlinks.
256 * Deprecated llurl= in favour of llprop=url for action=query&prop=langlinks.
257 * Added llprop=langname and llprop=autonym for action=query&prop=langlinks.
258 * prop=redirects is added, to return redirects to the pages in the query.
259 * list=allredirects is added, to list all redirects pointing to a namespace.
260 * (bug 42026) Added ucshow={new,!new,top,!top} to list=usercontribs.
261 Also added newonly to action=feedcontributions.
262 * (bug 42026) Deprecated uctoponly in favor of ucshow=top.
263 * list=search no longer has a "srredirects" parameter. Redirects are now
264 included in all searches.
265 * Added list=prefixsearch that works like action=opensearch but can be used as
266 a generator.
267 * (bug 24782) Various modules will now use unique continuation parameters.
268 * (bug 63249) Cache RecentChanges Atom feed in varnish for 15 seconds.
269
270 === Languages updated in 1.23 ===
271
272 MediaWiki supports over 350 languages. Many localisations are updated
273 regularly. Below only new and removed languages are listed, as well as
274 changes to languages because of Bugzilla reports.
275
276 * Support was added for Algerian Spoken Arabic (arq).
277 * Support was added for Riograndenser Hunsrückisch (hrx).
278 * Support was added for Northern Luri (lrc).
279
280 === Other changes in 1.23 ===
281 * Added pp_sortkey column to page_props table, so pages can be efficiently
282 queried and sorted by property value (bug 58032).
283 See $wgPagePropsHaveSortkey if you want to postpone the schema change.
284 * The rc_type field in the recentchanges table has been superseded by a new
285 rc_source field. The rc_source field is a string representation of the
286 change type where rc_type was a numeric constant. This field is not yet
287 queried but will be in a future point release of 1.22.
288 ** Utilize update.php to create and populate this new field. On larger wiki's
289 which do not wish to update recentchanges table in one large update please
290 review the sql and comments in maintenance/archives/patch-rc_source.sql.
291 ** The rc_type field of recentchanges will be deprecated in a future point
292 release.
293 * The global variable $wgArticle has been removed after a lengthy deprecation.
294 * The global functions addButton and insertTags (for mw.toolbar.addButton and
295 mw.toolbar.insertTags) now emits mw.log.warn when accessed.
296 * The ExpandTemplates extension has been moved into MediaWiki core.
297 * (bug 52812) Removed "Disable search suggestions" from Preference.
298 * (bug 52809) Removed "Disable browser page caching" from Preference.
299 * Three new modules intended for use by custom skins were added:
300 'mediawiki.skinning.elements', 'mediawiki.skinning.content', and
301 'mediawiki.skinning.interface', representing three levels of standard
302 MediaWiki styling. Previously skin creators wishing to use them had to refer
303 to the file names of appropriate files directly, which is now discouraged.
304 * The modules 'skins.vector' and 'skins.monobook' have been renamed to
305 'skins.vector.styles' and 'skins.monobook.styles', respectively,
306 and their definition was changed not to include the common*.css files;
307 the two skins now load the 'mediawiki.skinning.interface' module instead.
308 * A page_links_updated field has been added to the page table.
309 * SpecialPage::getTitle has been deprecated in favor of
310 SpecialPage::getPageTitle.
311 * BREAKING CHANGE: Two potentially backwards-incompatible changes have been made
312 to the 'SpecialWatchlistQuery' hook's last parameter (array $values) to make
313 the hook more consistent with the 'SpecialRecentChangesQuery' one:
314 ** Several array keys have been renamed: hideMinor → hideminor,
315 hideBots → hidebots, hideAnons → hideanons, hideLiu → hideliu,
316 hidePatrolled → hidepatrolled, hideOwn → hidemyself.
317 ** The parameter value is now a FormOptions object, not a plain array (array
318 access operators should continue to work, as it implements the ArrayAccess
319 interface).
320 * Option to mark hooks as deprecated has been added.
321 * (bug 52811) Preference "Enable section editing via [edit] links" was removed.
322 * (bug 52813) Preference "Show table of contents (for pages with more than
323 3 headings)" was removed.
324 * (bug 52810) Preference "Justify paragraphs" was removed.
325 * OutputPage::showErrorPage raises a notice if arguments are incoherent.
326 * Thumbnails that keep failing to render in thumb.php will be rate-limited
327 againt further render attempts for 1 hour. $wgAttemptFailureEpoch can be
328 altered to reset all rate-limited thumbnails at once.
329 * (bug 56572) Builds of the OOjs and OOjs UI libraries are now available.
330 * mw.loader.go and mw.loader.version have been removed.
331 * (bug 52815) Preference "Enable simplified search bar (Vector skin only)"
332 was removed.
333 * A user_password_expires column has been added to the user table. The User
334 object expects this column to exist. Use update.php to create this new field.
335 * The jquery.delayedBind ResourceLoader module was deprecated in favor of the
336 jquery.throttle-debounce module. It will be removed in MediaWiki 1.24.
337 * mw.user.bucket has been deprecated.
338 * On Special:PrefixIndex, a table#mw-prefixindex-list-table was changed to
339 table.mw-prefixindex-list-table to avoid duplicate ids when the special page
340 is transcluded.
341 * (bug 62198) window.$j has been deprecated.
342 * Preference "Disable link title conversion" was removed.
343 * SpecialRecentChanges no longer includes any functionality for generating feeds
344 - it has been factored out to ApiFeedRecentChanges. Old URLs redirect to new
345 ones.
346 * RecentChange::mExtra['lang'] is no longer set and should no longer be used.
347 Extensions should read from other configuration variables, including
348 $wgLocalInterwikis, to identify the current wiki.
349 * Sections in the parser test framework have been renamed and the old
350 section names are deprecated. Please use "!!wikitext" and "!!html"
351 (or "!!html/php") instead of "!!input" and "!!result". This allows
352 us to extend parser tests to accommodate additional input/output
353 pairs, such as "!!html/parsoid" (for the output of the Parsoid
354 parser, where it differs from the PHP parser).
355 * Special:Search no longer has an "include redirects" option on the advanced
356 tab. Redirects are now included in all searches.
357 * mediawiki.api.category's getCategories() 'async' parameter was deprecated.
358 * The locations of resources have been split between upstream libraries, now in
359 resources/lib/, local libaries in resources/src/, and local forks of upstream
360 libraries, also in resources/src/.
361 * BREAKING CHANGE: The automatically-generated function closure with which
362 ResourceLoader wraps all modules' JavaScript code now binds the identifier
363 names 'jQuery' and '$' to the jQuery object of the version of jQuery that is
364 bundled with MediaWiki. If you bind these names to other objects in global
365 scope (like Zepto.js or document.querySelectorAll, for example) you will need
366 to use different names to or re-bind them at the top of each
367 ResourceLoader-loaded module.
368 * (bug 52342) Preference "Remember my login" was removed.
369
370 ==== Removed classes ====
371 * FakeMemCachedClient (deprecated in 1.18)
372 * RdfMetaData (unused)
373 * TitleDependency (unused)
374 * TitleListDependency (unused)
375 * WikiError (deprecated in 1.17)
376 * WikiXmlError (deprecated in 1.17)
377 * WikiErrorMsg (deprecated in 1.17)
378
379 ==== Renamed classes ====
380 * CdbReader_DBA to CdbReaderDBA
381 * CdbReader_PHP to CdbReaderPHP
382 * CdbWriter_DBA to CdbWriterDBA
383 * CdbWriter_PHP to CdbWriterPHP
384 * DiffOp_Add to DiffOpAdd
385 * DiffOp_Change to DiffOpChange
386 * DiffOp_Copy to DiffOpCopy
387 * DiffOp_Delete to DiffOpDelete
388 * HWLDF_WordAccumulator to HWLDFWordAccumulator
389 * LBFactory_Fake to LBFactoryFake
390 * LBFactory_Multi to LBFactoryMulti
391 * LBFactory_Simple to LBFactorySimple
392 * LBFactory_Single to LBFactorySingle
393 * LCStore_Accel to LCStoreAccel
394 * LCStore_CDB to LCStoreCDB
395 * LCStore_DB to LCStoreDB
396 * LCStore_Null to LCStoreNull
397 * LoadBalancer_Single to LoadBalancerSingle
398 * LoadMonitor_MySQL to LoadMonitorMySQL
399 * LoadMonitor_Null to LoadMonitorNull
400 * LocalisationCache_BulkLoad to LocalisationCacheBulkLoad
401 * csvStatsOutput to CsvStatsOutput
402 * extensionLanguages to ExtensionLanguages
403 * languages to Languages
404 * statsOutput to StatsOutput
405 * textStatsOutput to TextStatsOutput
406 * wikiStatsOutput to WikiStatsOutput
407
408 ==== Removed methods ====
409 * ApiBase::getValidNamespaces() (deprecated in 1.17)
410 * ApiMain::setCachePrivate() (deprecated in 1.17)
411 * ApiMain::setVaryCookie (deprecated in 1.17)
412 * Article::doRedirect() (deprecated in 1.18)
413 * Article::doUnwatch() (deprecated in 1.18)
414 * Article::doWatch() (deprecated in 1.18)
415 * Article::forUpdate() (deprecated in 1.18)
416 * Article::markpatrolled() (deprecated in 1.18)
417 * Article::unwatch() (deprecated in 1.18)
418 * Article::watch() (deprecated in 1.18)
419 * Block::clear() (deprecated in 1.18)
420 * Block::decodeExpiry() (deprecated in 1.18)
421 * Block::encodeExpiry() (deprecated in 1.18)
422 * Block::forUpdate() (deprecated in 1.18)
423 * Block::infinity() (deprecated in 1.18)
424 * Block::load() (deprecated in 1.18)
425 * Block::newFromDB() (deprecated in 1.18)
426 * Block::normaliseRange() (deprecated in 1.18)
427 * Block::parseExpiryInput() (deprecated in 1.18)
428 * CategoryViewer::addSubcategory() (deprecated in 1.17)
429 * EditPage::spamPage() (deprecated since 1.17)
430 * Exif::getFormattedData() (deprecated in 1.18)
431 * Exif::makeFormattedData() (deprecated in 1.18)
432 * in_string (deprecated in 1.21)
433 * Language::convertLinkToAllVariants() (deprecated in 1.17)
434 * LanguageConverter::convertLinkToAllVariants() (deprecated in 1.17)
435 * Linker::makeBrokenLink() (deprecated in 1.16)
436 * Linker::makeBrokenLinkObj() (deprecated in 1.16)
437 * Linker::makeColouredLinkObj() (deprecated in 1.16)
438 * Linker::makeSizeLinkObj() (deprecated in 1.17)
439 * MediaWiki::articleFromTitle() (deprecated in 1.18)
440 * ParserOptions::getkin() (deprecated 1.18)
441 * ProfilerSimple::getCpuTime (deprecated in 1.20)
442 * Revision::revText() (deprecated in 1.17)
443 * SkinTemplate::jstext() (deprecated in 1.21)
444 * SpecialPage::__call() (deprecated in 1.17)
445 * SpecialPage::executePath() (deprecated in 1.18)
446 * SpecialPage::exists() (deprecated in 1.18)
447 * SpecialPage::file() (deprecated in 1.18)
448 * SpecialPage::func() (deprecated in 1.18)
449 * SpecialPage::getGroup() (deprecated in 1.18)
450 * SpecialPage::getPage() (deprecated in 1.18)
451 * SpecialPage::getPageByAlias() (deprecated in 1.18)
452 * SpecialPage::getLocalNameFor() (deprecated in 1.18)
453 * SpecialPage::getRegularPages() (deprecated in 1.18)
454 * SpecialPage::getRestrictedPages() (deprecated in 1.18)
455 * SpecialPage::getTitleForAlias() (deprecated in 1.18)
456 * SpecialPage::getUsablePages() (deprecated in 1.18)
457 * SpecialPage::includable() (deprecated in 1.18)
458 * SpecialPage::init()
459 * SpecialPage::initAliasList() (deprecated in 1.18)
460 * SpecialPage::initList() (deprecated in 1.18)
461 * SpecialPage::name() (deprecated in 1.18)
462 * SpecialPage::removePage() (deprecated in 1.18)
463 * SpecialPage::resolveAlias() (deprecated in 1.18)
464 * SpecialPage::resolveAliasWithSubpage() (deprecated in 1.18)
465 * SpecialPage::restriction() (deprecated in 1.18)
466 * SpecialPage::setGroup() (deprecated in 1.18)
467 * SpecialRecentChanges::feedSetup()
468 * SpecialRevisionDelete::extractBitField() (deprecated in 1.22)
469 * User::getPageRenderingHash() (deprecated in 1.17)
470 * WebRequest::getFileSize() (deprecated in 1.17)
471 * WebRequest::isPathInfoBad() (deprecated in 1.17)
472 * wfGenerateToken (deprecated in 1.20)
473 * wfStreamFile (deprecated in 1.19)
474 * wfUILang (deprecated in 1.18)
475 * WikiPage::createUpdates() (deprecated in 1.18)
476 * WikiPage::quickEdit() (deprecated in 1.18)
477 * WikiPage::useParserCache() (deprecated in 1.18)
478 * WikiPage::viewUpdates() (deprecated in 1.18)
479
480 ==== Removed globals ====
481 * $wgBetterDirectionality (deprecated in 1.18)
482
483 == Compatibility ==
484
485 MediaWiki 1.23 requires PHP 5.3.2 or later.
486
487 MySQL is the recommended DBMS. PostgreSQL or SQLite can also be used, but
488 support for them is somewhat less mature. There is experimental support for
489 Oracle and Microsoft SQL Server.
490
491 The supported versions are:
492
493 * MySQL 5.0.2 or later
494 * PostgreSQL 8.3 or later
495 * SQLite 3.3.7 or later
496 * Oracle 9.0.1 or later
497 * Microsoft SQL Server 2005 (9.00.1399)
498
499 == Upgrading ==
500
501 1.23 has several database changes since 1.22, and will not work without schema
502 updates. Note that due to changes to some very large tables like the revision
503 table, the schema update may take quite long (minutes on a medium sized site,
504 many hours on a large site).
505
506 If upgrading from before 1.11, and you are using a wiki as a commons
507 repository, make sure that it is updated as well. Otherwise, errors may arise
508 due to database schema changes.
509
510 If upgrading from before 1.7, you may want to run refreshLinks.php to ensure
511 new database fields are filled with data.
512
513 If you are upgrading from MediaWiki 1.4.x or earlier, you should upgrade to
514 1.5 first. The upgrade script maintenance/upgrade1_5.php has been removed
515 with MediaWiki 1.21.
516
517 Don't forget to always back up your database before upgrading!
518
519 See the file UPGRADE for more detailed upgrade instructions.
520
521 For notes on 1.22.x and older releases, see HISTORY.
522
523 == Online documentation ==
524
525 Documentation for both end-users and site administrators is available on
526 MediaWiki.org, and is covered under the GNU Free Documentation License (except
527 for pages that explicitly state that their contents are in the public domain):
528
529 https://www.mediawiki.org/wiki/Documentation
530
531 == Mailing list ==
532
533 A mailing list is available for MediaWiki user support and discussion:
534
535 https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
536
537 A low-traffic announcements-only list is also available:
538
539 https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce
540
541 It's highly recommended that you sign up for one of these lists if you're
542 going to run a public MediaWiki, so you can be notified of security fixes.
543
544 == IRC help ==
545
546 There's usually someone online in #mediawiki on irc.freenode.net.