r60922 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r60921‎ | r60922 | r60923 >
Date:05:03, 11 January 2010
Author:tstarling
Status:ok
Tags:
Comment:
Backported r58941 and fixed some RELEASE-NOTES issues.
Modified paths:
  • /branches/REL1_15/phase3 (modified) (history)
  • /branches/REL1_15/phase3/RELEASE-NOTES (modified) (history)
  • /branches/REL1_15/phase3/maintenance (modified) (history)
  • /branches/REL1_15/phase3/maintenance/upgrade1_5.php (modified) (history)

Diff [purge]

Index: branches/REL1_15/phase3/maintenance/upgrade1_5.php
@@ -18,6 +18,15 @@
1919 require_once( 'commandLine.inc' );
2020 require_once( 'FiveUpgrade.inc' );
2121
 22+echo "ATTENTION: This script is for upgrades from 1.4 to 1.5 (NOT 1.15) in very special cases.\n";
 23+echo "Use update.php for usual updates.\n";
 24+
 25+// Seems to confuse some people
 26+if ( !array_search( '--upgrade', $_SERVER['argv'] ) ) {
 27+ echo "Please run this script with --upgrade key to actually run the updater.\n";
 28+ die;
 29+}
 30+
2231 $upgrade = new FiveUpgrade();
2332 $step = isset( $options['step'] ) ? $options['step'] : null;
2433 $upgrade->upgrade( $step );
Property changes on: branches/REL1_15/phase3/maintenance
___________________________________________________________________
Modified: svn:mergeinfo
2534 Merged /trunk/phase3/maintenance:r58941
Index: branches/REL1_15/phase3/RELEASE-NOTES
@@ -5,22 +5,6 @@
66
77 == MediaWiki 1.15.2 ==
88
9 -* (bug 20239) MediaWiki:Imagemaxsize does not contain anymore a <br /> tag which
10 - was displayed to the user
11 -* (bug 21150) SQLite no longer raise an error when deleting files
12 -* (bug 20880) Fixed updater failure on SQLite backend
13 -
14 -=== Changes since 1.15.1 ===
15 -
16 -* Installer now includes a check for a data corruption issue with certain
17 - versions of libxml2 2.7 and PHP earlier than 5.2.9.
18 -
19 -== MediaWiki 1.15.1 ==
20 -
21 -July 14, 2009
22 -
23 -This is a security and bugfix release of the the 2009 Q2 branch of MediaWiki.
24 -
259 MediaWiki is now using a "continuous integration" development model with
2610 quarterly snapshot releases. The latest development code is always kept
2711 "ready to run", and in fact runs our own sites on Wikipedia.
@@ -32,6 +16,16 @@
3317 Those wishing to use the latest code instead of a branch release can obtain
3418 it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
3519
 20+=== Changes since 1.15.1 ===
 21+
 22+* Installer now includes a check for a data corruption issue with certain
 23+ versions of libxml2 2.7 and PHP earlier than 5.2.9.
 24+* (bug 20239) MediaWiki:Imagemaxsize does not contain anymore a <br /> tag which
 25+ was displayed to the user
 26+* (bug 21150) SQLite no longer raise an error when deleting files
 27+* (bug 20880) Fixed updater failure on SQLite backend
 28+* upgrade1_5.php now requires to be run --update option to prevent confusion
 29+
3630 === Changes since 1.15.0 ===
3731
3832 * Fixed fatal errors for unusual file repository configurations, such as
Property changes on: branches/REL1_15/phase3
___________________________________________________________________
Modified: svn:mergeinfo
3933 Merged /trunk/phase3:r58941

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r58941Some measures to prevent people from update.php/upgrade1_5.php confusion: the...maxsem13:12, 12 November 2009

Status & tagging log