Index: trunk/phase3/RELEASE-NOTES-1.20 |
— | — | @@ -15,6 +15,9 @@ |
16 | 16 | === New features in 1.20 === |
17 | 17 | |
18 | 18 | === 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. |
19 | 22 | |
20 | 23 | === API changes in 1.20 === |
21 | 24 | |
Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -151,7 +151,6 @@ |
152 | 152 | * Allow moving the associated talk pages of subpages even if the base page |
153 | 153 | has no subpage. |
154 | 154 | * Per page edit-notices now work in namespaces without subpages enabled. |
155 | | -* (bug 30245) Use the correct way to construct a log page title. |
156 | 155 | * (bug 31081) $wgEnotifUseJobQ caused many unnecessary jobs to be queued. |
157 | 156 | * (bug 30202) File names are now restricted on upload to 240 bytes, because of |
158 | 157 | restrictions on some of the database fields. |
Index: trunk/phase3/includes/installer/SqliteUpdater.php |
— | — | @@ -61,7 +61,6 @@ |
62 | 62 | array( 'addTable', 'user_former_groups', 'patch-user_former_groups.sql'), |
63 | 63 | |
64 | 64 | // 1.19 |
65 | | - array( 'addTable', 'config', 'patch-config.sql' ), |
66 | 65 | array( 'addIndex', 'logging', 'type_action', 'patch-logging-type-action-index.sql'), |
67 | 66 | array( 'doMigrateUserOptions' ), |
68 | 67 | array( 'dropField', 'user', 'user_options', 'patch-drop-user_options.sql' ), |
— | — | @@ -72,6 +71,9 @@ |
73 | 72 | array( 'addField', 'uploadstash', 'us_chunk_inx', 'patch-uploadstash_chunk.sql' ), |
74 | 73 | array( 'addfield', 'job', 'job_timestamp', 'patch-jobs-add-timestamp.sql' ), |
75 | 74 | array( 'modifyField', 'user_former_groups', 'ufg_group', 'patch-ug_group-length-increase.sql' ), |
| 75 | + |
| 76 | + // 1.20 |
| 77 | + array( 'addTable', 'config', 'patch-config.sql' ), |
76 | 78 | ); |
77 | 79 | } |
78 | 80 | |
Index: trunk/phase3/includes/installer/MysqlUpdater.php |
— | — | @@ -182,7 +182,6 @@ |
183 | 183 | array( 'addTable', 'user_former_groups', 'patch-user_former_groups.sql'), |
184 | 184 | |
185 | 185 | // 1.19 |
186 | | - array( 'addTable', 'config', 'patch-config.sql' ), |
187 | 186 | array( 'addIndex', 'logging', 'type_action', 'patch-logging-type-action-index.sql'), |
188 | 187 | array( 'doMigrateUserOptions' ), |
189 | 188 | array( 'dropField', 'user', 'user_options', 'patch-drop-user_options.sql' ), |
— | — | @@ -193,6 +192,9 @@ |
194 | 193 | array( 'addField', 'uploadstash', 'us_chunk_inx', 'patch-uploadstash_chunk.sql' ), |
195 | 194 | array( 'addfield', 'job', 'job_timestamp', 'patch-jobs-add-timestamp.sql' ), |
196 | 195 | array( 'modifyField', 'user_former_groups', 'ufg_group', 'patch-ufg_group-length-increase.sql' ), |
| 196 | + |
| 197 | + // 1.20 |
| 198 | + array( 'addTable', 'config', 'patch-config.sql' ), |
197 | 199 | ); |
198 | 200 | } |
199 | 201 | |