Index: branches/REL1_17/phase3/includes/DefaultSettings.php |
— | — | @@ -34,7 +34,7 @@ |
35 | 35 | /** @endcond */ |
36 | 36 | |
37 | 37 | /** MediaWiki version number */ |
38 | | -$wgVersion = '1.17.0beta1'; |
| 38 | +$wgVersion = '1.17.0rc1'; |
39 | 39 | |
40 | 40 | /** Name of the site. It must be changed in LocalSettings.php */ |
41 | 41 | $wgSitename = 'MediaWiki'; |
Index: branches/REL1_17/phase3/RELEASE-NOTES |
— | — | @@ -3,13 +3,13 @@ |
4 | 4 | Security reminder: MediaWiki does not require PHP's register_globals |
5 | 5 | setting since version 1.2.0. If you have it on, turn it '''off''' if you can. |
6 | 6 | |
7 | | -== MediaWiki 1.17 beta 1 == |
| 7 | +== MediaWiki 1.17.0rc1 == |
8 | 8 | |
9 | | -2011-05-05 |
| 9 | +2011-06-09 |
10 | 10 | |
11 | | -This is a beta release of the MediaWiki 1.17 branch. Please test it and let us |
12 | | -know what you think of it. Beta releases are not recommended for use in |
13 | | -production. |
| 11 | +This is a release candidate of the MediaWiki 1.17 branch. Please test it and |
| 12 | +let us know what you think of it. Barring new bug reports, this release |
| 13 | +candidate will soon be released as MediaWiki 1.17.0. |
14 | 14 | |
15 | 15 | === Summary of selected changes in 1.17 === |
16 | 16 | |
— | — | @@ -40,10 +40,43 @@ |
41 | 41 | |
42 | 42 | === Changes since 1.17 beta 1 === |
43 | 43 | |
| 44 | +* Fixed warning about missing file "password.js". |
| 45 | +* When installing on MySQL, don't attempt to create a new database user if the |
| 46 | + same user is used for installation and web access. |
| 47 | +* Fixed SQL query errors in queries with table aliases. |
| 48 | +* (bug 27891) Fixed the "chronology protector", broken since 1.17beta1, which |
| 49 | + ensures that when database replication is used, the new version is seen by |
| 50 | + the user immediately after they create or edit an article. |
| 51 | +* (bug 28845) Allow PostgreSQL installation using a non-root user account which |
| 52 | + has role creation abilities. |
| 53 | +* When installing on PostgreSQL and the install account is the same as the web |
| 54 | + account, check to make sure that the account has suitable privileges in the |
| 55 | + mediawiki schema. |
| 56 | +* (Bug 28172) Fixed error in PostgreSQL installation when creating the wiki |
| 57 | + sysop account. |
| 58 | +* Fixed an issue with the Oracle installer in cases where the user is different |
| 59 | + to the database name. |
| 60 | +* Added "unblockself" to the list of available rights. |
| 61 | +* In the installer, fixed the "user rights profile" option, it never worked. |
| 62 | +* (bug 29117) Fixed Hebrew localisation of the installer. |
44 | 63 | * (bug 28840) Reduce the collateral damage caused by the fix for bug 28235 (XSS |
45 | 64 | on Internet Explorer 6 due to a file extension in the query string) by |
46 | 65 | reducing the number of URLs that are blocked, and by redirecting the request |
47 | 66 | to a safer URL where possible instead of blocking it. |
| 67 | +* (bug 28812) Fixed documentation of API action=parse. |
| 68 | +* (bug 28979) Fixed styling of <abbr> and <acronym>. |
| 69 | +* Fixed the error message displayed when you try to create an account by email, |
| 70 | + but an email address is not given. |
| 71 | +* Fixed JS error due to missing dependency for jquery.suggestions. |
| 72 | +* Exposed $wgExtensionAssetsPath in JavaScript. |
| 73 | +* (bug 28738) Made ResourceLoader support environments with small URL length |
| 74 | + limits. The length limit can be configured via $wgResourceLoaderMaxQueryLength, |
| 75 | + and this is set automatically in the generated LocalSettings.php when the |
| 76 | + php.ini variable "suhosin.get.max_value_length" is set. When a URL exceeds |
| 77 | + this limit, the request is split up. Also, reduced the average length of |
| 78 | + load.php URLs by using a more compact parameter format. |
| 79 | +* (bug 25262) Fix for minification of hardcoded data: URIs in CSS. |
| 80 | +* (bug 25124) Respect $wgStyleDirectory in ResourceLoader. |
48 | 81 | |
49 | 82 | === Configuration changes in 1.17 === |
50 | 83 | |