Index: trunk/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -11,6 +11,13 @@ |
12 | 12 | know what you think of it. Beta releases are not recommended for use in |
13 | 13 | production. |
14 | 14 | |
| 15 | +=== Changes since 1.18 beta 1 === |
| 16 | +* (bug 31913) Special:MostLinkedTemplates had an incorrect GROUP BY clause |
| 17 | + under Microsoft SQL. |
| 18 | +* (bug 29912) Unit tests break if parsertest tables are still present |
| 19 | +* (bug 31990) justify paragraphs pref adds extra space to category listing |
| 20 | +* (bug 20148) Better title for [[Special:Disambiguations]] page |
| 21 | + |
15 | 22 | === Configuration changes in 1.18 === |
16 | 23 | * The WantedPages::getSQL hook has been removed and replaced with |
17 | 24 | WantedPages::getQueryInfo. This may break older extensions. |
— | — | @@ -91,6 +98,10 @@ |
92 | 99 | |
93 | 100 | === New features in 1.18 === |
94 | 101 | * BREAKING CHANGE: action=watch / action=unwatch now requires a token. |
| 102 | +* BREAKING CHANGE: Article class heirarchy split into WikiPage (backend) |
| 103 | + and Article (frontend) hierarchies. Several hooks now pass a WikiPage object instead |
| 104 | + of an Article object. These hooks all use an $article paramater as documented in hooks.txt. |
| 105 | + Extensions should be updated to account for this, though most won't require any changes. |
95 | 106 | * (bug 27860) Minor edit after clicking 'new section' tab |
96 | 107 | Now the "This is a minor edit" checkbox is not available when you |
97 | 108 | create a page or new section. |
— | — | @@ -489,11 +500,6 @@ |
490 | 501 | * (bug 32086) Special:PermanentLink now show an error message when no subpage |
491 | 502 | was specified. |
492 | 503 | * (bug 31822) Error during upgrade due to output buffer reset in stdout |
493 | | -* (bug 31913) Special:MostLinkedTemplates had an incorrect GROUP BY clause |
494 | | - under Microsoft SQL. |
495 | | -* (bug 29912) Unit tests break if parsertest tables are still present |
496 | | -* (bug 31990) justify paragraphs pref adds extra space to category listing |
497 | | -* (bug 20148) Better title for [[Special:Disambiguations]] page |
498 | 504 | |
499 | 505 | === API changes in 1.18 === |
500 | 506 | * BREAKING CHANGE: action=watch now requires POST and token. |