r111010 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r111009‎ | r111010 | r111011 >
Date:01:21, 9 February 2012
Author:reedy
Status:ok
Tags:
Comment:
Followup r111006

Move config to 1.20 changes

Move release notes for reverted bugs from 1.19 to 1.20
Modified paths:
  • /trunk/phase3/RELEASE-NOTES-1.19 (modified) (history)
  • /trunk/phase3/RELEASE-NOTES-1.20 (modified) (history)
  • /trunk/phase3/includes/installer/MysqlUpdater.php (modified) (history)
  • /trunk/phase3/includes/installer/SqliteUpdater.php (modified) (history)

Diff [purge]

Index: trunk/phase3/RELEASE-NOTES-1.20
@@ -15,6 +15,9 @@
1616 === New features in 1.20 ===
1717
1818 === Bug fixes in 1.20 ===
 19+* (bug 30245) Use the correct way to construct a log page title.
 20+* (bug 34237) Regenerate an empty user_token and save to the database
 21+ when we try to set the user's cookies for login.
1922
2023 === API changes in 1.20 ===
2124
Index: trunk/phase3/RELEASE-NOTES-1.19
@@ -151,7 +151,6 @@
152152 * Allow moving the associated talk pages of subpages even if the base page
153153 has no subpage.
154154 * Per page edit-notices now work in namespaces without subpages enabled.
155 -* (bug 30245) Use the correct way to construct a log page title.
156155 * (bug 31081) $wgEnotifUseJobQ caused many unnecessary jobs to be queued.
157156 * (bug 30202) File names are now restricted on upload to 240 bytes, because of
158157 restrictions on some of the database fields.
Index: trunk/phase3/includes/installer/SqliteUpdater.php
@@ -61,7 +61,6 @@
6262 array( 'addTable', 'user_former_groups', 'patch-user_former_groups.sql'),
6363
6464 // 1.19
65 - array( 'addTable', 'config', 'patch-config.sql' ),
6665 array( 'addIndex', 'logging', 'type_action', 'patch-logging-type-action-index.sql'),
6766 array( 'doMigrateUserOptions' ),
6867 array( 'dropField', 'user', 'user_options', 'patch-drop-user_options.sql' ),
@@ -72,6 +71,9 @@
7372 array( 'addField', 'uploadstash', 'us_chunk_inx', 'patch-uploadstash_chunk.sql' ),
7473 array( 'addfield', 'job', 'job_timestamp', 'patch-jobs-add-timestamp.sql' ),
7574 array( 'modifyField', 'user_former_groups', 'ufg_group', 'patch-ug_group-length-increase.sql' ),
 75+
 76+ // 1.20
 77+ array( 'addTable', 'config', 'patch-config.sql' ),
7678 );
7779 }
7880
Index: trunk/phase3/includes/installer/MysqlUpdater.php
@@ -182,7 +182,6 @@
183183 array( 'addTable', 'user_former_groups', 'patch-user_former_groups.sql'),
184184
185185 // 1.19
186 - array( 'addTable', 'config', 'patch-config.sql' ),
187186 array( 'addIndex', 'logging', 'type_action', 'patch-logging-type-action-index.sql'),
188187 array( 'doMigrateUserOptions' ),
189188 array( 'dropField', 'user', 'user_options', 'patch-drop-user_options.sql' ),
@@ -193,6 +192,9 @@
194193 array( 'addField', 'uploadstash', 'us_chunk_inx', 'patch-uploadstash_chunk.sql' ),
195194 array( 'addfield', 'job', 'job_timestamp', 'patch-jobs-add-timestamp.sql' ),
196195 array( 'modifyField', 'user_former_groups', 'ufg_group', 'patch-ufg_group-length-increase.sql' ),
 196+
 197+ // 1.20
 198+ array( 'addTable', 'config', 'patch-config.sql' ),
197199 );
198200 }
199201

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r111006Revert r88270, r97711 and r110825 out of 1.19reedy01:16, 9 February 2012

Status & tagging log