summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Starling <tstarling@users.mediawiki.org>2009-02-07 02:54:07 +0000
committerTim Starling <tstarling@users.mediawiki.org>2009-02-07 02:54:07 +0000
commitc50f0e8785c1c8cde8fb1efda1d23f966e93c098 (patch)
tree20400ff1e02b915cad082d3afd3f145e73078d43
parent2d99562f97b66264cecc4a646a359f512163b48b (diff)
Updates for release1.12.4
Notes
http://mediawiki.org/wiki/Special:Code/MediaWiki/46957
-rw-r--r--RELEASE-NOTES21
-rw-r--r--includes/DefaultSettings.php2
2 files changed, 19 insertions, 4 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index abad983855bd..fda46bcdfdd6 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -2,11 +2,11 @@
For upgrade instructions please see the UPGRADE file in this directory.
-== MediaWiki 1.12.3 ==
+== MediaWiki 1.12.4 ==
-December 17, 2008
+February 7, 2009
-This is a bugfix release of the quarterly branch of MediaWiki for Winter 2008.
+This is a security update to the quarterly branch of MediaWiki for Winter 2008.
MediaWiki is now using a "continuous integration" development model with
quarterly snapshot releases. The latest development code is always kept
@@ -19,6 +19,21 @@ will be made on the development trunk and appear in the next quarterly release.
Those wishing to use the latest code instead of a branch release can obtain
it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
+== Changes since 1.12.3 ==
+
+A number of cross-site scripting (XSS) security vulnerabilities were discovered
+in the web-based installer (config/index.php). These vulnerabilities all
+require a live installer -- once the installer has been used to install a wiki,
+it is deactivated.
+
+Note that cross-site scripting vulnerabilities can be used to attack any website
+in the same cookie domain. So if you have an uninstalled copy of MediaWiki on
+the same site as an active web service, MediaWiki could be used to attack the
+active service.
+
+If you are hosting an old copy of MediaWiki that you have never installed, you
+are advised to remove it from the web.
+
== Changes since 1.12.2 ==
* Fixed packaging/distribution error. Many files were missing from the
diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php
index 350ebf41faf1..b0ddeb1251c1 100644
--- a/includes/DefaultSettings.php
+++ b/includes/DefaultSettings.php
@@ -31,7 +31,7 @@ require_once( "$IP/includes/SiteConfiguration.php" );
$wgConf = new SiteConfiguration;
/** MediaWiki version number */
-$wgVersion = '1.12.3';
+$wgVersion = '1.12.4';
/** Name of the site. It must be changed in LocalSettings.php */
$wgSitename = 'MediaWiki';