diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2011-10-26 13:01:06 -0700 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2011-10-26 13:01:06 -0700 |
commit | 2dd2f4f2a215e0c023513d5a63df0dd1205776fc (patch) | |
tree | 033b9bfd97c907f2554d8a9ec2d41a373e753c44 | |
parent | 714af23e90c36bc83f9498760ce826c198f674a9 (diff) | |
download | brdo-2dd2f4f2a215e0c023513d5a63df0dd1205776fc.tar.gz brdo-2dd2f4f2a215e0c023513d5a63df0dd1205776fc.tar.bz2 |
Ahem. Back to 7.x-dev.
-rw-r--r-- | CHANGELOG.txt | 38 | ||||
-rw-r--r-- | includes/bootstrap.inc | 2 |
2 files changed, 39 insertions, 1 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c611b6e6a..413864640 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,42 @@ +Drupal 7.10, xxxx-xx-xx (development version) +----------------------- + + +Drupal 7.9, 2011-10-26 +---------------------- +- Critical fixes to OpenID to spec violations that could allow for + impersonation in certain scenarios. Existing OpenID users should see + http://drupal.org/node/1120290#comment-5092796 for more information on + transitioning. +- Fixed files getting lost when adding multiple files to multiple file fields + at the same time. +- Improved usability of the clean URL test screens. +- Restored height/width attributes on images run through the theme system. +- Fixed usability bug with first password field being pre-filled by certain + browser plugins. +- Fixed file_usage_list() so that it can return more than one result. +- Fixed bug preventing preview of private images on node form. +- Fixed PDO error when inserting an aggregator title longer than 255 characters. +- Spelled out what TRADITIONAL means in MySQL sql_mode. +- Deprecated "!=" operator for DBTNG; should be "<>". +- Added two new API functions (menu_tree_set_path()/menu_tree_get_path()) were + added in order to enable setting the active menu trail for dynamically + generated menu paths. +- Added new "fast 404" capability in settings.php to bypass Drupal bootstrap + when serving 404 pages for certain file types. +- Added format_string() function which can perform string munging ala the t() + function without the overhead of the translation system. +- Numerous #states system fixes. +- Numerous EntityFieldQuery, DBTNG, and SQLite fixes. +- Numerous Shortcut module fixes. +- Numerous language system fixes. +- Numerous token fixes. +- Numerous CSS fixes. +- Numerous upgrade path fixes. +- Numerous minor string fixes. +- Numerous notice fixes. + Drupal 7.8, 2011-08-31 ---------------------- - Fixed critical upgrade path issue with multilingual sites, leading to lost diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index decb91136..026545794 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -8,7 +8,7 @@ /** * The current system version. */ -define('VERSION', '7.9-dev'); +define('VERSION', '7.10-dev'); /** * Core API compatibility. |