Prevent registration/login with the username "MediaWiki default"
[lhc/web/wiklou.git] / RELEASE-NOTES
1 = MediaWiki release notes =
2
3 Security reminder: MediaWiki does not require PHP's register_globals
4 setting since version 1.2.0. If you have it on, turn it *off* if you can.
5
6 == MediaWiki 1.6.0 ==
7
8 MediaWiki is moving to a quarterly snapshot release cycle; roughly every
9 three months, the current
10
11 Big things to note:
12 * MySQL 3.23.x is no longer supported.
13 * PHP 4.1/4.2 is no longer supported.
14 * Experimental Oracle support
15 * SVG support with rsvg
16 * Installer now use monobook skin
17 * New protection (bug 1735), preferences and userlogin designs
18 * Category system is always enabled.
19
20
21 == Upgrading ==
22
23 Several changes to the database have been made from 1.5; these are relatively
24 minor but do require that the update process be run before the new code will
25 work properly:
26
27 * A new "templatelinks" table tracks template inclusions.
28 * A new "externallinks" table tracks URL links; this can be used by a
29 mass spam-cleanup tool in the SpamBlacklist extension.
30 * A new "jobs" table stores a queue of pages to update in the background; this
31 is used to update links in including pages when templates are edited.
32
33 To ensure that these tables are filled with data, run refreshLinks.php after
34 the upgrade.
35
36
37 If you are upgrading from MediaWiki 1.4.x or earlier, some major database
38 changes are made.
39
40 See the file UPGRADE for more detailed upgrade instructions.
41
42
43 == Changes since 1.5 ==
44
45 * please fill in for the last couple weeks
46 * (bug 2885) More PHP 5.1 fixes: skin, search, log, undelete
47
48 Code quality:
49 * Use strval() to make sure we don't accidentally get null on bad revision
50 text loads or other fields mucking up XML export output
51 * Clean up duplicate code for selection of changeslist style
52 * Correct blob caching to reduce redundant blob loads on backups
53 * (bug 3182) Clear link cache during import to prevent memory leak
54 * Fixed possible infinite loop in formatComment
55 * Wrap message page insertions in a transaction to speed up installation
56 * Avoid notice warning on edit with no User-Agent header
57 * (bug 3649) Remove obsolete, broken moveCustomMessages script
58 * Avoid numerous redundant latest-revision lookups in history
59 * Require PHP 4.3.2 or higher strictly now.
60 * Tweak infinite-template-handling loop for PHP 5.1.1 string handling change
61 * Remove unused OutputPage::addCookie()
62 * Fix for short_open_tag off again; please don't break this, guys
63 * (bug 4507) Adjust FULLPAGENAMEE escaping to standard form
64 * (bug 5302) Merge the two #p-search .pBody statements in monobook css.
65
66 Database:
67 * Finally dropped MySQL 3.23.x support
68 * Oracle support
69 * (bug 3056) MySQL 3 compatibility fix: USE INDEX instead of FORCE INDEX
70 * Update all stats fields on recount.sql
71 * (bug 3227) Fix SQL injection introduced in experimental code
72 * Fix table prefix usage in Block::enumBlocks
73 * (bug 3448) Set page_len on undelete
74 * (bug 3506) Avoid MySQL error when Listusers returns no results
75 * Skip update of disused 'rc_cur_time' field (todo: discard the field)
76 * (bug 3735) Fix to run under MySQL 5's strict mode
77 * (bug 3786) Experimental support for MySQL 4.1/5.0 utf8 charset mode
78 NOTE: Enabling this may break existing wikis, and still doesn't
79 work for all Unicode characters due to MySQL limitations.
80 * MySQL 5.0 strict mode fix for moving unwatched pages
81 * Ability to set the table name for external storage servers
82 * Update ipblocks table in MySQL 5 table defs
83 * Removed FulltextStoplist.php, no longer used (was for MySQL 3.x workaround)
84 * Added templatelinks table, to track template inclusions. User-visible effects
85 will be:
86 * (inclusion) tag for inclusions in Special:Whatlinkshere
87 * More accurate list of used templates on the edit page
88 * More reliable cache invalidation when templates outside the template
89 namespace are changed
90 * Respect database prefix in dumpHTML.inc
91 * Removed read-only check from Database::query()
92 * Added externallinks table, to track links to arbitrary URLs
93 * Added job table, for deferred processing of jobs. The immediate application is
94 to complete the link table refresh operation when templates are changed.
95 * Don't change the password of the MySQL root user.
96
97 Documentation:
98 * (bug 3306) Document $wgLocalTZoffset
99
100 Hooks:
101 (list not complete)
102 * Move ArticleSave hook execution into Article insert/update functions,
103 so they get called on non-EditPage actions that use these functions
104 to create or update pages.
105 * Added EditFilter hook, and output callback on EditPage::showEditForm()
106 for a place to add in captcha-type extensions in the edit flow
107 * (bug 3684) Fix typo in fatal error backtraces in Hooks.php
108 * Fix for hook callbacks on objects containing no fields
109 * Add a hook for additional user creation throttle / limiter extensions
110 * Use $wgOut->parse() in wfGetSiteNotice() instead of creating a new parser
111 instance. This allows use of extension hooks if required.
112 * Added AutoAuthenticate hook for external User object suppliers
113 * Added 'PageRenderingHash' hook for changing the parser cache hash key
114 from an extension that changes rendering based on nonstandard options.
115 * Add 'GetInternalURL' hook to match the GetFullURL and GetLocalURL ones
116 * (bug 4456) Add hook for marking article patrolled
117 * Add UserRights hook, fires after a user's group memberships are changed
118
119 Images:
120 * Support SVG rendering with rsvg
121 * Cap arbitrary SVG renders to given image size or $wgSVGMaxSize pixels wide
122 * (bug 3127) Render large SVGs at image page size correctly
123 * Fix scaling of non-integer SVG unit sizes
124 * (bug 2800) Don't scale up small images on |thumb| without explicit size
125 * Use the real file link instead of the default-size rasterized version for
126 large SVG images on image description page
127 * Include the file name/type/size line for non-resized images
128 * (bug 3489) PHP 5.1 compat problem with captioned images
129 * (bug 3643) Fix image page display of large images with resizing disabled
130 * Added a limit to the size of image files which can be thumbnailed
131 * (bug 3806) Gracefully fall back to client-side scaling on |thumb| image
132 that passes $wgMaxImageArea
133 * (bug 153) Adjust thumbnail size calculations to match consistently;
134 patch by David Benbennick
135 * (bug 4162) Add $wgThumbnailEpoch timestamp to force old thumbs to
136 be rerendered on demand, sitewide
137 * (bug 1850) Additional fixes so existing local and remote images
138 get a blue link even if there's no local description page
139 * Avoid FATAL ERROR when creating thumbnail of non-existing image
140 * (bug 4207) Wrong image size when using 100x200px syntax to scale image up
141 patch by David Benbennick
142 * Don't delete thumbnails when refreshing exif metadata. This caused thumbs
143 to vanish mysteriously from time to time for files that didn't have metadata.
144 * (bug 4426) Add link to user_talk page on image pages
145 * Support a custom convert command for thumbnailing. See DefaultSettings.php
146 and the comments for $wgCustomConvertCommand, for more information.
147
148 Installer:
149 * (bug 3782) Throw fatal installation warning if mbstring.func_overload on.
150 Why do people invent these crazy options that change language semantics?
151 * Fixed installer bugs 921 and 3914 (issues with using root and so forth)
152 * (bug 4258) Use ugly urls for ISAPI by default
153 patch by Rob Church
154 * Improve installer
155 * Use a superuser account (such as root), if specifed, to create tables
156 * Don't overwrite conservative permissions on the mySQL user with ALL
157 permissions, if said user exists
158 * Changes to some of the wording of explanations for fields
159 * (bug 1734) granting db permissions failed with db usernames containg '-'
160
161 Maintenance:
162 * Fix problem reported on mailing list where re-initialising stats didn't work (can't insert
163 duplicate rows with the same id field)
164 * Added --conf option to command line scripts, allowing the user to specify a
165 different LocalSettings.php.
166 * Maintenance script to delete unused text records
167 * Maintenance script to delete non-current revisions
168 * Maintenance script to wipe a page and all revisions from the database
169 * Maintenance script to reassign edits from one user to another
170 * Maintenance script to find and remove links to a given domain (cleanupSpam.php)
171 * Fix --report interval option for dumpTextPass
172
173 i18n / Languages:
174 * Partial support for Basque language (from wikipedia and meta)
175 * (bug 3141) Partial support for Breton language (thanks Fulup).
176 * Support for venitian language
177 * (bug 1334) LanguageGa.php update
178 * Finnish date format was hardcoded, now implemented properly
179 * (bug 3190) Added some date format choices for language sr
180 * (bug 2753) Some namespaces were not translated in LanguageTa.php (Tamil)
181 * (bug 3204) Fix typo breaking special pages in fy localization
182 * (bug 3177) Estonian date formats not implemented in LanguageEt.php
183 * (bug 1020) Changing user interface language does not work immediately
184 * (bug 3271) Updated LanguageNn.php for HEAD
185 * Experimental feature to allow translation of block expiry times
186 Implementation only for Finnish currently
187 * (bug 3304) Language file for Croatian (LanguageHr.php)
188 * (bug 2143) Update Vietnamese interface
189 * (bug 3063) Remove some hardcodings from Hebrew localisation
190 * (bug 3408) Bulgarian formatNum corrected
191 * (bug 1512) Disable x-code interp on Esperanto URLs for now, it does more
192 harm than good under current system by breaking incoming URLs with "ux".
193 (Editing is not affected, just URLs.)
194 * (bug 1423) LanguageJa.php update
195 * Fix language name for dv
196 * (bug 3503) Update LanguageSq.php from sq.wikipedia.org messages
197 * (bug 3629) Fix date & time format for Frisian
198 * (bug 3334) Namespace changes for Polish
199 * (bug 3580) Change default Dutch language file to more neutral
200 * (bug 3656) LanguageHr.php - added convertPlural
201 * (bug 3414) LanguageBe.php - added convertPlural
202 * (bug 3163) Full translation of LanguageBr
203 * (bug 3617) Update for portuguese language (pt)
204 * Namespaces hacks on LanguagePl
205 * (bug 3682) LanguageSr.php - added convertPlural
206 * (bug 3694) LanguageTr.php update
207 * (bug 3711) Removed invisible unicode characters from LanguageHu
208 * (bug 2981) Linktrail for Tamil (ta)
209 * (bug 3722) Update of Arabic language (ar) Namespace changes
210 * Removed hardcoded Norwegian (no) project namespaces
211 * (bug 2324) image for redirects should be without text and oriented according to content language
212 * (bug 3666) Don't spew PHP warnings in prefs on unrecognized site language
213 * (bug 3817) Use localized date formats in preferences; 'no preference' option
214 localizable as 'datedefault' message. Tweaked lots of languages files...
215 * (bug 2721) Regression: Use European number separators for vi: wikis
216 * (bug 3961) minor languageDe changes
217 * (bug 1984) LanguageKo.php (Korean) update
218 * (bug 3804) update of LanguageWa.php file
219 * (bug 3886) Update for Portuguese language (pt)
220 * (bug 4020) Update namespaces for ms
221 * (bug 3922) bidi embedding overrides on category links
222 * (bug 4061) Update of Slovene namespace names (LanguageSl.php)
223 * (bug 4064) LanguageDe comma changes
224 * (bug 3922) Further tweaks to bidi overrides in category list for old
225 versions of Safari and Konqueror
226 * Fix custom namespaces on wikis set for Portuguese
227 * (bug 4153) Fix block length localizations in Greek
228 * (bug 3844) ab: av: ba: ce: & kv: now inherit from LanguageRu.php
229 ii: & za: now inherit from LanguageZn_cn.php
230 * (bug 4165) Correct validation for user language selection (data taint)
231 * (bug 4192) Remove silly 'The Free Encyclopedia' default sitesubtitle
232 * Use content-lang for sitenotice
233 * (bug 4233) Update LanguageJa.php
234 * (bug 4279) Small correction to LanguageDa.php
235 * (bug 4108, 4336) Remove trailing whitespace from various messages, which
236 mucks up message updating to create dupe entries
237 * (bug 4389) Fix math options on zh-hk and zh-tw (but not localized)
238 * (bug 4392) Update of LanguageSr.php
239 * (bug 4382) Frisian numeric format
240 * (bug 4424) Update for Spanish language (es) 100% messages translated
241 * (bug 4425) Typos in Polish translation
242 * (bug 4436) Update for Turkish language (tr)
243 * (bug 4413) Update of Farsi language file (LanguageFa.php)
244 * Update for LanguageSr (Serbian): magic words
245 * (bug 137) MediaWiki:Copyrightwarning hardcoding
246 * (bug 4457) Update for Portuguese language (pt)
247 * convertPlural breakage fixed a little
248 * (bug 4144) Support for Sudanese language (Basa Sunda)
249 * Big cleanup:
250 - Removed obsolote, badly or untranslated messages
251 - Removed references to wikipedia/wikimedia etc in messages
252 - Other cleanup, like removing html and javascript and extension calls
253 - Removed hardcoded namespaces: Tt, Ms, Ia, Ga, Fo, Bn, Csb, He, Nv, Oc, Tlh
254 - Removed some useless backwards compatibility hacks
255 - Fixed formatnum on many languages
256 * wgAmericanDates check produced incorrect results in languages that don't have
257 a such distinction
258 * (bug 4548) Update for Portuguese language (pt): time format
259 * (bug 4530) Use consistent name for Kurdish
260 * Tweak default "upload disabled" text
261 * (bug 4504) Use site language for namespace name resolution
262 * (bug 4510) Correct Barnes & Noble bookstore URLs
263 * (bug 3991) Allow the operation of wikicode on Protect move only text
264 * (bug 4267) Switch dv sd ug ks arc languages to RTL
265 * Default main page content improved per bug 4690
266 * (bug 4615) Update for Portuguese language (pt)
267 * Separated MessagesSl.php as the other languages.
268 * (bug 4960) Add additional namespaces variants to Yiddish for compatibility
269 * (bug 4805) Removed more wikipedia-references from MessagesUk.php
270 * (bug 5015) Update magic words translation in LanguageBe.php
271 * (bug 4859) Update for Portuguese messages (pt)
272 * (bug 4788) One string for MessagesPl
273 * Restriction types now use restriction-* messages instead of ui messages
274 * (bug 4685) Slovenian LanguageSl.php hardcodes project namespace
275 * (bug 5097) Fix Hungarian language (hu): thousands separator
276 * (bug 5098) Update for Portuguese messages (pt)
277 * (bug 5113) Spelling error in French language file
278 * (bug 5105) Magic words for LanguageAr.php
279 * (bug 3993) Variants for Serbian language
280 * Typo in English messages file
281 * (bug 4114) Spacing in watchlist rows (in editing mode)
282 * Update default "exporttext" to reflect that Special:Import exists
283 * (bug 4960) Add additional namespaces variants to Yi projects: Yiddish Wikinews fix
284 * (bug 5357) Add the icon near the user name also in RTL interfaces
285 * (bug 5156) Update for Hebrew language (he)
286 * (bug 4497,4704,5010) Added some new language codes.
287 * (bug 5362) Piedmontese added
288 * (bug 5349) Update for Portuguese messages (pt)
289 * (bug 3573) Finished full Greek translation: namespaces
290 * (bug 5288) Initial localisation for Az
291 * (bug 4361) Fix "allmessagesnotsupportedui" so it doesn't refer to nonexisting
292 page
293 * Tweak wording of "allmessagesnotsupporteddb"
294
295 Parser:
296 * (bug 2522) {{CURRENTDAY2}} now shows the current day number with two digits
297 * (bug 3210) Fix Media: links with remote image URL path
298 * (bug 3405) Don't use raw letters as aliases of MSGNW: and SUBST:
299 * (bug 3412) Clean up date format handling so ~~~~-sigs work with default
300 format as designed. Documentation comments updated.
301 * Fix Parser::unstrip on PHP 5.1.0RC4
302 * (bug 3797) Don't expand variables and sigs in comments
303 * Allow parser cache on redirect targets
304 * Run wikitext-escaping on plaintext sigs (no wiki markup, just name)
305 * Check for unbalanced HTML tags on raw sigs (markup allowed, but show
306 a warning in prefs and use default sig if not balanced)
307 * Respect <noinclude> and <includeonly> during {{subst:}} expansion as well as
308 ordinary templates.
309 * Support <includeonly> in templates loaded through preload= parameter
310 * (bug 3979) Save correct {{REVISIONID}} into parser cache on edit
311 * Substitute {{REVISIONID}} correctly in diff display
312 * (bug 1850) Allow red-links on image pages linked with [[:image:foo]]
313 * Fix XML validity checks in parser tests on PHP 5.1
314 * (bug 4377) "[" is not valid in URLs
315 * (bug 4453) fix for __TOC__ dollar-number breakage
316 * Convert unnecessary URL escape codes in external links to their equivalent
317 character before doing anything with them. This prevents certain kinds of
318 spam filter evasion.
319 * (bug 4783) : Fix for "{{ns:0}} does not render"
320 * Improved support for interwiki transclusion
321 * (bug 1850) Image link to nonexistent file fixed.
322 * (bug 5167) Add {{SUBPAGENAME}} and {{SUBPAGENAMEE}} variables
323 * (bug 4949) Missing : in "addedwatchtext" for English and Spanish
324
325 Upload:
326 * (bug 2527) Always set destination filename when new file is selected
327 * (bug 3076) Support MacBinary-encoded uploads from IE/Mac
328 * (bug 2554) Tell users they are uploading too large file
329 * Support for a license selection box on Special:Upload, configurable from MediaWiki:Licenses
330 * Add 'reupload' and 'reupload-shared' permission keys to restrict new uploads
331 overwriting existing files; default is the old behavior (allowed).
332
333 Security:
334 * (bug 3244) Fix remote image loading hack, JavaScript injection on MSIE
335 * (bug 3280) Respect 'move' group permission on page moves
336 * (bug 2613) Clear saved passwords from the form
337 * IP privacy fix for blocklist search on autoblocks
338 * Security fix for <math>
339 * Security fix for tables
340 * Security fix for Special:Upload license selection list
341 * Add UploadVerification hook for custom file upload validation/security checks
342 * Blacklist additional MSIE CSS safety tricks
343 * Fix meta robots tag on Special:Version again to avoid listing vulnerable
344 versions for convenient harvesting by automated worms
345 * Sanitizer CSS comment processing order fix
346 * Forbid usernames that can be interpreted as titles with namespaces, as that
347 leads to hard-to-manage names.
348 * (bug 4071) Generate passwords long enough for $wgMinimalPasswordLength
349 * Add createpage and createtalk permission keys, allowing a quick
350 switch to disable page creation for anonymous users.
351 * (bug 675) Add page protection level for unregistered/new accounts
352 * User::isNewbie now uses the registration date and $wgAutoconfirmAge
353 * Add 'deletedhistory' permission key for ability to view deleted history
354 list via Special:Undelete. Default is off, replicating the 1.5 behavior,
355 but it can be turned back on for random users to replicate the previous
356 1.6 dev behavior.
357 * Set cookies to secure mode based on use of HTTPS or $wgCookieSecure
358 * (bug 4371) Disallow tilde character in signatures
359 * Removed broken wgAllowAnonymousMinor and added new group right minoredit
360 * Added detection for WMF files (application/x-msmetafile), added this
361 MIME type to the default blacklist. Prevented inline display of images
362 which are not of known image types. This is in response to
363 http://en.wikipedia.org/wiki/Windows_Metafile_vulnerability
364 * Blocked users can no longer roll back, change the protection of, or delete/undelete pages
365 * Protect against spoofing of X-Forwarded-For header
366 * XSS issue : now sanitize search query input (fixed in 1.5rc3)
367 * Remove deprecated $wgOnlySysopsCanPatrol references; use User::isAllowed( 'patrol' )
368 per bug 5282. Patch by Alan Harder.
369 * Prevent registration/login with the username "MediaWiki default"
370
371 Special Pages:
372 * Rearranged Special:Movepage form to reduce confusion between destination
373 title and reason input boxes
374 * (bug 1956) Hide bot uploads from Special:Newimages
375 * (bug 3220) Fix escaping of block URLs in Recentchanges
376 * (bug 3284) Ipblocklist paging, substring search
377 * Allow filtering of robot edits in Special:Watchlist by stting
378 $wgFilterRobotsWL = true.
379 * Fix interlanguage links on special pages when extra namespaces configured
380 * (bug 3475) anon contrib links on Special:Newpages
381 * Special:Import/importDump fixes: report XML parse errors, accept <minor/>
382 * (bug 2369) Add separate message for input box on Special:Prefixindex
383 * (bug 3798) DoubleRedirects no longer has hard coded arrows
384 * (bug 3803) Fix links on Special:Wantedcategories with miser mode off
385 * Fix Special:BrokenRedirects on MySQL 5.0
386 * (bug 3807) Fix 'all' in namespaces drop-down on contribs, rc
387 * Fail gracefully on invalid namespace in Special:Newpages
388 * (bug 3762) Define missing Special:Import UI messages
389 * (bug 3761) Avoid deprecation warnings in Special:Import
390 * (bug 2894) Enhanced Recent Changes link fixes
391 * (bug 4059) fix 'hide minor edits' on Recentchangeslinked
392 * (bug 146) List number of category members in Special:Categories
393 (patch by Joel Nothman)
394 * (bug 4090) Fix diff links in Special:Recentchangeslinked
395 * (bug 4093) '&bot=1' in Special:Contributions now propagate to other links
396 * Fix display of old recentchanges records for page moves
397 * (bug 360) Let Whatlinkshere track [[:image:foo]] links
398 * (bug 3073) Keep search parameter on paging in Special:Newimages
399 * Removed Special:Validate, it's been superseded by the Review extension
400 * (bug 4359) red [[user:#id]] links generated in [[special:Log]]
401 * (bug 1996) Special page to list redirects
402 * (bug 4334) Add "watch" links to Special:Unwatchedpages
403 * Generate target user page links in Special:Ipblocklist where appropriate
404 (i.e. not an autoblock)
405 * Generate link to talk page of the blocker in Special:Ipblocklist, move
406 contribs. link of the target next to their name
407 * (bug 2714) Backlink from special:whatlinkshere was hard set as 'existing'
408 * Move parentheses out of <a> link in Special:Contributions
409 * (bug 3192): properly check 'limit' parameter on Special:Contributions
410 * (bug 3187) watchlist text refer to unexistent "Stop watching" action
411 * Add block, block log and general log links to Special:Contributions
412 * Add contributions link to block log items
413 * Added optional "hide own edits" feature to Special:Recentchanges
414 * (bug 5018) Anchors for each message in Special:Allmessages
415 * Introduce $wgWantedPagesThreshold per bug 5011; Special:Wantedpages will not
416 list pages with less than this number of links. Defaults to 1.
417 * (bug 4319) Don't show a "create account" link on the login form when
418 account creation is disabled.
419 * JavaScript filter for Special:Allmessages
420 * (bug 3047) Don't mention talk pages on Special:Movepage when there isn't one
421 * Show links to user page, talk page and contributions page on Special:Newpages
422 * Special:Export can now export a list of all contributors to an article (off by default)
423 * (bug 5372) Add number of files to Special:Statistics
424 * (bug 2871) Links to talk pages in watchlist editing view
425 * (bug 5385) Allow hiding anonymous edits on Special:Recentchanges
426
427 Misc.:
428 * PHP 4.1 compatibility fix: don't use new_link parameter to mysql_connect
429 if running prior to 4.2.0 as it causes the call to fail
430 * (bug 3117) Fix display of upload size and type with tidy on
431 * (bug 2323) Remove "last" tabindex from history page
432 * (bug 3116) Division by zero on [[Image:Foo.png|123x123px|]]
433 * Fix display of read-only lockfile message
434 * Include software-visible client IP address in Special:Version comment
435 as a proxy debugging aid
436 * (bug 3170) Page Title failed to obey MediaWiki:Pagetitle.
437 wikititlesuffix was removed
438 * Add ability to break off certain debug topics into additional log files;
439 use $wgDebugLogGroups to configure and wfDebugLog() to log.
440 * Edit conflict on recreation of deleted page
441 * (bug 3216) Don't show empty warning page when no warnings.
442 * (bug 3218) Use proper quoting on history Compare Revisions button
443 * Fix upgrade from 1.4 due to version number check breakage [for rc future]
444 * Fix upgrade from 1.4 with no old revisions
445 * Remove "info" editing toolbar that was shown in browsers which do not
446 fully support the editing toolbar, but was found to be too confusing.
447 * Don't override edit conflict suppression on section edits; section merging
448 should provide the expected transparency here and fits usage patterns better.
449 * (bug 3292) Fix move-over-redirect test when current entries are not plaintext
450 * (bug 2078) Don't hide watch tab on preview
451 * Fix regressions in ChangesList traditional layout
452 * Fix edit on double-click for move-protected pages in Classic skin
453 * (bug 3485) Fix bogus warning about filename capitalization when off
454 * (bug 2570) Add 'watch this page' checkbox on uploads, watch uploads
455 by default when 'watchdefault' option is on
456 * Add options to dumpBackup.php for making split/partial dumps by page id
457 * Added filter options, compression piping, and multiple output streams for
458 dumpBackup.php
459 * (bug 3595) Warn and abort if importDump.php called in read-only mode.
460 * (bug 3598) Update message cache on message page deletion, patch by Tietew
461 * Added separate noarticletext and newarticletext messages for logged in and anon users.
462 * (bug 3332) Installation now uses Monobook, validates, plus usability improvements.
463 * (bug 3660) Update diff3 detection to work with Windows/Cygwin
464 * (bug 2330) Don't do funny thinks with "links" in MediaWiki:Undeletedtext
465 * Two-pass data dump for friendliness to the DB (--stub, then dumpTextPass.php)
466 * Data dump 'prefetch' mode to read normalized text from a prior dump
467 (requires PHP 5, XMLReader extension)
468 * (bug 2773) Print style sheet no longer overrides RTL text direction
469 * (bug 2938) Update MediaWiki:Exporttext to be more general
470 * Various fixes
471 * Fix wfMsg*() replacements; args containing literal $[2-9] were wiped
472 * Added @import for [[MediaWiki:Common.css]] to all skins
473 * Edit box now remembers scrollbar position on preview
474 * (bug 3816) Throw edit conflict instead of fatal error when a page is
475 moved or deleted during section edit
476 * (bug 3771) Handle internal functions in backtrace in wfAbruptExit()
477 * (bug 3291) 'last' diff link for last history line when not at end
478 * (bug 3667) Add missing global in page move code
479 * (bug 2885) Remove unnecessary reference parameter which broke classic skin
480 talk notification on PHP 5.0.5
481 * (bug 3852) "Redirected from" link no longer obscured on double-redirects
482 * changed directory hierarchy in images/math/. System upgrades from old to
483 new hierarchy on the fly.
484 * (bug 3487) Fix category edit preview with preview-on-bottom
485 * (bug 918) Search index incorrectly joined words at == headings ==
486 * (bug 3877) Render math images into temp directory, then move to hashed
487 subdir so you can render new math images and have them work
488 * (bug 2392) Fix Atom items content type, upgrade to Atom 1.0
489 * Allow $wgFeedCacheTimeout of 0 to disable feed caching
490 * Fix WebRequest::getRequestURL() to strip off the host bits squid prepends
491 * Require POST for action=purge, to stop bots from purging the cache
492 * Added local message cache feature ($wgLocalMessageCache), to reduce bandwidth
493 requirements to the memcached server.
494 * (bug 3562) for go search, try Caps-Variants-Broken-At-Non-Whitespace
495 * (bug 2569) Use PATH_SEPARATOR instead of trying to guess based on
496 DIRECTORY_SEPARATOR (was wrong on NetWare)
497 * (bug 2740) Accept image deletions on 'enter' submit from MSIE
498 * (bug 3939) Don't try to load text for interwiki redirect target
499 * (bug 3948) Avoid notice warning in debug statement in bad search
500 * Recognize Special:Search consistently so read whitelist works
501 * (bug 3999) Change atom 1.0 feed id; had been unnecessarily complex due to
502 unclear language in the spec. Now using the URL, same as the permalink,
503 which someone else will probably whine about because it's not 'perma'
504 enough or something.
505 * (bug 4014) Fix include mode for Allpages on small page sets
506 * (bug 3996) Fix text for new entries in RC RSS/Atom feed
507 * (bug 3065) Update both watched namespaces when renaming pages
508 * Changed mail form to have a bigger message entry box (like for editing
509 a page
510 * Fix ulimit parameters for wfShellExec when memory_limit is specified in 'm'
511 * (bug 2111) Collapsable exif metadata table, clean up display
512 * Reduce fractions in display of exif exposure time
513 * (bug 4048) Optional footer link to site privacy policy
514 * Don't die() when update.php reaches the end of the warning count
515 * (bug 1915) Fix edit links when 'direction' used with 'oldid';
516 using revision ID reported via OutputPage; Skin::editUrlOptions()
517 * Remove obsolete 'redirect=no' on some edit links
518 * Include oldid for the second revision on edit link on diff view
519 * (bug 4035) Fix prev/next revision links on edit page
520 * (bug 4100, 3049) Add 'edittools' message to hold edit tools, put it
521 on Special:Upload as well as edit, rearrange edit page pieces a bit.
522 Copyright warning now above the buttons to ensure it's visible,
523 template list at the bottom so it can grow.
524 * Optional summary parameter to action=rollback, for user javascript
525 * (bug 4167) Fix regression caused by patch for bug 153
526 * (bug 4169) Use $wgLegalTitleChars in pipe trick conversions
527 * (bug 4170) Decode HTML character escapes in sort key
528 * (bug 4201) Fix user-talk mode for Enotif, and general code cleanup
529 * (bug 4214) Skip redundant action text inserts into the HTML <title>
530 * (bug 4212) Skip redundant meta-robots tag for default settings
531 * Fix regression: old version missing from edit links in Nostalgia skin
532 * (bug 1600) Trigger edit conflict on duplicate section=new submissions
533 * (bug 4001) Use local variables properly in wikibits.js akeytt()
534 * Fix regression: old version missing from edit links on CSS/JS pages
535 * (bug 3211) Include Date, To mail headers when using PEAR::Mail
536 * (bug 3407) Fix encoding of subject and from/to headers on notification
537 mails; userMailer() now takes a MailAddress wrapper object instead of
538 a raw string to abstract things a level.
539 * Fixed --server override on dumpTextPass.php
540 * Added plugin interface for dumpBackup, so additional filters and output
541 sink types can be registered at runtime from an extension
542 * (bug 349) Fix for some numeric differences not being highlighted
543 patch by Andrius Ramanauskas
544 * (bug 4298) Include rc_id on enhanced RC singleton diff links for patrolling
545 * Did some refactoring on ChangesList.php merging dupe code
546 * (bug 1586) Fix interwiki generator for wikimedia obscure domains
547 * (bug 3493) Mark edits patrolled when they are reverted
548 patch by Leon Planken
549 * Removed experimental Amethyst skin from default set
550 * Upgrade old skin preferences properly at Special:Preferences
551 (used to spontaneously switch to Classic skin for old numeric pref records)
552 * (bug 3424) Update page_touched for category members on category page creation
553 * Log views show message when no matches
554 * Fix raw sitenotice display on database error
555 * Fix autoconfirm check for old accounts
556 * (bug 4368) Don't show useless empty preview on new section creation
557 * Don't show useless empty preview on new page creation
558 * (bug 4411) Fix messages diff link for classic skin
559 * (bug 4385) Separate parser cache entries for non-editing users, so section
560 edit links don't vanish / appear unwanted on protected pages
561 * (bug 2726, 3397) Fix [[Special:]] and [[:Image]] links in action=render
562 * (bug 4419) Remove obsolete magnify.png.old
563 * Removed $wgUseCategoryMagic option, categories are now enabled unconditionally
564 * (bug 3318) UI workarounds for disabled items in license selector
565 MSIE/Win: items now grayed out, JS will revert to 'non selected' if clicked
566 Safari: JS will revert to 'non selected' if clicked (but not gray)
567 MSIE/Mac: indented items now visible (JS hack)
568 * (bug 714) "plainlinks" class issues in IE, Opera
569 * (bug 4317) Inconsistent "broken redirects" messages
570 * Default interface text for "selflinks" tweaked
571 * (bug 3194) default implementation of translateBlockExpiry
572 which uses ipboptions
573 * (bug 4446) $wgExportAllowHistory option to explicitly disable history in
574 Special:Export form, 'exportnohistory' message to translate live hack.
575 * Maintenance script to delete unused user accounts
576 * (bug 912) Search box easier to reach in text browsers (lynx, links)
577 * $wgParserCacheExpireTime added
578 * Skip loading of RecentChange.php except where needed
579 * Enforce $wgSVGMaxSize when rendering, even for SVGs with a very large source
580 size. This is necessary to limit server memory usage.
581 * Cleanup and error checking on Special:Listredirects
582 * Clear up some instances of old OutputPage::sysopRequired() function usage
583 * Improve "upload disabled" notice
584 * Move parts of index.php to include/Wiki.php in an attempt to both cleanup index.php
585 and create a MediaWiki-class mediaWiki base object
586 * (bug 4104) Added OutputPageBeforeHTML hook for tweaking primary wiki output
587 HTML on final output (cached or not)
588 * Avoid PHP notice on command-line scripts if empty argument is passed ('')
589 * (bug 4571) Partial fix hack for {{fulllurl:}} in action=render
590 * (bug 3502) Bowtie symbol for TeX
591 * (bug 4000) Support for \textstyle et al. in <math>
592 * (bug 1663) support color in TeX formulas
593 * (bug 2026) missing glue around \not= (TeX)
594 * (bug 4576) Missing '>' broke license selector's first option in IE, Opera
595 * Override $wgLocaltimezone in parser tests for us outside Iceland and UK
596 * Fix extra whitespace at end of Wiki.php, DESTROYS XML OUTPUT
597 * Remove redundant 'echo' statements from MonoBook.php
598 * (bug 1103) Fix up redirect handling for images, categories
599 Redirects are now followed from the top-level, outside of the Article
600 content loading and viewing, for clarity and consistency.
601 * (bug 4104) 'OutputPageBeforeHTML' hook to postprocess article HTML on
602 page view (comes after parser cache, if used). Patch by ThomasV.
603 * Linker::formatComment corrupted the passed title object on PHP 5
604 if the comment included a section link. Use clone() to make a safe copy.
605 * Add wfClone() wrapper since we're still using PHP 4 on some servers.
606 * Remove obsolete killthread.php
607 * Added wfDie() wrapper, and some manual die(-1), to force the return code
608 to the shell to return nonzero when we crap out with an error.
609 * Allow input of the stub from a compressed file instead of stdin
610 for dumpTextPass.php; easier to get errors back on the shell
611 * Added an attractive space on the namespace selector on contribs
612 * Move PHP 5-friendly XHTML doctype hack to Sanitizer, use for sig checks.
613 Fixes use of named entities in sigs on PHP 5
614 * (bug 4482) Include move comment on the null edit as well as the redirect
615 * (bug 3990) Use existing session name if session.auto_start is on
616 Fixes checks for open sessions, such as the cookie warning on login.
617 Patch by Zbigniew Braniecki.
618 * Add cache-safe alternate sitenotice for anonymous users. (MediaWiki:Anonnotice)
619 This is displayed instead of the regular sitenotice, if it exists. If not, the
620 regular sitenotice shows. If that doesn't exist, the value of $wgSiteNotice is used,
621 and if that's null, then nothing is shown.
622 * Spit the generated LocalSettings code out during the installer as an aid
623 to debugging issues. (Keep this?)
624 * Use __FILE__ to form path in new LocalSettings.php, so it stays accurate
625 when the directory is relocated for typical usage.
626 * Auto-update $wgCacheEpoch when LocalSettings.php changes on new installs.
627 For typical usage this will be a light burden and should reduce confusion
628 when the configuration is edited.
629 * Fix $wgCacheEpoch's effect on client-side caching.
630 * (bug 1122) gray out 'older revision' when viewing first article revision.
631 * Clearer message in DefaultSettings.php: edit LocalSettings.php instead
632 * MonoBook skin top link id changed from "contentTop" to "top" (shared with
633 name attribute)
634 * (bug 3350) Missing label for move talk page checkbox.
635 * (bug 2108) Sort entries when using category browser
636 * (bug 2393) Fix MIME type for Atom feeds ( application/rss+atom )
637 * Add ".deps.php" include-file preloaders for some dynamically-loaded
638 language and skin classes. Should help with the broken base-class
639 problem under PHP 5 with APC as opcode cache. See details:
640 http://mail.wikipedia.org/pipermail/wikitech-l/2006-January/033660.html
641 * Small changes to tabs in Monobook skin c/o Chris Ware
642 * (bug 4679) Work around buggy basename() function in PHP5, which breaks
643 uploads of files starting with multibyte characters on Linux.
644 wfBaseName() doesn't suffer this bug, and understands backslash on
645 both Unix and Windows.
646 * (bug 3603) headscripts variable not hooked up to MonoBook skin
647 * Allow local cdb-based interwiki cache
648 * Use the "block", not the "protect" permission, when determining whether to
649 show a "block user" link in the toolbox
650 * Fix backup dump text prefetch for XMLReader constant changes in PHP 5.1
651 * Suppress useless percentage indicator on output from 7za during dumps
652 * (bug 4633) Add (previous 200) (next 200) also above catlinks
653 * (bug 4686) Fix regression where ?diff=0&oldid=0 caused fatal error on
654 pages with only one revision. Fixes message diff link on first edit.
655 * Fix dependence on hardcoded UNIQ_PREFIX in LanguageConverter.php
656 * Do not check lag on external storage servers
657 * Do not tidy interface messages (unless full tidy is set)
658 * Do not trust equality propagation and give more hints to MySQL
659 optimizer for revision fetches (avoids index scans)
660 * Use revision rate for ETA in dump generation; it tends to be more stable
661 than the per-page count for full-history dumps.
662 * Include timestamp in wfDebugLog breakouts
663 * (bug 4469) Namespace-specific notice to be displayed below site-notice
664 Edit messages like "MediaWiki:Namespacenotice-" plus namespace name
665 which is blank for main namespace, or like e.g. "User_talk"
666 * Adjust user login/creation form hooks to work with a captcha plugin
667 * (bug 1284) Inline styles for diffs in Recent Changes RSS/Atom feeds
668 * (bug 4824) IE7 beta 2 broke compatibility with PNG logo workarounds,
669 and seems to work ok with other bits. No longer including the IE
670 workarounds JavaScript for IE 7 and above.
671 * Fix extra namespace for Bulgarian
672 * (bug 4303) Add $wgFavicon to change the shorticon icon link from
673 the default /favicon.ico or disable it (if set to false)
674 * (bug 3347) strip linebreaks in math error source
675 * (bug 4841) Warning for non-logged-in edits
676 * (bug 4867) Leave invalid EXIF date fields unformatted instead of
677 showing a bogus current timestamp
678 * Reset $wgActionPaths during parser test; corrects some false failures
679 in the automated test report.
680 * (bug 4875) Define a div containing the shared image description
681 * (bug 4860) Expose Title->userCan() as Hooks
682 * (bug 4828) Fix genitive month-name variable for cs, pl, uk
683 * (bug 4842) Fix 'show number of watching users' with enhanced RC
684 * (bug 4889) Fix image talk namespace for Tamil
685 * (bug 4147) Added cleanupWatchlist.php to clear out bogus watchlist entries
686 * (partial bug 3456) Disable auto redirect to Main Page after account creation
687 * (bug 4824) Separate out IE7 CSS compat hacks, fix for RTL pages
688 * Added support for wikidiff2 and similar external diff engines.
689 * Allow cookies to be shared between multiple wikis with a shared user database
690 * Blocking some Unicode whitespace characters in usernames. Should check
691 if some or all should be blocked from all page titles.
692 * Unknown log types no longer throw notices everywhere in RecentChanges
693 * (bug 4502, 5017) Don't render potentially hostile deleted page contents
694 on Special:Undelete by default; show source, with an optional preview.
695 The revisions list no longer shows the latest text by default, so it can
696 still be operated if the text is hostile.
697 * (bug 5013) Check for existence on "return to" links
698 * Removed trailing whitespace on a bunch more messages.
699 * Fix missing bad title check in Special:Booksources
700 * Remove empty booksources string in fy
701 * Avoid corrupting <gallery> inside <!-- comment -->
702 * Remove legacy PHPTal code, hasn't been maintained in ages.
703 * Tweak Userlogin include order for APC issue
704 * Don't try to link to current page on protection tab
705 * More exact checking in Title::equals() to fox moves of numerically similar
706 page titles. (Odd hex title bug on 64-bit.)
707 * Fix explicit s-maxage=0 on raw pages; should help with proxy issues in
708 generated stylesheets... hopefully...
709 * (bug 4685) More fixes for Slovenian project namespace
710 * Fixed and enhanced a little the Live Preview, which had been broken for some time
711 * Added article size limit, $wgMaxArticleSize
712 * (bug 4974) Don't follow redirected talk page on "new messages" link
713 * (bug 4970) Make category paging limits configurable
714 * (bug 4535) Warn user when editing CSS or JS subpage of a skin that doesn't exist
715 * Make Live Preview an user preference, still controllable by the global variable
716 * Rename the stub LanguageAls / LanguageGem_alsation to LanguageGsw to follow
717 updated language code assignments
718 * (bug 5081) Remove bogus fix for invalid characters in links which simply
719 broke use of legitimate multiple whitespace characters in bracketed link.
720 * (bug 4838) Add relative oldids (prev, next, cur) for raw pages
721 Patch by Lupin
722 * (bug 5086) Force image resize dimensions on ImageMagick, as for instance
723 "-resize 100x35!"; some thumbs were off due to differences in rounding and
724 would be generated smaller than expected.
725 * (bug 5062) Width sometimes one pixel short when using maximum heights
726 * Purge thumbnails and metadata cache for action=purge on an image page
727 * (bug 4273) Bounce back with a message when attempting to submit a new comment
728 with an empty main textbox (user probably hit Enter in subject field)
729 * (bug 5141) Gracefully handle the new account link when createaccount off
730 * (bug 5150 and related) Fix missing ID attribute in HTML namespace selector
731 * (bug 5152) Proper HTML escaping on subpage breadcrumbs
732 * (bug 4855) Section edit links now have the section name in the title attribute.
733 * (bug 2115) Support shift-selecting multiple checkboxes with JavaScript.
734 * (bug 5161) Don't try to load template list for nonexistent pages
735 * (bug 5228) Workaround for broken LanguageConverter title overrides; avoid
736 unnecessary hidden UI work when watch/unwatch is performed on edit
737 * Fixed bogus master fallback in external storage
738 * (bug 5246) Add speak:none to "hiddenStructure" class in main.css
739 * Further work on rev_deleted; changed to a bitfield with several data-hiding
740 options. Not yet ready for production use; Special:Revisiondelete is
741 incomplete, and the flags are not preserved across page deletion/undeletion.
742 To try it; add the 'deleterevision' permission to a privileged group.
743 * (bug 5270) Fix broken linktrail for br, cv, fr, hr, nn, oc, ta, wa
744 * Add a clickable contribs link in user tool links (rc, watchlist, diff view)
745 to see how people like it. (There was one in the old hacked-up diff view.)
746 * (bug 5236) Load wikibits.js before site-customized javascript
747 * (bug 4119) Workaround for <nowiki> following link in Walloon; remove capitals
748 from linktrail, as they're not used anywhere else.
749 * (bug 4781) Output links with the percent-encoding they're supplied with;
750 save the normalization for internal link storage. The normalization is a bit
751 buggy and can make incorrect foldings in the query string and such, so isn't
752 reliable beyond the hostname where it's used for the spam bulk checker.
753 * Don't URL-decode in the title attribute for URL links; it can produce false
754 results that don't code back to their original values.
755 * (bug 4611) Add user preference (default on) to add new pages to creators's watchlist
756 * (bug 5286) Fix regression in display of missing/bad revision IDs
757 * (bug 4729) Add user preference that marks a user's edits as patrolled if user is able to
758 * (bug 4630) Add user preference to prompt users when entering blank edit summaries
759 * Added optional suggest feature for the search box. Set wgUseAjax to true to
760 enable it.
761 * (bug 5277) Use audio/midi rather that audio/mid
762 * (bug 5410) Use namespace name when a custom namespace's nstab-NS message is nonexistent
763 * (bug 5432) Fix inconsistencies in cookie names when using table prefixes
764 * Additional protections against HTML breakage in table parsing
765 * (bug 5355) Include skin name and style JS settings in page source;
766 fixes regression where Opera 6/7 and KHTML CSS fixes weren't applied
767 when wikibits.js was moved up before user JS inclusion.
768 * Added $wgColorErrors: if set, database error messages will be highlighted
769 when running command-line scripts in a Unix terminal.
770 * (bug 5195) rebuildrecentchanges.php works again; Database::insertSelect now
771 has a parameter for select options.
772 * Fix updateSearchIndex.php for new schema
773
774
775 === Caveats ===
776
777 Some output, particularly involving user-supplied inline HTML, may not
778 produce 100% valid or well-formed XHTML output. Testers are welcome to
779 set $wgMimeType = "application/xhtml+xml"; to test for remaining problem
780 cases, but this is not recommended on live sites. (This must be set for
781 MathML to display properly in Mozilla.)
782
783
784 For notes on 1.5.x and older releases, see HISTORY.
785
786
787 === Online documentation ===
788
789 Documentation for both end-users and site administrators is currently being
790 built up on Meta-Wikipedia, and is covered under the GNU Free Documentation
791 License:
792
793 http://meta.wikipedia.org/wiki/Help:Contents
794
795
796 === Mailing list ===
797
798 A MediaWiki-l mailing list has been set up distinct from the Wikipedia
799 wikitech-l list:
800
801 http://mail.wikipedia.org/mailman/listinfo/mediawiki-l
802
803 A low-traffic announcements-only list is also available:
804 http://mail.wikipedia.org/mailman/listinfo/mediawiki-announce
805
806 It's highly recommended that you sign up for one of these lists if you're
807 going to run a public MediaWiki, so you can be notified of security fixes.
808
809
810 === IRC help ===
811
812 There's usually someone online in #mediawiki on irc.freenode.net