CHANGELOG.txt

Drupal 7.xx, xxxx-xx-xx (development version)
-----------------------
- File upload validation functions and hook_file_validate() implementations are
  now always passed the correct file URI.
- The default form cache expiration of 6 hours is now configurable (API
  addition: https://www.drupal.org/node/2857751).
- Allowed callers of drupal_http_request() to optionally specify an explicit
  Host header.

Drupal 7.56, 2017-06-21
-----------------------
- Fixed security issues (access bypass). See SA-CORE-2017-003.

Drupal 7.55, 2017-06-07
-----------------------
- Fixed incompatibility with PHP versions 7.0.19 and 7.1.5 due to duplicate
  DATE_RFC7231 definition.
- Made Drupal core pass all automated tests on PHP 7.1.
- Allowed services such as Let's Encrypt to work with Drupal on Apache, by
  making Drupal's .htaccess file allow access to the .well-known directory
  defined by RFC 5785.
- Made new Drupal sites work correctly on Apache 2.4 when the mod_access_compat
  Apache module is disabled.
- Fixed Drupal's URL-generating functions to always encode '[' and ']' so that
  the URLs will pass HTML5 validation.
- Various additional bug fixes.
- Various API documentation improvements.
- Additional automated test coverage.

Drupal 7.54, 2017-02-01
-----------------------
- Modules are now able to define theme engines (API addition:
  https://www.drupal.org/node/2826480).
- Logging of searches can now be disabled (new option in the administrative
  interface).
- Added menu tree render structure to (pre-)process hooks for theme_menu_tree()
  (API addition: https://www.drupal.org/node/2827134).
- Added new function for determining whether an HTTPS request is being served
  (API addition: https://www.drupal.org/node/2824590).
- Fixed incorrect default value for short and medium date formats on the date
  type configuration page.
- File validation error message is now removed after subsequent upload of valid
  file.
- Numerous bug fixes.
- Numerous API documentation improvements.
- Additional performance improvements.
- Additional automated test coverage.

Drupal 7.53, 2016-12-07
-----------------------
- Fixed drag and drop support on newer Chrome/IE 11+ versions after 7.51 update
  when jQuery is updated to 1.7-1.11.0.

Drupal 7.52, 2016-11-16
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2016-005.

Drupal 7.51, 2016-10-05
-----------------------
- The Update module now also checks for updates to a disabled theme that is
  used as an admin theme.
- Exceptions thrown in dblog_watchdog() are now caught and ignored.
- Clarified the warning that appears when modules are missing or have moved.
- Log messages are now XSS filtered on display.
- Draggable tables now work on touch screen devices.
- Added a setting for allowing double underscores in CSS identifiers
  (https://www.drupal.org/node/2810369).
- If a user navigates away from a page while an Ajax request is running they
  will no longer get an error message saying "An Ajax HTTP request terminated
  abnormally".
- The system_region_list() API function now takes an optional third parameter
  which allows region name translations to be skipped when they are not needed
  (API addition: https://www.drupal.org/node/2810365).
- Numerous performance improvements.
- Numerous bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.50, 2016-07-07 
-----------------------
- Added a new "administer fields" permission for trusted users, which is
  required in addition to other permissions to use the field UI
  (https://www.drupal.org/node/2483307).
- Added clickjacking protection to Drupal core by setting the X-Frame-Options
  header to SAMEORIGIN by default (https://www.drupal.org/node/2735873).
- Added support for full UTF-8 (emojis, Asian symbols, mathematical symbols) on
  MySQL and other database drivers when the site and database are configured to
  allow it (https://www.drupal.org/node/2761183).
- Improved performance by avoiding a re-scan of directories when a file is
  missing; instead, trigger a PHP warning (minor API change:
  https://www.drupal.org/node/2581445).
- Made it possible to use any PHP callable in Ajax form callbacks, form API
  form-building functions, and form API wrapper callbacks (API addition:
  https://www.drupal.org/node/2761169).
- Fixed that following a password reset link while logged in leaves users unable
  to change their password (minor user interface change:
  https://www.drupal.org/node/2759023).
- Implemented various fixes for automated test failures on PHP 5.4+ and PHP 7.
  Drupal core automated tests now pass in these environments.
- Improved support for PHP 7 by fixing various problems.
- Fixed various bugs with PHP 5.5+ imagerotate(), including when incorrect
  color indices are passed in.
- Fixed a regression introduced in Drupal 7.43 that allowed files uploaded by
  anonymous users to be lost after form validation errors, and that also caused
  regressions with certain contributed modules.
- Fixed a regression introduced in Drupal 7.36 which caused the default value
  of hidden textarea fields to be ignored.
- Fixed robots.txt to allow search engines to access CSS, JavaScript and image
  files.
- Changed wording on the Update Manager settings page to clarify that the
  option to check for disabled module updates also applies to uninstalled
  modules (administrative-facing translatable string change).
- Changed the help text when editing menu links and configuring URL redirect
  actions so that it does not reference "Drupal" or the drupal.org website
  (administrative-facing translatable string change).
- Fixed the locale safety check that is used to ensure that translations are
  safe to allow for tokens in the href/src attributes of translated strings.
- Fixed that URL generation only works on port 80 when using domain based
  language negotation.
- Made method="get" forms work inside the administrative overlay. The fix adds
  a new hidden field to these forms when they appear inside the overlay (minor
  data structure change).
- Increased maxlength of menu link title input fields in the node form and
  menu link form from 128 to 255 characters.
- Removed meaningless post-check=0 and pre-check=0 cache control headers from
  Drupal HTTP responses.
- Added a .editorconfig file to auto-configure editors that support it.
- Added --directory option to run-tests.sh for easier test discovery of all
  tests within a project.
- Made run-tests.sh exit with a failure code when there are test fails or
  problems running the script.
- Fixed that cookies from previous tests are still present when a new test
  starts in DrupalWebTestCase.
- Improved performance of queries on the {authmap} database table.
- Fixed handling of missing files and functions inside the registry.
- Fixed Ajax handling for tableselect form elements that use checkboxes.
- Fixed a bug which caused ip_address() to return nothing when the client IP
  address and proxy IP address are the same.
- Added a new option to format_xml_elements() to allow for already encoded
  values.
- Changed the {history} table's node ID field to be an unsigned integer, to
  match the same field in the {node} table and to prevent errors with very
  large node IDs.
- Added an explicit page callback to the "admin/people/create" menu item in the
  User module (minor data structure change). Previously this automatically
  inherited the page callback from the parent "admin/people" menu item, which
  broke contributed modules that override the "admin/people" page.
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.44, 2016-06-15
-----------------------
- Fixed security issues (privilege escalation). See SA-CORE-2016-002.

Drupal 7.43, 2016-02-24
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2016-001.

Drupal 7.42, 2016-02-03
-----------------------
- Stopped invoking hook_flush_caches() on every cron run, since some modules
  use that hook for expensive operations that are only needed on cache clears.
- Changed the default .htaccess and web.config to block Composer-related files.
- Added static caching to module_load_include() to improve performance.
- Fixed double-encoding bugs in select field widgets provided by the Options
  module. The fix deprecates the 'strip_tags' property on option widgets and
  replaces it with a new 'strip_tags_and_unescape' property (minor data
  structure change).
- Improved MySQL 5.7 support by changing the MySQL database driver to stop
  using the ANSI SQL mode alias, which has different meanings for different
  MySQL versions.
- Fixed a regression introduced in Drupal 7.39 which prevented autocomplete
  functionality from working on servers that are not configured to
  automatically recognize index.php.
- Updated the Archive_Tar PEAR package to the latest 1.4.0 release, to fix bugs
  with tar file handling on various operating systems.
- Fixed fatal errors on node preview when a field is displayed in the node
  teaser but hidden in the full node view. The fix removes a
  field_attach_prepare_view() call from the node_preview() function since it is
  redundant with one in the node preview theme layer.
- Improved the description of the "Trimmed" format option on text fields
  (translatable string change, and minor UI and data structure change).
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.41, 2015-10-21
-----------------------
- Fixed security issues (open redirect). See SA-CORE-2015-004.

Drupal 7.40, 2015-10-14
-----------------------
- Made Drupal's code for parsing .info files run much faster and use much less
  memory.
- Prevented drupal_http_request() from returning an error when it receives a
  201 through 206 HTTP status code.
- Added support for autoloading traits via the registry on sites running PHP
  5.4 or higher.
- Allowed the user-picture.tpl.php theme template to have HTML classes besides
  the default "user-picture" class printed in it (markup change).
- Fixed the URL text filter to convert e-mail addresses with plus signs into
  mailto: links.
- Added alternate text to file icons displayed by the File module, to improve
  accessibility (string change, and minor API addition to theme_file_icon()).
- Changed one-time login link failure messages to be displayed as errors or
  warnings as appropriate, rather than as regular status messages (minor UI
  change and data structure change).
- Changed the default settings.php configuration to exclude private files from
  the "404_fast_paths" behavior.
- Changed the page that displays filter tips for a particular text format, for
  example filter/tips/full_html, to return "page not found" or "access denied"
  if the format does not exist or the user does not have access to it. This
  change adds a new menu item to the Filter module's hook_menu() entry (minor
  data structure change).
- Added a new hook, hook_block_cid_parts_alter(), to allow modules to alter the
  cache keys used for caching a particular block.
- Made drupal_set_message() display and return messages when "0" is passed in
  as the message to set.
- Fixed non-functional "Files displayed by default" setting on file fields.
- The "worker callback" provided in hook_cron_queue_info() and the "finished"
  callback specified during batch processing can now be any PHP callable
  instead of just functions.
- Prevented drupal_set_time_limit() from decreasing the time limit in the case
  where the PHP maximum execution time is already unlimited.
- Changed the default thousand marker for numeric fields from a space ("1 000")
  to nothing ("1000") (minor UI change: https://www.drupal.org/node/1388376).
- Prevented malformed theme .info files (without a "name" key) from causing
  exceptions during menu rebuilds. If an .info file without a "name" key is
  found in a module or theme directory, Drupal will now use the module or
  theme's machine name as the display name instead.
- Made the format column in the {date_format_locale} database table
  case-sensitive, to match the equivalent column in the {date_formats} table.
- Fixed a bug in the Statistics module that caused JavaScript files attached to
  a node while it is being viewed to be omitted from the page.
- Added an optional 'project:' prefix that can be added to dependencies in a
  module's .info file to indicate which project the dependency resides in (API
  addition: https://www.drupal.org/node/2299747).
- Fixed various bugs that occurred after hooks were invoked early in the Drupal
  bootstrap and that caused module_implements() and drupal_alter() to cache an
  incomplete set of hook implementations for later use.
- Set the X-Content-Type-Options header to "nosniff" when possible, to prevent
  certain web browsers from picking an unsafe MIME type.
- Prevented the database API from executing multiple queries at once on MySQL,
  if the site's PHP version is new enough to do so. This is a secondary defense
  against SQL injection (API change: https://www.drupal.org/node/2463973).
- Fixed a bug in the Drupal 6 to Drupal 7 upgrade path which caused the upgrade
  to fail when there were multiple file records pointing to the same file.
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.39, 2015-08-19
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-003.

Drupal 7.38, 2015-06-17
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-002.

Drupal 7.37, 2015-05-07
-----------------------
- Fixed a regression in Drupal 7.36 which caused certain kinds of content types
  to become disabled if they were defined by a no-longer-enabled module.
- Removed a confusing description regarding automatic time zone detection from
  the user account form (minor UI and data structure change).
- Allowed custom HTML tags with a dash in the name to pass through filter_xss()
  when specified in the list of allowed tags.
- Allowed hook_field_schema() implementations to specify indexes for fields
  based on a fixed-length column prefix (rather than the entire column), as was
  already allowed in hook_schema() implementations.
- Fixed PDO exceptions on PostgreSQL when accessing invalid entity URLs.
- Added a sites/all/libraries folder to the codebase, with instructions for
  using it.
- Added a description to the "Administer text formats and filters" permission
  on the Permissions page (string change).
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.36, 2015-04-01
-----------------------
- Added a 'file_public_schema' variable which allows modules that define
  publicly-accessible streams in hook_stream_wrappers() to bypass file download
  access checks when processing managed file upload fields.
- Fixed a bug that caused database query tags not to be added to search-related
  database queries under many circumstances, and which prevented the
  corresponding hook_query_TAG_alter() implementations from being called.
- Fixed the "for" attribute on managed file upload field labels to improve
  accessibility (minor markup change).
- Added a 'javascript_always_use_jquery' variable which can be set to FALSE by
  sites that may not need jQuery loaded on all pages, and a 'requires_jquery'
  option to drupal_add_js() which modules can set to FALSE when adding
  JavaScript files that have no dependency on jQuery (API addition:
  https://www.drupal.org/node/2462717).
- Fixed incorrect foreign keys in the User module's role_permission and
  users_roles database tables.
- Changed permission descriptions throughout Drupal core to consistently link
  to relevant administrative pages, regardless of whether the user viewing the
  Permissions page can view the page being linked to (minor UI change).
- Fixed the drupal_add_region_content() function so that it actually adds
  content to the page.
- Added an 'image_suppress_itok_output' variable to allow sites already using
  the existing 'image_allow_insecure_derivatives' variable to also prevent
  security tokens from appearing in image derivative URLs.
- Fixed double-escaping of theme names in the Block module administrative
  interface (minor string change).
- Added basic support for Xdebug when running automated tests.
- Fixed a bug which caused previewing a node to remove elements from the node
  being edited. With this fix, calling node_preview() will no longer modify the
  passed-in node object (minor API change).
- Added a user_has_role() function to check whether a user has a particular
  role (API addition: https://www.drupal.org/node/2462411).
- Fixed installation failures when an opcode cache is enabled.
- Fixed a bug in the Drupal 6 to Drupal 7 upgrade path which caused private
  files to be inaccessible.
- Fixed a bug in the Drupal 6 to Drupal 7 upgrade path which caused user
  pictures to be lost.
- Fixed missing language code in hook_field_attach_view_alter() when it is
  invoked from field_view_field().
- Stopped sending ETag and Last-Modified headers for uncached page requests,
  since they break caching for certain Varnish and Nginx configurations.
- Changed the Simpletest module to allow PSR-4 test classes to be used in
  Drupal 7.
- Fixed a fatal error that occurred when using the Comment module's "Unpublish
  comment containing keyword(s)" action.
- Changed the "lang" attribute on language links to "xml:lang" so it validates
  as XHTML (minor markup change).
- Prevented the form API from allowing arrays to be submitted for various form
  elements, such as textfields, textareas, and password fields (API change:
  https://www.drupal.org/node/2462723).
- Fixed a bug in the Contact module which caused the global user object to have
  the incorrect name and e-mail address during the remainder of the page
  request after the contact form is submitted.
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.35, 2015-03-18
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-001.

Drupal 7.34, 2014-11-19
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-006.

Drupal 7.33, 2014-11-07
-----------------------
- Began storing the file modification time of each module and theme in the
  {system} database table so that contributed modules can use it to identify
  recently changed modules and themes (minor data structure change to the
  return value of system_get_info() and other related functions).
- Added a "Did you mean?" feature to the run-tests.sh script for running
  automated tests from the command line, to help developers who are attempting
  to run a particular test class or group.
- Changed the date format used in various HTTP headers output by Drupal core
  from RFC 1123 format to RFC 7231 format.
- Added a "block_cache_bypass_node_grants" variable to allow sites which have
  node access modules enabled to use the block cache if desired (API addition).
- Made image derivative generation HTTP requests return a 404 error (rather
  than a 500 error) when the source image does not exist.
- Fixed a bug which caused user pictures to be removed from the user object
  after saving, and resulted in data loss if the user account was subsequently
  re-saved.
- Fixed a bug in which field_has_data() did not return TRUE for fields that
  only had data in older entity revisions, leading to loss of the field's data
  when the field configuration was edited.
- Fixed a bug which caused the Ajax progress throbber to appear misaligned in
  many situatons (minor styling change).
- Prevented the Bartik theme from lower-casing the "Permalink" link on
  comments, for improved multilingual support (minor UI change).
- Added a "preferred_menu_links" tag to the database query that is used by
  menu_link_get_preferred() to find the preferred menu link for a given path,
  to make it easier to alter.
- Increased the maximum allowed length of block titles to 255 characters
  (database schema change to the {block} table).
- Removed the Field module's field_modules_uninstalled() function, since it did
  not do anything when it was invoked.
- Added a "theme_hook_original" variable to templates and theme functions and
  an optional sitewide theme debug mode, to provide contextual information in
  the page's HTML to theme developers. The theme debug mode is based on the one
  used with Twig in Drupal 8 and can be accessed by setting the "theme_debug"
  variable to TRUE (API addition).
- Added an entity_view_mode_prepare() API function to allow entity-defining
  modules to properly invoke hook_entity_view_mode_alter(), and used it
  throughout Drupal core to fix bugs with the invocation of that hook (API
  change: https://www.drupal.org/node/2369141).
- Security improvement: Made the database API's orderBy() method sanitize the
  sort direction ("ASC" or "DESC") for queries built with db_select(), so that
  calling code does not have to.
- Changed the RDF module to consistently output RDF metadata for nodes and
  comments near where the node is rendered in the HTML (minor markup and data
  structure change).
- Added an HTML class to RDFa metatags throughout Drupal to prevent them from
  accidentally affecting the site appearance (minor markup change).
- Fixed a bug in the Unicode requirements check which prevented installing
  Drupal on PHP 5.6.
- Fixed a bug which caused drupal_get_bootstrap_phase() to abort the bootstrap
  when called early in the page request.
- Renamed the "Search result" view mode to "Search result highlighting input"
  to better reflect how it is used (UI change).
- Improved database queries generated by EntityFieldQuery in the case where
  delta or language condition groups are used, to reduce the number of INNER
  JOINs (this is a minor data structure change affecting code which implements
  hook_query_alter() on these queries).
- Removed special-case behavior for file uploads which allowed user #1 to
  bypass maximum file size and user quota limits.
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.32, 2014-10-15
-----------------------
- Fixed security issues (SQL injection). See SA-CORE-2014-005.

Drupal 7.31, 2014-08-06
-----------------------
- Fixed security issues (denial of service). See SA-CORE-2014-004.

Drupal 7.30, 2014-07-24
-----------------------
- Fixed a regression introduced in Drupal 7.29 that caused files or images
  attached to taxonomy terms to be deleted when the taxonomy term was edited
  and resaved (and other related bugs with contributed and custom modules).
- Added a warning on the permissions page to recommend restricting access to
  the "View site reports" permission to trusted administrators. See
  DRUPAL-PSA-2014-002.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.29, 2014-07-16
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-003.

Drupal 7.28, 2014-05-08
-----------------------
- Fixed a regression introduced in Drupal 7.27 that caused JavaScript to break
  on older browsers (such as Internet Explorer 8 and earlier) when Ajax was
  used.
- Increased the timeout used by the Update Manager module when it fetches data
  from drupal.org (from 5 seconds to 30 seconds), to work around a problem
  which causes incomplete information about security updates to be presented to
  site administrators. This fix may lead to a performance slowdown on the
  Update Manager administration pages, when installing Drupal distributions,
  and (for sites that use the automated cron feature) on occasional page loads
  by site visitors.
- Fixed the behavior of the token system's "[node:summary]" token when the body
  field does not have a manual summary.
- Changed the behavior of db_query_temporary() so that it works on SELECT
  queries even when they have leading comments/whitespace. A side effect of
  this fix is that db_query_temporary() will now fail with an error if it is
  ever used on non-SELECT queries.
- Added a "node_admin_filter" tag to the database query used to build the list
  of nodes on the content administration page, to make it easier to alter.
- Made the cron queue system log any exceptions that are thrown while an item
  in the queue is being processed, rather than stopping the entire PHP request.
- Improved screen reader support by adding an aria-live HTML attribute to file
  upload fields when there is an error uploading the file (minor markup
  change).
- Made the pager on the Tracker module listing pages show the same number of
  items as other pagers throughout Drupal core (minor UI change).
- Fixed a bug which caused caches not to be properly cleared when a file entity
  was saved or deleted.
- Added several missing countries to the default list returned by
  country_get_list() (string change).
- Replaced the term "weight" with "influence" in the content ranking settings
  for search, and added help text for administrators (string change).
- Fixed untranslatable text strings in the administrative interface for the
  "Crop" effect provided by the Image module (minor string change).
- Fixed a bug in the Taxonomy module update function introduced in Drupal 7.26
  that caused memory and CPU problems on sites with very large numbers of
  unpublished nodes.
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.27, 2014-04-16
-----------------------
- Fixed security issues (information disclosure). See SA-CORE-2014-002.

Drupal 7.26, 2014-01-15
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-001.

Drupal 7.25, 2014-01-02
-----------------------
- Fixed a bug in node_save() which prevented the saved node from being updated
  in hook_node_insert() and other similar hooks.
- Added a meta tag to install.php to prevent it from being indexed by search
  engines even when Drupal is installed in a subfolder (minor markup change).
- Fixed a bug in the database API that caused frequent deadlock errors when
  running merge queries on some servers.
- Performance improvement: Prevented block rehashing from writing blocks to the
  database on every cache clear and cron run when the blocks have not changed.
  This fix results in an extra 'saved' key which is added and set to TRUE for
  each block returned by _block_rehash() that actually is saved to the database
  (data structure change).
- Added an optional 'skip on cron' parameter to hook_cron_queue_info() to allow
  queues to avoid being automatically processed on cron runs (API addition).
- Fixed a bug which caused hook_block_view_MODULE_DELTA_alter() to never be
  invoked if the block delta had a hyphen in it. To implement the hook when the
  block delta has a hyphen, modules should now replace hyphens with underscores
  when constructing the function name for the hook implementation.
- Fixed a bug which caused cached pages to sometimes be sent to the browser
  with incorrect compression. The fix adds a new 'page_compressed' key to the
  $cache->data array returned by drupal_page_get_cache() (minor data structure
  change).
- Fixed broken tests on PHP 5.5.
- Made the File and Image modules more robust when saving entities that have
  deleted files attached. The code in file_field_presave() will now remove the
  record of the deleted file from the entity before saving (minor data
  structure change).
- Standardized menu callback functions throughout Drupal core to return
  MENU_NOT_FOUND and MENU_ACCESS_DENIED rather than printing their own "page
  not found" or "access denied" pages (minor API change in the return value of
  these functions under some circumstances).
- Fixed a bug in which caches were not properly cleared when a node was deleted
  via the administrative interface.
- Changed the Bartik theme to render content contained in <pre>, <code> and
  similar tags in a larger font size, so it is easier to read.
- Fixed a bug in the Search module that caused exceptions to be thrown during
  searches if the server was not configured to represent decimal points as a
  period.
- Fixed a regression in the Image module that made image_style_url() not work
  when a relative path (rather than a complete file URI) was passed to it.
- Added an optional feature to the Statistics module to allow node views to be
  tracked by Ajax requests rather than during the server-side generation of the
  page. This allows the node counter to work on sites that use external page
  caches (string change and new administrative option:
  https://drupal.org/node/2164069).
- Added a link to the drupal.org documentation page for cron to the Cron
  settings page (string change).
- Added a 'drupal_anonymous_user_object' variable to allow the anonymous user
  object returned by drupal_anonymous_user() to be overridden with a classed
  object (API addition).
- Changed the database API to allow inserts based on a SELECT * query to work
  correctly.
- Changed the database schema of the {file_managed} table to allow Drupal to
  manage files larger than 4 GB.
- Changed the File module's hook_field_load() implementation to prevent file
  entity properties which have the same name as file or image field properties
  from overwriting the field properties (minor API change).
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.24, 2013-11-20
-----------------------
- Fixed security issues (multiple vulnerabilities), see SA-CORE-2013-003.

Drupal 7.23, 2013-08-07
-----------------------
- Fixed a fatal error on PostgreSQL databases when updating the Taxonomy module
  from Drupal 6 to Drupal 7.
- Fixed the default ordering of CSS files for sites using right-to-left
  languages, to consistently place the right-to-left override file immediately
  after the CSS it is overriding (API change: https://drupal.org/node/2058463).
- Added a drupal_check_memory_limit() API function to allow the memory limit to
  be checked consistently (API addition).
- Changed the default web.config file for IIS servers to allow favicon.ico
  files which are present in the filesystem to be accessed.
- Fixed inconsistent support for the 'tel' protocol in Drupal's URL filtering
  functions.
- Performance improvement: Allowed all hooks to be included in the
  module_implements() cache, even those that are only invoked on HTTP POST
  requests.
- Made the database system replace truncate queries with delete queries when
  inside a transaction, to fix issues with PostgreSQL and other databases.
- Fixed a bug which caused nested contextual links to display improperly.
- Fixed a bug which prevented cached image derivatives from being flushed for
  private files and other non-default file schemes.
- Fixed drupal_render() to always return an empty string when there is no
  output, rather than sometimes returning NULL (minor API change).
- Added protection to cache_clear_all() to ensure that non-cache tables cannot
  be truncated (API addition: a new isValidBin() method has been added to the
  default database cache implementation).
- Changed the default .htaccess file to support HTTP authorization in CGI
  environments.
- Changed the password reset form to pre-fill the username when requested via a
  URL query parameter, and used this in the error message that appears after a
  failed login attempt (minor data structure and behavior change).
- Fixed broken support for foreign keys in the field API.
- Fixed "No active batch" error when a user cancels their own account.
- Added a description to the "access content overview" permission on the
  permissions page (string change).
- Added a drupal_array_diff_assoc_recursive() function to allow associative
  arrays to be compared recursively (API addition).
- Added human-readable labels to image styles, in addition to the existing
  machine-readable name (API change: https://drupal.org/node/2058503).
- Moved the drupal_get_hash_salt() function to bootstrap.inc and used it in
  additional places in the code, for added security in the case where there is
  no hash salt in settings.php.
- Fixed a regression in Drupal 7.22 that caused internal server errors for
  sites running on very old Apache 1.x web servers.
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.22, 2013-04-03
-----------------------
- Allowed the drupal_http_request() function to be overridden so that
  additional HTTP request capabilities can be added by contributed modules.
- Changed the Simpletest module to allow PSR-0 test classes to be used in
  Drupal 7.
- Removed an unnecessary "Content-Disposition" header from private file
  downloads; it prevented many private files from being viewed inline in a web
  browser.
- Changed various field API functions to allow them to optionally act on a
  single field within an entity (API addition: http://drupal.org/node/1825844).
- Fixed a bug which prevented Drupal's file transfer functionality from working
  on some PHP 5.4 systems.
- Fixed incorrect log message when theme() is called for a theme hook that does
  not exist (minor string change).
- Fixed Drupal's token-replacement system to allow spaces in the token value.
- Changed the default behavior after a user creates a node they do not have
  access to view. The user will now be redirected to the front page rather than
  an access denied page.
- Fixed a bug which prevented empty HTTP headers (such as "0") from being set.
  (Minor behavior change: Callers of drupal_add_http_header() must now set
  FALSE explicitly to prevent a header from being sent at all; this was already
  indicated in the function's documentation.)
- Fixed OpenID errors when more than one module implements hook_openid(). The
  behavior is now changed so that if more than one module tries to set the same
  parameter, the last module's change takes effect.
- Fixed a serious documentation bug: The $name variable in the
  taxonomy-term.tpl.php theme template was incorrectly documented as being
  sanitized when in fact it is not.
- Fixed a bug which prevented Drupal 6 to Drupal 7 upgrades on sites which had
  duplicate permission names in the User module's database tables.
- Added an empty "datatype" attribute to taxonomy term and username links to
  make the RDFa markup upward compatible with RDFa 1.1 (minor markup addition).
- Fixed a bug which caused the denial-of-service protection added in Drupal
  7.20 to break certain valid image URLs that had an extra slash in them.
- Fixed a bug with update queries in the SQLite database driver that prevented
  Drupal from being installed with SQLite on PHP 5.4.
- Fixed enforced dependencies errors updating to recent versions of Drupal 7 on
  certain non-MySQL databases.
- Refactored the Field module's caching behavior to obtain large improvements
  in memory usage for sites with many fields and instances (API addition:
  http://drupal.org/node/1915646).
- Fixed entity argument not being passed to implementations of
  hook_file_download_access_alter(). The fix adds an additional context
  parameter that can be passed when calling drupal_alter() for any hook (API
  change: http://drupal.org/node/1882722).
- Fixed broken support for translatable comment fields (API change:
  http://drupal.org/node/1874724).
- Added an assertThemeOutput() method to Simpletest to allow tests to check
  that themed output matches an expected HTML string (API addition).
- Added a link to "Install another module" after a module has been successfully
  downloaded via the Update Manager (UI change).
- Added an optional "exclusive" flag to installation profile .info files which
  allows Drupal distributions to force a profile to be selected during
  installation (API addition: http://drupal.org/node/1961012).
- Fixed a bug which caused the database API to not properly close database
  connections.
- Added a link to the URL for running cron from outside the site to the Cron
  settings page (UI change).
- Fixed a bug which prevented image styles from being reverted on PHP 5.4.
- Made the default .htaccess rules protocol sensitive to improve security for
  sites which use HTTPS and redirect between "www" and non-"www" versions of
  the page.
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.21, 2013-03-06
-----------------------
- Allowed sites using the 'image_allow_insecure_derivatives' variable to still
  have partial protection from the security issues fixed in Drupal 7.20.

Drupal 7.20, 2013-02-20
-----------------------
- Fixed security issues (denial of service). See SA-CORE-2013-002.

Drupal 7.19, 2013-01-16
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2013-001.

Drupal 7.18, 2012-12-19
-----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2012-004.

Drupal 7.17, 2012-11-07
-----------------------
- Changed the default value of the '404_fast_html' variable to have a DOCTYPE
  declaration.
- Made it possible to use associative arrays for the 'items' variable in
  theme_item_list().
- Fixed a bug which prevented required form elements without a title from being
  given an "error" class when the form fails validation.
- Prevented duplicate HTML IDs from appearing when two forms are displayed on
  the same page and one of them is submitted with invalid data (minor markup
  change).
- Fixed a bug which prevented Drupal 6 to Drupal 7 upgrades on sites which had
  stale data in the Upload module's database tables.
- Fixed a bug in the States API which prevented certain types of form elements
  from being disabled when requested.
- Allowed aggregator feed items with author names longer than 255 characters to
  have a truncated version saved to the database (rather than causing a fatal
  error).
- Allowed aggregator feed items to have URLs longer than 255 characters
  (schema change which results in several columns in the Aggregator module's
  database tables changing from VARCHAR to TEXT fields).
- Added hook_taxonomy_term_view() and standardized the process for rendering
  taxonomy terms to invoke hook_entity_view() and otherwise make it consistent
  with other entities (API change: http://drupal.org/node/1808870).
- Added hook_entity_view_mode_alter() to allow modules to change entity view
  modes on display (API addition: http://drupal.org/node/1833086).
- Fixed a bug which made database queries running a "LIKE" query on blob fields
  fail on PostgreSQL databases. This caused errors during the Drupal 6 to
  Drupal 7 upgrade.
- Changed the hook_menu() entry for Drupal's rss.xml page to prevent extra path
  components from being accidentally passed to the page callback function (data
  structure change).
- Removed a non-standard "name" attribute from Drupal's default Content-Type
  header for file downloads.
- Fixed the theme settings form to properly clean up submitted values in
  $form_state['values'] when the form is submitted (data structure change).
- Fixed an inconsistency by removing the colon from the end of the label on
  multi-valued form fields (minor string change).
- Added support for 'weight' in hook_field_widget_info() to allow modules to
  control the order in which widgets are displayed in the Field UI.
- Updated various tables in the OpenID and Book modules to use the default
  "empty table" text pattern (string change).
- Added proxy server support to drupal_http_request().
- Added "lang" attributes to language links, to better support screen readers.
- Fixed double occurrence of a "ul" HTML tag on secondary local tasks in the
  Seven theme (markup change).
- Fixed bugs which caused taxonomy vocabulary and shortcut set titles to be
  double-escaped. The fix replaces the taxonomy vocabulary overview page and
  "Edit shortcuts" menu items' title callback entries in hook_menu() with new
  functions that do not escape HTML characters (data structure change).
- Modified the Update manager module to allow drupal.org to collect usage
  statistics for individual modules and themes, rather than only for entire
  projects.
- Modified the node listing database query on Drupal's default front page to
  add table aliases for better query altering (this is a data structure change
  affecting code which implements hook_query_alter() on this query).
- Improved the translatability of the "Field type(s) in use" message on the
  modules page (admin-facing string change).
- Fixed a regression which caused a "call to undefined function
  drupal_find_base_themes()" fatal error under rare circumstances.
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.16, 2012-10-17
-----------------------
- Fixed security issues (Arbitrary PHP code execution and information
  disclosure). See SA-CORE-2012-003.

Drupal 7.15, 2012-08-01
-----------------------
- Introduced a 'user_password_reset_timeout' variable to allow the 24-hour
  expiration for user password reset links to be adjusted (API addition).
- Fixed database errors due to ambiguous column names that occurred when
  EntityFieldQuery was used in certain situations.
- Changed the drupal_array_get_nested_value() function to return a reference
  (API addition).
- Changed the System module's hook_block_info() implementation to assign the
  "Main page content" and "System help" blocks to appropriate regions by
  default and prevent error messages on the block administration page (data
  structure change).
- Fixed regression: Non-node entities couldn't be accessed with
  EntityFieldQuery.
- Fixed regression: Optional radio buttons with an empty, non-NULL default
  value led to an illegal choice error when none were selected.
- Reorganized the testing framework to split setUp() into specific sub-methods
  and fix several regressions in the process.
- Fixed bug which made it impossible to search for strings that have not been
  translated into a particular language.
- Renamed the "Field" column on the Manage Fields screen to "Field type", since
  the former was confusing and inaccurate (UI change).
- Performance improvement: Removed needless call to system_rebuild_module_data()
  in field_sync_field_status(), greatly speeding up bulk module enable/disable.
- Fixed bug which prevented notifications from being sent when core, module, and
  theme updates are available.
- Fixed bug which prevented sub-themes from inheriting the default values of
  theme settings defined by the base theme.
- Fixed bug which prevented the jQuery UI Datepicker from being localized.
- Made Ajax alert dialogs respect error reporting settings.
- Fixed bug which prevented image styles from being deleted on PHP 5.4.
- Fixed bug: Language detection by domain only worked on port 80.
- Fixed regression: The first plural index on a page was not calculated
  correctly.
- Introduced generic entity language support. Entities may now declare their
  language property in hook_entity_info(), and modules working with entities
  may access the language using entity_language() (API change:
  http://drupal.org/node/1626346).
- Added EntityFieldQuery support for taxonomy bundles.
- Fixed issue where field form structure was incomplete if field_access()
  returned FALSE. Instead of being incomplete, the form structure now has
  #access set to FALSE and field form validation is skipped (data structure
  change: http://drupal.org/node/1663020).
- Fixed data loss issue due to field_has_data() returning inconsistent results.
  The fix adds an optional DANGEROUS_ACCESS_CHECK_OPT_OUT tag to entity field
  queries which field storage engines can respond to (API addition:
  http://drupal.org/node/1597378).
- Fixed notice: Undefined index: default_image in image_field_prepare_view()
- Numerous API documentation improvements.
- Additional automated test coverage.

Drupal 7.14, 2012-05-02
-----------------------
- Fixed "integrity constraint" fatal errors when rebuilding registry.
- Fixed custom logo and favicon functionality referencing incorrect paths.
- Fixed DB Case Sensitivity: Allow BINARY attribute in MySQL.
- Split field_bundle_settings out per bundle.
- Improve UX for machine names for fields (UI change).
- Fixed User pictures are not removed properly.
- Fixed HTTPS sessions not working in all cases.
- Fixed Regression: Required radios throw illegal choice error when none
  selected.
- Fixed allow autocompletion requests to include slashes.
- Eliminate $user->cache and {session}.cache in favor of
  $_SESSION['cache_expiration'][$bin] (Performance).
- Fixed focus jumps to tab when pressing enter on a form element within tab.
- Fixed race condition in locale() - duplicates in {locales_source}.
- Fixed Missing "Default image" per field instance.
- Quit clobbering people's work when they click the filter tips link
- Form API #states: Fix conditionals to allow OR and XOR constructions.
- Fixed Focus jumps to tab when pressing enter on a form element within tab.
  (Accessibility)
- Improved performance of node_access queries.
- Fixed Fieldsets inside vertical tabs have no title and can't be collapsed.
- Reduce size of cache_menu table (Performance).
- Fixed unnecessary aggregation of CSS/JS (Performance).
- Fixed taxonomy_autocomplete() produces SQL error for nonexistent field.
- Fixed HTML filter is not run first by default, despite default weight.
- Fixed Overlay does not work with prefixed URL paths.
- Better debug info for field errors (string change).
- Fixed Data corruption in comment IDs (results in broken threading on
  PostgreSQL).
- Fixed machine name not editable if every character is replaced.
- Fixed user picture not appearing in comment preview (Markup change).
- Added optional vid argument for taxonomy_get_term_by_name().
- Fixed Invalid Unicode code range in PREG_CLASS_UNICODE_WORD_BOUNDARY fails
  with PCRE 8.30.
- Fixed {trigger_assignments()}.hook has only 32 characters, is too short.
- Numerous fixes to run-tests.sh.
- Fixed Tests in profiles/[name]/modules cannot be run and cannot use a
  different profile for running tests.
- Numerous JavaScript performance fixes.
- Numerous documentation fixes.
- Fixed All pager links have an 'active' CSS class.
- Numerous upgrade path fixes; notably:
  - system_update_7061() fails on inserting files with same name but different
    case.
  - system_update_7061() converts filepaths too aggressively.
  - Trigger upgrade path: Node triggers removed when upgrading to 7-x from 6.25.

Drupal 7.13, 2012-05-02
-----------------------
- Fixed security issues (Multiple vulnerabilities), see SA-CORE-2012-002.

Drupal 7.12, 2012-02-01
-----------------------
- Fixed bug preventing custom menus from receiving an active trail.
- Fixed hook_field_delete() no longer invoked during field_purge_data().
- Fixed bug causing entity info cache to not be cleared with the rest of caches.
- Fixed file_unmanaged_copy() fails with Drupal 7.7+ and safe_mode() or
  open_basedir().
- Fixed Nested transactions throw exceptions when they got out of scope.
- Fixed bugs with the Return-Path when sending mail on both Windows and
  non-Windows systems.
- Fixed bug with DrupalCacheArray property visibility preventing others from
  extending it (API change: http://drupal.org/node/1422264).
- Fixed bug with handling of non-ASCII characters in file names (API change:
  http://drupal.org/node/1424840).
- Reconciled field maximum length with database column size in image and
  aggregator modules.
- Fixes to various core JavaScript files to allow for minification and
  aggregation.
- Fixed Prevent tests from deleting main installation's tables when
  parent::setUp() is not called.
- Fixed several Poll module bugs.
- Fixed several Shortcut module bugs.
- Added new hook_system_theme_info() to provide ability for contributed modules
  to test theme functionality.
- Added ability to cancel mail sending from hook_mail_alter().
- Added support for configurable PDO connection options, enabling master-master
  database replication.
- Numerous improvements to tests and test runner to pave the way for faster test
  runs.
- Expanded test coverage.
- Numerous API documentation improvements.
- Numerous performance improvements, including token replacement and render
  cache.

Drupal 7.11, 2012-02-01
-----------------------
- Fixed security issues (Multiple vulnerabilities), see SA-CORE-2012-001.

Drupal 7.10, 2011-12-05
-----------------------
- Fixed Content-Language HTTP header to not cause issues with Drush 5.x.
- Reduce memory usage of theme registry (performance).
- Fixed PECL upload progress bar for FileField
- Fixed running update.php doesn't always clear the cache.
- Fixed PDO exceptions on long titles.
- Fixed Overlay redirect does not include query string.
- Fixed D6 modules satisfy D7 module dependencies.
- Fixed the ordering of module hooks when using module_implements_alter().
- Fixed "floating" submit buttons during AJAX requests.
- Fixed timezone selected on install not propogating to admin account.
- Added msgctx context to JS translation functions, for feature parity with t().
- Profiles' .install files now available during hook_install_tasks().
- Added test coverage of 7.0 -> 7.x upgrade path.
- Numerous notice fixes.
- Numerous documentation improvements.
- Additional automated test coverage.

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
  content.
- Numerous fixes to upgrade path, preventing fatal errors due to incorrect
  dependencies.
- Fixed issue with saving files on hosts with open_basedir restrictions.
- Fixed Update manger error when used with Overlay.
- Fixed RTL support in Seven administration theme and Overlay.
- Fixes to nested transaction support.
- Introduced performance pattern to reduce Drupal core's RAM usage.
- Added support for HTML 5 tags to filter_xss_admin().
- Added exception handling to cron.
- Added new hook hook_field_widget_form_alter() for contribtued modules.
- element_validate_*() functions now available to contrib.
- Added new maintainers for several subsystems.
- Numerous testing system improvements.
- Numerous markup and CSS fixes.
- Numerous poll module fixes.
- Numerous notice/warning fixes.
- Numerous documentation fixes.
- Numerous token fixes.

Drupal 7.7, 2011-07-27
----------------------
- Fixed VERSION string.

Drupal 7.6, 2011-07-27
----------------------
- Fixed support for remote streamwrappers.
- AJAX now binds to 'click' instead of 'mousedown'.
- 'Translatable' flag on fields created in UI now defaults to FALSE, to match those created via the API.
- Performance enhancement to permissions page on large numbers of permissions.
- More secure password generation.
- Fix for temporary directory on Windows servers.
- run-tests.sh now uses proc_open() instead of pcntl_fork() for better Windows support.
- Numerous upgrade path fixes.
- Numerous documentation fixes.
- Numerous notice fixes.
- Numerous fixes to improve PHP 5.4 support.
- Numerous RTL improvements.

Drupal 7.5, 2011-07-27
----------------------
- Fixed security issue (Access bypass), see SA-CORE-2011-003.

Drupal 7.4, 2011-06-29
----------------------
- Rolled back patch that caused fatal errors in CTools, Feeds, and other modules using the class registry.
- Fixed critical bug with saving default images.
- Fixed fatal errors when uninstalling some modules.
- Added workaround for MySQL transaction support breaking on DDL statments.
- Improved page caching with external caching systems.
- Fix to Batch API, which was terminating too early.
- Numerous upgrade path fixes.
- Performance fixes.
- Additional test coverage.
- Numerous documentation fixes.

Drupal 7.3, 2011-06-29
----------------------
- Fixed security issue (Access bypass), see SA-CORE-2011-002.

Drupal 7.2, 2011-05-25
----------------------
- Added a default .gitignore file.
- Improved PostgreSQL and SQLite support.
- Numerous critical performance improvements.
- Numerous critical fixes to the upgrade path.
- Numerous fixes to language and translation systems.
- Numerous fixes to AJAX and #states systems.
- Improvements to the locking system.
- Numerous documentation fixes.
- Numerous styling and theme system fixes.
- Numerous fixes for schema mis-matches between Drupal 6 and 7.
- Minor internal API clean-ups.

Drupal 7.1, 2011-05-25
----------------------
- Fixed security issues (Cross site scripting, File access bypass), see SA-CORE-2011-001.

Drupal 7.0, 2011-01-05 
----------------------
- Database:
    * Fully rewritten database layer utilizing PHP 5's PDO abstraction layer.
    * Drupal now requires MySQL >= 5.0.15 or PostgreSQL >= 8.3.
    * Added query builders for INSERT, UPDATE, DELETE, MERGE, and SELECT queries.
    * Support for master/slave replication, transactions, multi-insert queries,
      and other features.
    * Added support for the SQLite database engine.
    * Default to InnoDB engine, rather than MyISAM, on MySQL when available.
      This offers increased scalability and data integrity.
- Security:
    * Protected cron.php -- cron will only run if the proper key is provided.
    * Implemented a pluggable password system and much stronger password hashes
      that are compatible with the Portable PHP password hashing framework.
    * Rate limited login attempts to prevent brute-force password guessing, and
      improved the flood control API to allow variable time windows and
      identifiers for limiting user access to resources.
    * Transformed the "Update status" module into the "Update manager" which
      can securely install or update modules and themes via a web interface.
- Usability:
    * Added contextual links (a.k.a. local tasks) to page elements, such as
      blocks, nodes, or comments, which allows to perform the most common tasks
      with a single click only.
    * Improved installer requirements check.
    * Improved support for integration of WYSIWYG editors.
    * Implemented drag-and-drop positioning for input format listings.
    * Implemented drag-and-drop positioning for language listing.
    * Implemented drag-and-drop positioning for poll options.
    * Provided descriptions and human-readable names for user permissions.
    * Removed comment controls for users.
    * Removed display order settings for comment module. Comment display
      order can now be customized using the Views module.
    * Removed the 'related terms' feature from taxonomy module since this can
      now be achieved with Field API.
    * Added additional features to the default installation profile, and
      implemented a "slimmed down" profile designed for developers.
    * Added a built-in, automated cron run feature, which is triggered by site
      visitors.
    * Added an administrator role which is assigned all permissions for
      installed modules automatically.
    * Image toolkits are now provided by modules (rather than requiring a
      manual file copy to the includes directory).
    * Added an edit tab to taxonomy term pages.
    * Redesigned password strength validator.
    * Redesigned the add content type screen.
    * Highlight duplicate URL aliases.
    * Renamed "input formats" to "text formats".
    * Moved text format permissions to the main permissions page.
    * Added configurable ability for users to cancel their own accounts.
    * Added "vertical tabs", a reusable interface component that features
      automatic summaries and increases usability.
    * Replaced fieldsets on node edit and add pages with vertical tabs.
- Performance:
    * Improved performance on uncached page views by loading multiple core
      objects in a single database query.
    * Improved performance for logged-in users by reducing queries for path
      alias lookups.
    * Improved support for HTTP proxies (including reverse proxies), allowing
      anonymous page views to be served entirely from the proxy.
- Documentation:
    * Hook API documentation now included in Drupal core.
- News aggregator:
    * Added OPML import functionality for RSS feeds.
    * Optionally, RSS feeds may be configured to not automatically generate feed blocks.
- Search:
    * Added support for language-aware searches.
- Aggregator:
    * Introduced architecture that allows pluggable parsers and processors for
      syndicating RSS and Atom feeds.
    * Added options to suspend updating specific feeds and never discard feeds
      items.
- Testing:
    * Added test framework and tests.
- Improved time zone support:
    * Drupal now uses PHP's time zone database when rendering dates in local
      time. Site-wide and user-configured time zone offsets have been converted
      to time zone names, e.g. Africa/Abidjan.
    * In some cases the upgrade and install scripts do not choose the preferred
      site default time zone. The automatically-selected time zone can be
      corrected at admin/config/regional/settings.
    * If your site is being upgraded from Drupal 6 and you do not have the
      contributed date or event modules installed, user time zone settings will
      fallback to the system time zone and will have to be reconfigured by each user.
    * User-configured time zones now serve as the default time zone for PHP
      date/time functions.
- Filter system:
    * Revamped the filter API and text format storage.
    * Added support for default text formats to be assigned on a per-role basis.
    * Refactored the HTML corrector to take advantage of PHP 5 features.
- User system:
    * Added clean API functions for creating, loading, updating, and deleting
      user roles and permissions.
    * Refactored the "access rules" component of user module: The user module
      now provides a simple interface for blocking single IP addresses. The
      previous functionality in the user module for restricting certain e-mail
      addresses and usernames is now available as a contributed module. Further,
      IP address range blocking is no longer supported and should be implemented
      at the operating system level.
    * Removed per-user themes: Contributed modules with similar functionality
      are available.
- OpenID:
    * Added support for Gmail and Google Apps for Domain identifiers. Users can
      now login with their user@example.com identifier when example.com is powered
      by Google.
    * Made the OpenID module more pluggable.
- Added code registry:
    * Using the registry, modules declare their includable files via their .info file,
      allowing Drupal to lazy-load classes and interfaces as needed.
- Theme system:
    * Removed the Bluemarine, Chameleon and Pushbutton themes. These themes live
      on as contributed themes (http://drupal.org/project/bluemarine,
      http://drupal.org/project/chameleon and http://drupal.org/project/pushbutton).
    * Added Stark theme to make analyzing Drupal's default HTML and CSS easier.
    * Added Seven as the default administration theme.
    * Variable preprocessing of theme hooks prior to template rendering now goes
      through two phases: a 'preprocess' phase and a new 'process' phase. See
      http://api.drupal.org/api/function/theme/7 for details.
    * Theme hooks implemented as functions (rather than as templates) can now
      also have preprocess (and process) functions. See
      http://api.drupal.org/api/function/theme/7 for details.
    * Added Bartik as the default theme.
- File handling:
    * Files are now first class Drupal objects with file_load(), file_save(),
      and file_validate() functions and corresponding hooks.
    * The file_move(), file_copy() and file_delete() functions now operate on
      file objects and invoke file hooks so that modules are notified and can
      respond to changes.
    * For the occasions when only basic file manipulation are needed--such as
      uploading a site logo--that don't require the overhead of databases and
      hooks, the current unmanaged copy, move and delete operations have been
      preserved but renamed to file_unmanaged_*().
    * Rewrote file handling to use PHP stream wrappers to enable support for
      both public and private files and to support pluggable storage mechanisms
      and access to remote resources (e.g. S3 storage or Flickr photos).
    * The mime_extension_mapping variable has been removed. Modules that need to
      alter the default MIME type extension mappings should implement
      hook_file_mimetype_mapping_alter().
    * Added the hook_file_url_alter() hook, which makes it possible to serve
      files from a CDN.
    * Added a field specifically for uploading files, previously provided by
      the contributed module FileField.
- Image handling:
    * Improved image handling, including better support for add-on image
      libraries.
    * Added API and interface for creating advanced image thumbnails.
    * Inclusion of additional effects such as rotate and desaturate.
    * Added a field specifically for uploading images, previously provided by
      the contributed module ImageField.
- Added aliased multi-site support:
    * Added support for mapping domain names to sites directories.
- Added RDF support:
    * Modules can declare RDF namespaces which are serialized in the <html> tag
      for RDFa support.
    * Modules can specify how their data structure maps to RDF.
    * Added support for RDFa export of nodes, comments, terms, users, etc. and
      their fields.
- Search engine optimization and web linking:
    * Added a rel="canonical" link on node and comment pages to prevent
      duplicate content indexing by search engines.
    * Added a default rel="shortlink" link on node and comment pages that
      advertises a short link as an alternative URL to third-party services.
    * Meta information is now alterable by all modules before rendering.
- Field API:
    * Custom data fields may be attached to nodes, users, comments and taxonomy
      terms.
    * Node bodies and teasers are now Field API fields instead of
      being a hard-coded property of node objects.
    * In addition, any other object type may register with Field API
      and allow custom data fields to be attached to itself.
    * Provides most of the features of the former Content Construction
      Kit (CCK) module.
    * Taxonomy terms are now Field API fields that can be added to any fieldable
      object.
- Installer:
    * Refactored the installer into an API that allows Drupal to be installed
      via a command line script.
- Page organization
    * Made the help text area a full featured region with blocks.
    * Site mission is replaced with the highlighted content block region and
      separate RSS feed description settings.
    * The footer message setting was removed in favor of custom blocks.
    * Made the main page content a block which can be moved and ordered
      with other blocks in the same region.
    * Blocks can now return structured arrays for later rendering just
      like page callbacks.
- Translation system
    * The translation system now supports message context (msgctxt).
    * Added support for translatable fields to Field API.
- JavaScript changes
    * Upgraded the core JavaScript library to jQuery version 1.4.4.
    * Upgraded the jQuery Forms library to 2.52.
    * Added jQuery UI 1.8.7, which allows improvements to Drupal's user
      experience.
- Better module version support
    * Modules now can specify which version of another module they depend on.
- Removed modules from core
    * The following modules have been removed from core, because contributed
      modules with similar functionality are available:
      * Blog API module
      * Ping module
      * Throttle module
- Improved node access control system.
    * All modules may now influence the access to a node at runtime, not just
      the module that defined a node.
    * Users may now be allowed to bypass node access restrictions without giving
      them complete access to the site.
    * Access control affects both published and unpublished nodes.
    * Numerous other improvements to the node access system.
- Actions system
    * Simplified definitions of actions and triggers.
    * Removed dependency on the combination of hooks and operations. Triggers
      now directly map to module hooks.
- Task handling
    * Added a queue API to process many or long-running tasks.
    * Added queue API support to cron API.
    * Added a locking framework to coordinate long-running operations across
      requests.

Drupal 6.23-dev, xxxx-xx-xx (development release)
---------------------------

Drupal 6.22, 2011-05-25
-----------------------
- Made Drupal 6 work better with IIS and Internet Explorer.
- Fixed .po file imports to work better with custom textgroups.
- Improved code documentation at various places.
- Fixed a variety of other bugs.

Drupal 6.21, 2011-05-25
-----------------------
- Fixed security issues (Cross site scripting), see SA-CORE-2011-001.

Drupal 6.20, 2010-12-15
-----------------------
- Fixed a variety of small bugs, improved code documentation.

Drupal 6.19, 2010-08-11
-----------------------
- Fixed a variety of small bugs, improved code documentation.

Drupal 6.18, 2010-08-11
-----------------------
- Fixed security issues (OpenID authentication bypass, File download access
  bypass, Comment unpublishing bypass, Actions cross site scripting),
  see SA-CORE-2010-002.

Drupal 6.17, 2010-06-02
-----------------------
- Improved PostgreSQL compatibility
- Better PHP 5.3 and PHP 4 compatibility
- Better browser compatibility of CSS and JS aggregation
- Improved logging for login failures
- Fixed an incompatibility with some contributed modules and the locking system
- Fixed a variety of other bugs.

Drupal 6.16, 2010-03-03
-----------------------
- Fixed security issues (Installation cross site scripting, Open redirection,
  Locale module cross site scripting, Blocked user session regeneration),
  see SA-CORE-2010-001.
- Better support for updated jQuery versions.
- Reduced resource usage of update.module.
- Fixed several issues relating to support of installation profiles and
  distributions.
- Added a locking framework to avoid data corruption on long operations.
- Fixed a variety of other bugs.

Drupal 6.15, 2009-12-16
-----------------------
- Fixed security issues (Cross site scripting), see SA-CORE-2009-009.
- Fixed a variety of other bugs.

Drupal 6.14, 2009-09-16
-----------------------
- Fixed security issues (OpenID association cross site request forgeries,
  OpenID impersonation and File upload), see SA-CORE-2009-008.
- Changed the system modules page to not run all cache rebuilds; use the
  button on the performance settings page to achieve the same effect.
- Added support for PHP 5.3.0 out of the box.
- Fixed a variety of small bugs.

Drupal 6.13, 2009-07-01
-----------------------
- Fixed security issues (Cross site scripting, Input format access bypass and
  Password leakage in URL), see SA-CORE-2009-007.
- Fixed a variety of small bugs.

Drupal 6.12, 2009-05-13
-----------------------
- Fixed security issues (Cross site scripting), see SA-CORE-2009-006.
- Fixed a variety of small bugs.

Drupal 6.11, 2009-04-29
-----------------------
- Fixed security issues (Cross site scripting and limited information
  disclosure), see SA-CORE-2009-005
- Fixed performance issues with the menu router cache, the update
  status cache and improved cache invalidation
- Fixed a variety of small bugs.

Drupal 6.10, 2009-02-25
-----------------------
- Fixed a security issue, (Local file inclusion on Windows),
  see SA-CORE-2009-003
- Fixed node_feed() so custom fields can show up in RSS feeds.
- Improved PostgreSQL compatibility.
- Fixed a variety of small bugs.

Drupal 6.9, 2009-01-14
----------------------
- Fixed security issues, (Access Bypass, Validation Bypass and Hardening
  against SQL injection), see SA-CORE-2009-001
- Made HTTP request checking more robust and informative.
- Fixed HTTP_HOST checking to work again with HTTP 1.0 clients and
  basic shell scripts.
- Removed t() calls from all schema documentation. Suggested best practice
  changed for contributed modules, see http://drupal.org/node/322731.
- Fixed a variety of small bugs.

Drupal 6.8, 2008-12-11
----------------------
- Removed a previous change incompatible with PHP 5.1.x and lower.

Drupal 6.7, 2008-12-10
----------------------
- Fixed security issues, (Cross site request forgery and Cross site scripting), see SA-2008-073
- Updated robots.txt and .htaccess to match current file use.
- Fixed a variety of small bugs.

Drupal 6.6, 2008-10-22
----------------------
- Fixed security issues, (File inclusion, Cross site scripting), see SA-2008-067
- Fixed a variety of small bugs.

Drupal 6.5, 2008-10-08
----------------------
- Fixed security issues, (File upload access bypass, Access rules bypass,
  BlogAPI access bypass), see SA-2008-060.
- Fixed a variety of small bugs.

Drupal 6.4, 2008-08-13
----------------------
- Fixed a security issue (Cross site scripting, Arbitrary file uploads via
  BlogAPI, Cross site request forgeries and Various Upload module
  vulnerabilities), see SA-2008-047.
- Improved error messages during installation.
- Fixed a bug that prevented AHAH handlers to be attached to radios widgets.
- Fixed a variety of small bugs.

Drupal 6.3, 2008-07-09
----------------------
- Fixed security issues, (Cross site scripting, cross site request forgery,
  session fixation and SQL injection), see SA-2008-044.
- Slightly modified installation process to prevent file ownership issues on
  shared hosts.
- Improved PostgreSQL compatibility (rewritten queries; custom blocks).
- Upgraded to jQuery 1.2.6.
- Performance improvements to search, menu handling and form API caches.
- Fixed Views compatibility issues (Views for Drupal 6 requires Drupal 6.3+).
- Fixed a variety of small bugs.

Drupal 6.2, 2008-04-09
----------------------
- Fixed a variety of small bugs.
- Fixed a security issue (Access bypasses), see SA-2008-026.

Drupal 6.1, 2008-02-27
----------------------
- Fixed a variety of small bugs.
- Fixed a security issue (Cross site scripting), see SA-2008-018.

Drupal 6.0, 2008-02-13
----------------------
- New, faster and better menu system.
- New watchdog as a hook functionality.
   * New hook_watchdog that can be implemented by any module to route log
     messages to various destinations.
   * Expands the severity levels from 3 (Error, Warning, Notice) to the 8
     levels defined in RFC 3164.
   * The watchdog module is now called dblog, and is optional, but enabled by
     default in the default installation profile.
   * Extended the database log module so log messages can be filtered.
   * Added syslog module: useful for monitoring large Drupal installations.
- Added optional e-mail notifications when users are approved, blocked, or
  deleted.
- Drupal works with error reporting set to E_ALL.
- Added scripts/drupal.sh to execute Drupal code from the command line. Useful
  to use Drupal as a framework to build command-line tools.
- Made signature support optional and made it possible to theme signatures.
- Made it possible to filter the URL aliases on the URL alias administration
  screen.
- Language system improvements:
    * Support for right to left languages.
    * Language detection based on parts of the URL.
    * Browser based language detection.
    * Made it possible to specify a node's language.
    * Support for translating posts on the site to different languages.
    * Language dependent path aliases.
    * Automatically import translations when adding a new language.
    * JavaScript interface translation.
    * Automatically import a module's translation upon enabling that module.
- Moved "PHP input filter" to a standalone module so it can be deleted for
  security reasons.
- Usability:
    * Improved handling of teasers in posts.
    * Added sticky table headers.
    * Check for clean URL support automatically with JavaScript.
    * Removed default/settings.php. Instead the installer will create it from
      default.settings.php.
    * Made it possible to configure your own date formats.
    * Remember anonymous comment posters.
    * Only allow modules and themes to be enabled that have explicitly been
      ported to the correct core API version.
    * Can now specify the minimum PHP version required for a module within the
      .info file.
    * Drupal core no longer requires CREATE TEMPORARY TABLES or LOCK TABLES
      database rights.
    * Dynamically check password strength and confirmation.
    * Refactored poll administration.
    * Implemented drag-and-drop positioning for blocks, menu items, taxonomy
      vocabularies and terms, forums, profile fields, and input format filters.
- Theme system:
    * Added .info files to themes and made it easier to specify regions and
      features.
    * Added theme registry: modules can directly provide .tpl.php files for
      their themes without having to create theme_ functions.
    * Used the Garland theme for the installation and maintenance pages.
    * Added theme preprocess functions for themes that are templates.
    * Added support for themeable functions in JavaScript.
- Refactored update.php to a generic batch API to be able to run time-consuming
  operations in multiple subsequent HTTP requests.
- Installer:
    * Themed the installer with the Garland theme.
    * Added form to provide initial site information during installation.
    * Added ability to provide extra installation steps programmatically.
    * Made it possible to import interface translations during installation.
- Added the HTML corrector filter:
    * Fixes faulty and chopped off HTML in postings.
    * Tags are now automatically closed at the end of the teaser.
- Performance:
    * Made it easier to conditionally load .include files and split up many core
      modules.
    * Added a JavaScript aggregator.
    * Added block-level caching, improving performance for both authenticated
      and anonymous users.
    * Made Drupal work correctly when running behind a reverse proxy like
      Squid or Pound.
- File handling improvements:
    * Entries in the files table are now keyed to a user instead of a node.
    * Added reusable validation functions to check for uploaded file sizes,
      extensions, and image resolution.
    * Added ability to create and remove temporary files during a cron job.
- Forum improvements:
    * Any node type may now be posted in a forum.
- Taxonomy improvements:
    * Descriptions for terms are now shown on taxonomy/term pages as well
      as RSS feeds.
    * Added versioning support to categories by associating them with node
      revisions.
- Added support for OpenID.
- Added support for triggering configurable actions.
- Added the Update status module to automatically check for available updates
  and warn sites if they are missing security updates or newer versions.
  Sites deploying from CVS should use http://drupal.org/project/cvs_deploy.
  Advanced settings provided by http://drupal.org/project/update_advanced.
- Upgraded the core JavaScript library to jQuery version 1.2.3.
- Added a new Schema API, which provides built-in support for core and
  contributed modules to work with databases other than MySQL.
- Removed drupal.module. The functionality lives on as the Site network
  contributed module (http://drupal.org/project/site_network).
- Removed old system updates. Updates from Drupal versions prior to 5.x will
  require upgrading to 5.x before upgrading to 6.x.

Drupal 5.23, 2010-08-11
-----------------------
- Fixed security issues (File download access bypass, Comment unpublishing
  bypass), see SA-CORE-2010-002.

Drupal 5.22, 2010-03-03
-----------------------
- Fixed security issues (Open redirection, Locale module cross site scripting,
  Blocked user session regeneration), see SA-CORE-2010-001.

Drupal 5.21, 2009-12-16
-----------------------
- Fixed a security issue (Cross site scripting), see SA-CORE-2009-009.
- Fixed a variety of small bugs.

Drupal 5.20, 2009-09-16
-----------------------
- Avoid security problems resulting from writing Drupal 6-style menu
  declarations.
- Fixed security issues (session fixation), see SA-CORE-2009-008.
- Fixed a variety of small bugs.

Drupal 5.19, 2009-07-01
-----------------------
- Fixed security issues (Cross site scripting and Password leakage in URL), see
  SA-CORE-2009-007.          
- Fixed a variety of small bugs.

Drupal 5.18, 2009-05-13
-----------------------
- Fixed security issues (Cross site scripting), see SA-CORE-2009-006.
- Fixed a variety of small bugs.

Drupal 5.17, 2009-04-29
-----------------------
- Fixed security issues (Cross site scripting and limited information
  disclosure) see SA-CORE-2009-005.
- Fixed a variety of small bugs.

Drupal 5.16, 2009-02-25
-----------------------
- Fixed a security issue, (Local file inclusion on Windows), see SA-CORE-2009-004.
- Fixed a variety of small bugs.

Drupal 5.15, 2009-01-14
-----------------------
- Fixed security issues, (Hardening against SQL injection), see
  SA-CORE-2009-001
- Fixed HTTP_HOST checking to work again with HTTP 1.0 clients and basic shell
  scripts.
- Fixed a variety of small bugs.

Drupal 5.14, 2008-12-11
-----------------------
- removed a previous change incompatible with PHP 5.1.x and lower.

Drupal 5.13, 2008-12-10
-----------------------
- fixed a variety of small bugs.
- fixed security issues, (Cross site request forgery and Cross site scripting), see SA-2008-073
- updated robots.txt and .htaccess to match current file use.

Drupal 5.12, 2008-10-22
-----------------------
- fixed security issues, (File inclusion), see SA-2008-067

Drupal 5.11, 2008-10-08
-----------------------
- fixed a variety of small bugs.
- fixed security issues, (File upload access bypass, Access rules bypass,
  BlogAPI access bypass, Node validation bypass), see SA-2008-060

Drupal 5.10, 2008-08-13
-----------------------
- fixed a variety of small bugs.
- fixed security issues, (Cross site scripting, Arbitrary file uploads via
  BlogAPI and Cross site request forgery), see SA-2008-047

Drupal 5.9, 2008-07-23
----------------------
- fixed a variety of small bugs.
- fixed security issues, (Session fixation), see SA-2008-046

Drupal 5.8, 2008-07-09
----------------------
- fixed a variety of small bugs.
- fixed security issues, (Cross site scripting, cross site request forgery, and
  session fixation), see SA-2008-044

Drupal 5.7, 2008-01-28
----------------------
- fixed the input format configuration page.
- fixed a variety of small bugs.

Drupal 5.6, 2008-01-10
----------------------
- fixed a variety of small bugs.
- fixed a security issue (Cross site request forgery), see SA-2008-005
- fixed a security issue (Cross site scripting, UTF8), see SA-2008-006
- fixed a security issue (Cross site scripting, register_globals), see SA-2008-007

Drupal 5.5, 2007-12-06
----------------------
- fixed missing missing brackets in a query in the user module.
- fixed taxonomy feed bug introduced by SA-2007-031

Drupal 5.4, 2007-12-05
----------------------
- fixed a variety of small bugs.
- fixed a security issue (SQL injection), see SA-2007-031

Drupal 5.3, 2007-10-17
----------------------
- fixed a variety of small bugs.
- fixed a security issue (HTTP response splitting), see SA-2007-024
- fixed a security issue (Arbitrary code execution via installer), see SA-2007-025
- fixed a security issue (Cross site scripting via uploads), see SA-2007-026
- fixed a security issue (User deletion cross site request forgery), see SA-2007-029
- fixed a security issue (API handling of unpublished comment), see SA-2007-030

Drupal 5.2, 2007-07-26
----------------------
- changed hook_link() $teaser argument to match documentation.
- fixed a variety of small bugs.
- fixed a security issue (cross-site request forgery), see SA-2007-017
- fixed a security issue (cross-site scripting), see SA-2007-018

Drupal 5.1, 2007-01-29
----------------------
- fixed security issue (code execution), see SA-2007-005
- fixed a variety of small bugs.

Drupal 5.0, 2007-01-15
----------------------
- Completely retooled the administration page
    * /Admin now contains an administration page which may be themed
    * Reorganised administration menu items by task and by module
    * Added a status report page with detailed PHP/MySQL/Drupal information
- Added web-based installer which can:
    * Check installation and run-time requirements
    * Automatically generate the database configuration file
    * Install pre-made installation profiles or distributions
    * Import the database structure with automatic table prefixing
    * Be localized
- Added new default Garland theme
- Added color module to change some themes' color schemes
- Included the jQuery JavaScript library 1.0.4 and converted all core JavaScript to use it
- Introduced the ability to alter mail sent from system
- Module system:
    * Added .info files for module meta-data
    * Added support for module dependencies
    * Improved module installation screen
    * Moved core modules to their own directories
    * Added support for module uninstalling
- Added support for different cache backends
- Added support for a generic "sites/all" directory.
- Usability:
    * Added support for auto-complete forms (AJAX) to user profiles.
    * Made it possible to instantly assign roles to newly created user accounts.
    * Improved configurability of the contact forms.
    * Reorganized the settings pages.
    * Made it easy to investigate popular search terms.
    * Added a 'select all' checkbox and a range select feature to administration tables.
    * Simplified the 'break' tag to split teasers from body.
    * Use proper capitalization for titles, menu items and operations.
- Integrated urlfilter.module into filter.module
- Block system:
    * Extended the block visibility settings with a role specific setting.
    * Made it possible to customize all block titles.
- Poll module:
    * Optionally allow people to inspect all votes.
    * Optionally allow people to cancel their vote.
- Distributed authentication:
    * Added default server option.
- Added default robots.txt to control crawlers.
- Database API:
    * Added db_table_exists().
- Blogapi module:
    * 'Blogapi new' and 'blogapi edit' nodeapi operations.
- User module:
    * Added hook_profile_alter().
    * E-mail verification is made optional.
    * Added mass editing and filtering on admin/user/user.
- PHP Template engine:
    * Add the ability to look for a series of suggested templates.
    * Look for page templates based upon the path.
    * Look for block templates based upon the region, module, and delta.
- Content system:
    * Made it easier for node access modules to work well with each other.
    * Added configurable content types.
    * Changed node rendering to work with structured arrays.
- Performance:
    * Improved session handling: reduces database overhead.
    * Improved access checking: reduces database overhead.
    * Made it possible to do memcached based session management.
    * Omit sidebars when serving a '404 - Page not found': saves CPU cycles and bandwidth.
    * Added an 'aggressive' caching policy.
    * Added a CSS aggregator and compressor (up to 40% faster page loads).
- Removed the archive module.
- Upgrade system:
    * Created space for update branches.
- Form API:
    * Made it possible to programmatically submit forms.
    * Improved api for multistep forms.
- Theme system:
    * Split up and removed drupal.css.
    * Added nested lists generation.
    * Added a self-clearing block class.

Drupal 4.7.11, 2008-01-10
-------------------------
- fixed a security issue (Cross site request forgery), see SA-2008-005
- fixed a security issue (Cross site scripting, UTF8), see SA-2008-006
- fixed a security issue (Cross site scripting, register_globals), see SA-2008-007

Drupal 4.7.10, 2007-12-06
-------------------------
- fixed taxonomy feed bug introduced by SA-2007-031

Drupal 4.7.9, 2007-12-05
------------------------
- fixed a security issue (SQL injection), see SA-2007-031

Drupal 4.7.8, 2007-10-17
------------------------
- fixed a security issue (HTTP response splitting), see SA-2007-024
- fixed a security issue (Cross site scripting via uploads), see SA-2007-026
- fixed a security issue (API handling of unpublished comment), see SA-2007-030

Drupal 4.7.7, 2007-07-26
------------------------
- fixed security issue (XSS), see SA-2007-018

Drupal 4.7.6, 2007-01-29
------------------------
- fixed security issue (code execution), see SA-2007-005

Drupal 4.7.5, 2007-01-05
------------------------
- Fixed security issue (XSS), see SA-2007-001
- Fixed security issue (DoS), see SA-2007-002

Drupal 4.7.4, 2006-10-18
------------------------
- Fixed security issue (XSS), see SA-2006-024
- Fixed security issue (CSRF), see SA-2006-025
- Fixed security issue (Form action attribute injection), see SA-2006-026

Drupal 4.7.3, 2006-08-02
------------------------
- Fixed security issue (XSS), see SA-2006-011

Drupal 4.7.2, 2006-06-01
------------------------
- Fixed critical upload issue, see SA-2006-007
- Fixed taxonomy XSS issue, see SA-2006-008
- Fixed a variety of small bugs.

Drupal 4.7.1, 2006-05-24
------------------------
- Fixed critical SQL issue, see SA-2006-005
- Fixed a serious upgrade related bug.
- Fixed a variety of small bugs.

Drupal 4.7.0, 2006-05-01
------------------------
- Added free tagging support.
- Added a site-wide contact form.
- Theme system:
    * Added the PHPTemplate theme engine and removed the Xtemplate engine.
    * Converted the bluemarine theme from XTemplate to PHPTemplate.
    * Converted the pushbutton theme from XTemplate to PHPTemplate.
- Usability:
    * Reworked the 'request new password' functionality.
    * Reworked the node and comment edit forms.
    * Made it easy to add nodes to the navigation menu.
    * Added site 'offline for maintenance' feature.
    * Added support for auto-complete forms (AJAX).
    * Added support for collapsible page sections (JS).
    * Added support for resizable text fields (JS).
    * Improved file upload functionality (AJAX).
    * Reorganized some settings pages.
    * Added friendly database error screens.
    * Improved styling of update.php.
- Refactored the forms API.
    * Made it possible to alter, extend or theme forms.
- Comment system:
    * Added support for "mass comment operations" to ease repetitive tasks.
    * Comment moderation has been removed.
- Node system:
    * Reworked the revision functionality.
    * Removed the bookmarklet code. Third-party modules can now handle
      This.
- Upgrade system:
    * Allows contributed modules to plug into the upgrade system.
- Profiles:
    * Added a block to display author information along with posts.
    * Added support for private profile fields.
- Statistics module:
    * Added the ability to track page generation times.
    * Made it possible to block certain IPs/hostnames.
- Block system:
    * Added support for theme-specific block regions.
- Syndication:
    * Made the aggregator module parse Atom feeds.
    * Made the aggregator generate RSS feeds.
    * Added RSS feed settings.
- XML-RPC:
    * Replaced the XML-RPC library by a better one.
- Performance:
    * Added 'loose caching' option for high-traffic sites.
    * Improved performance of path aliasing.
    * Added the ability to track page generation times.
- Internationalization:
    * Improved Unicode string handling API.
    * Added support for PHP's multibyte string module.
- Added support for PHP5's 'mysqli' extension.
- Search module:
    * Made indexer smarter and more robust.
    * Added advanced search operators (e.g. phrase, node type, ...).
    * Added customizable result ranking.
- PostgreSQL support:
    * Removed dependency on PL/pgSQL procedural language.
- Menu system:
    * Added support for external URLs.
- Queue module:
    * Removed from core.
- HTTP handling:
    * Added support for a tolerant Base URL.
    * Output URIs relative to the root, without a base tag.

Drupal 4.6.11, 2007-01-05
-------------------------
- Fixed security issue (XSS), see SA-2007-001
- Fixed security issue (DoS), see SA-2007-002

Drupal 4.6.10, 2006-10-18
-------------------------
- Fixed security issue (XSS), see SA-2006-024
- Fixed security issue (CSRF), see SA-2006-025
- Fixed security issue (Form action attribute injection), see SA-2006-026

Drupal 4.6.9, 2006-08-02
------------------------
- Fixed security issue (XSS), see SA-2006-011

Drupal 4.6.8, 2006-06-01
------------------------
- Fixed critical upload issue, see SA-2006-007
- Fixed taxonomy XSS issue, see SA-2006-008

Drupal 4.6.7, 2006-05-24
------------------------
- Fixed critical SQL issue, see SA-2006-005

Drupal 4.6.6, 2006-03-13
------------------------
- Fixed bugs, including 4 security vulnerabilities.

Drupal 4.6.5, 2005-12-12
------------------------
- Fixed bugs: no critical bugs were identified.

Drupal 4.6.4, 2005-11-30
------------------------
- Fixed bugs, including 3 security vulnerabilities.

Drupal 4.6.3, 2005-08-15
------------------------
- Fixed bugs, including a critical "arbitrary PHP code execution" bug.

Drupal 4.6.2, 2005-06-29
------------------------
- Fixed bugs, including two critical "arbitrary PHP code execution" bugs.

Drupal 4.6.1, 2005-06-01
------------------------
- Fixed bugs, including a critical input validation bug.

Drupal 4.6.0, 2005-04-15
------------------------
- PHP5 compliance
- Search:
    * Added UTF-8 support to make it work with all languages.
    * Improved search indexing algorithm.
    * Improved search output.
    * Impose a throttle on indexing of large sites.
    * Added search block.
- Syndication:
    * Made the ping module ping pingomatic.com which, in turn, will ping all the major ping services.
    * Made Drupal generate RSS 2.0 feeds.
    * Made RSS feeds extensible.
    * Added categories to RSS feeds.
    * Added enclosures to RSS feeds.
- Flood control mechanism:
    * Added a mechanism to throttle certain operations.
- Usability:
    * Refactored the block configuration pages.
    * Refactored the statistics pages.
    * Refactored the watchdog pages.
    * Refactored the throttle module configuration.
    * Refactored the access rules page.
    * Refactored the content administration page.
    * Introduced forum configuration pages.
    * Added a 'add child page' link to book pages.
- Contact module:
    * Added a simple contact module that allows users to contact each other using e-mail.
- Multi-site configuration:
    * Made it possible to run multiple sites from a single code base.
- Added an image API: enables better image handling.
- Block system:
    * Extended the block visibility settings.
- Theme system:
    * Added new theme functions.
- Database backend:
    * The PEAR database backend is no longer supported.
- Performance:
    * Improved performance of the forum topics block.
    * Improved performance of the tracker module.
    * Improved performance of the node pages.
- Documentation:
    * Improved and extended PHPDoc/Doxygen comments.

Drupal 4.5.8, 2006-03-13
------------------------
- Fixed bugs, including 3 security vulnerabilities.

Drupal 4.5.7, 2005-12-12
------------------------
- Fixed bugs: no critical bugs were identified.

Drupal 4.5.6, 2005-11-30
------------------------
- Fixed bugs, including 3 security vulnerabilities.

Drupal 4.5.5, 2005-08-15
------------------------
- Fixed bugs, including a critical "arbitrary PHP code execution" bug.

Drupal 4.5.4, 2005-06-29
------------------------
- Fixed bugs, including two critical "arbitrary PHP code execution" bugs.

Drupal 4.5.3, 2005-06-01
------------------------
- Fixed bugs, including a critical input validation bug.

Drupal 4.5.2, 2005-01-15
------------------------
- Fixed bugs: a cross-site scripting (XSS) vulnerability has been fixed.

Drupal 4.5.1, 2004-12-01
------------------------
- Fixed bugs: no critical bugs were identified.

Drupal 4.5.0, 2004-10-18
------------------------
- Navigation:
    * Made it possible to add, delete, rename and move menu items.
    * Introduced tabs and subtabs for local tasks.
    * Reorganized the navigation menus.
- User management:
    * Added support for multiple roles per user.
    * Made it possible to add custom profile fields.
    * Made it possible to browse user profiles by field.
- Node system:
    * Added support for node-level permissions.
- Comment module:
    * Made it possible to leave contact information without having to register.
- Upload module:
    * Added support for uploading documents (includes images).
- Forum module:
    * Added support for sticky forum topics.
    * Made it possible to track forum topics.
- Syndication:
    * Added support for RSS ping-notifications of http://technorati.com/.
    * Refactored the categorization of syndicated news items.
    * Added an URL alias for 'rss.xml'.
    * Improved date parsing.
- Database backend:
    * Added support for multiple database connections.
    * The PostgreSQL backend does no longer require PEAR.
- Theme system:
    * Changed all GIFs to PNGs.
    * Reorganised the handling of themes, template engines, templates and styles.
    * Unified and extended the available theme settings.
    * Added theme screenshots.
- Blocks:
    * Added 'recent comments' block.
    * Added 'categories' block.
- Blogger API:
    * Added support for auto-discovery of blogger API via RSD.
- Performance:
    * Added support for sending gzip compressed pages.
    * Improved performance of the forum module.
- Accessibility:
    * Improved the accessibility of the archive module's calendar.
    * Improved form handling and error reporting.
    * Added HTTP redirects to prevent submitting twice when refreshing right after a form submission.
- Refactored 403 (forbidden) handling and added support for custom 403 pages.
- Documentation:
    * Added PHPDoc/Doxygen comments.
- Filter system:
    * Added support for using multiple input formats on the site
    * Expanded the embedded PHP-code feature so it can be used everywhere
    * Added support for role-dependent filtering, through input formats
- UI translation:
    * Managing translations is now completely done through the administration interface
    * Added support for importing/exporting gettext .po files

Drupal 4.4.3, 2005-06-01
------------------------
- Fixed bugs, including a critical input validation bug.

Drupal 4.4.2, 2004-07-04
------------------------
- Fixed bugs: no critical bugs were identified.

Drupal 4.4.1, 2004-05-01
------------------------
- Fixed bugs: no critical bugs were identified.

Drupal 4.4.0, 2004-04-01
------------------------
- Added support for the MetaWeblog API and MovableType extensions.
- Added a file API: enables better document management.
- Improved the watchdog and search module to log search keys.
- News aggregator:
    * Added support for conditional GET.
    * Added OPML feed subscription list.
    * Added support for <image>, <pubDate>, <dc:date>, <dcterms:created>, <dcterms:issued> and <dcterms:modified>.
- Comment module:
    * Made it possible to disable the "comment viewing controls".
- Performance:
    * Improved module loading when serving cached pages.
    * Made it possible to automatically disable modules when under heavy load.
    * Made it possible to automatically disable blocks when under heavy load.
    * Improved performance and memory footprint of the locale module.
- Theme system:
    * Made all theme functions start with 'theme_'.
    * Made all theme functions return their output.
    * Migrated away from using the BaseTheme class.
    * Added many new theme functions and refactored existing theme functions.
    * Added avatar support to 'Xtemplate'.
    * Replaced theme 'UnConeD' by 'Chameleon'.
    * Replaced theme 'Marvin' by 'Pushbutton'.
- Usability:
    * Added breadcrumb navigation to all pages.
    * Made it possible to add context-sensitive help to all pages.
    * Replaced drop-down menus by radio buttons where appropriate.
    * Removed the 'magic_quotes_gpc = 0' requirement.
    * Added a 'book navigation' block.
- Accessibility:
    * Made themes degrade gracefully in absence of CSS.
    * Grouped form elements using '<fieldset>' and '<legend>' tags.
    * Added '<label>' tags to form elements.
- Refactored 404 (file not found) handling and added support for custom 404 pages.
- Improved the filter system to prevent conflicts between filters:
    * Made it possible to change the order in which filters are applied.
- Documentation:
    * Added PHPDoc/Doxygen comments.

Drupal 4.3.2, 2004-01-01
------------------------
- Fixed bugs: no critical bugs were identified.

Drupal 4.3.1, 2003-12-01
------------------------
- Fixed bugs: no critical bugs were identified.

Drupal 4.3.0, 2003-11-01
------------------------
- Added support for configurable URLs.
- Added support for sortable table columns.
- Database backend:
    * Added support for selective database table prefixing.
- Performance:
    * Optimized many SQL queries for speed by converting left joins to inner joins.
- Comment module:
    * Rewrote the comment housekeeping code to be much more efficient and scalable.
    * Changed the comment module to use the standard pager.
- User module:
    * Added support for multiple sessions per user.
    * Added support for anonymous user sessions.
- Forum module:
    * Improved the forum views and the themability thereof.
- Book module:
    * Improved integration of non-book nodes in the book outline.
- Usability:
    * Added support for "mass node operations" to ease repetitive tasks.
    * Added support for breadcrumb navigation to several modules' user pages.
    * Integrated the administration pages with the normal user pages.

Drupal 4.2.0, 2003-08-01
------------------------
- Added support for clean URLs.
- Added textarea hook and support for onload attributes: enables integration of WYSIWYG editors.
- Rewrote the RSS/RDF parser:
    * It will now use PHP's built-in XML parser to parse news feeds.
- Rewrote the administration pages:
    * Improved the navigational elements and added breadcrumb navigation.
    * Improved the look and feel.
    * Added context-sensitive help.
- Database backend:
    * Fixed numerous SQL queries to make Drupal ANSI compliant.
    * Added MSSQL database scheme.
- Search module:
    * Changed the search module to use implicit AND'ing instead of implicit OR'ing.
- Node system:
    * Replaced the "post content" permission by more fine-grained permissions.
    * Improved content submission:
        + Improved teasers: teasers are now optional, teaser length can be configured, teaser and body are edited in a single textarea, users will no longer be bothered with teasers when the post is too short for one.
        + Added the ability to preview both the short and the full version of your posts.
    * Extended the node API which allows for better integration.
    * Added default node settings to control the behavior for promotion, moderation and other options.
- Themes:
    * Replaced theme "Goofy" by "Xtemplate", a template driven theme.
- Removed the 'register_globals = on' requirement.
- Added better installation instructions.

Drupal 4.1.0, 2003-02-01
------------------------
- Collaboratively revised and expanded the Drupal documentation.
- Rewrote comment.module:
    * Reintroduced comment rating/moderation.
    * Added support for comment paging.
    * Performance improvements: improved comment caching, faster SQL queries, etc.
- Rewrote block.module:
    * Performance improvements: blocks are no longer rendered when not displayed.
- Rewrote forum.module:
    * Added a lot of features one can find in stand-alone forum software including but not limited to support for topic paging, added support for icons, rewrote the statistics module, etc.
- Rewrote statistics.module:
    * Collects access counts for each node, referrer logs, number of users/guests.
    * Export blocks displaying top viewed nodes over last 24 hour period, top viewed nodes over all time, last nodes viewed, how many users/guest online.
- Added throttle.module:
    * Auto-throttle congestion control mechanism: Drupal can adapt itself based on the server load.
- Added profile.module:
    * Enables to extend the user and registration page.
- Added pager support to the main page.
- Replaced weblogs.module by ping.module:
    * Added support for normal and RSS notifications of http://blo.gs/.
    * Added support for RSS ping-notifications of http://weblogs.com/.
- Removed the rating module
- Themes:
    * Removed a significant portion of hard-coded mark-up.

Drupal 4.0.0, 2002-06-15
------------------------
- Added tracker.module:
    * Replaces the previous "your [site]" links (recent comments and nodes).
- Added weblogs.module:
    * This will ping weblogs.com when new content is promoted.
- Added taxonomy module which replaces the meta module.
    * Supports relations, hierarchies and synonyms.
- Added a caching system:
    * Speeds up pages for anonymous users and reduces system load.
- Added support for external SMTP libraries.
- Added an archive extension to the calendar.
- Added support for the Blogger API.
- Themes:
    * Cleaned up the theme system.
    * Moved themes that are not maintained to contributions CVS repository.
- Database backend:
    * Changed to PEAR database abstraction layer.
    * Using ANSI SQL queries to be more portable.
- Rewrote the user system:
    * Added support for Drupal authentication through XML-RPC and through a Jabber server.
    * Added support for modules to add more user data.
    * Users may delete their own account.
    * Added who's new and who's online blocks.
- Changed block system:
    * Various hard coded blocks are now dynamic.
    * Blocks can now be enabled and/or be set by the user.
    * Blocks can be set to only show up on some pages.
    * Merged box module with block module.
- Node system:
    * Blogs can be updated.
    * Teasers (abstracts) on all node types.
    * Improved error checking.
    * Content versioning support.
    * Usability improvements.
- Improved book module to support text, HTML and PHP pages.
- Improved comment module to mark new comments.
- Added a general outliner which will let any node type be linked to a book.
- Added an update script that lets you upgrade from previous releases or on a day to day basis when using the development tree.
- Search module:
    * Improved the search system by making it context sensitive.
    * Added indexing.
- Various updates:
    * Changed output to valid XHTML.
    * Improved multiple sites using the same Drupal database support.
    * Added support for session IDs in URLs instead of cookies.
    * Made the type of content on the front page configurable.
    * Made each cloud site have its own settings.
    * Modules and themes can now be enabled/disabled using the administration pages.
    * Added URL abstraction for links.
    * Usability changes (renamed links, better UI, etc).
- Collaboratively revised and expanded the Drupal documentation.

Drupal 3.0.1, 2001-10-15
------------------------
- Various updates:
    * Added missing translations
    * Updated the themes: tidied up some HTML code and added new Drupal logos.

Drupal 3.0.0, 2001-09-15
------------------------
- Major overhaul of the entire underlying design:
    * Everything is based on nodes: nodes are a conceptual "black box" to couple and manage different types of content and that promotes reusing existing code, thus reducing the complexity and size of Drupal as well as improving long-term stability.
- Rewrote submission/moderation queue and renamed it to queue.module.
- Removed FAQ and documentation module and merged them into a "book module".
- Removed ban module and integrated it into account.module as "access control":
    * Access control is based on much more powerful regular expressions (regex) now rather than on MySQL pattern matching.
- Rewrote watchdog and submission throttle:
    * Improved watchdog messages and added watchdog filter.
- Rewrote headline code and renamed it to import.module and export.module:
    * Added various improvements, including a better parser, bundles and better control over individual feeds.
- Rewrote section code and renamed it to meta.module:
    * Supports unlimited amount of nested topics. Topics can be nested to create a multi-level hierarchy.
- Rewrote configuration file resolving:
    * Drupal tries to locate a configuration file that matches your domain name or uses conf.php if the former failed. Note also that the configuration files got renamed from .conf to .php for security's sake on mal-configured Drupal sites.
- Added caching support which makes Drupal extremely scalable.
- Added access.module:
    * Allows you to set up 'roles' (groups) and to bind a set of permissions to each group.
- Added blog.module.
- Added poll.module.
- Added system.module:
    * Moved most of the configuration options from hostname.conf to the new administration section.
    * Added support for custom "filters".
- Added statistics.module
- Added moderate.module:
    * Allows to assign users editorial/moderator rights to certain nodes or topics.
- Added page.module:
    * Allows creation of static (and dynamic) pages through the administration interface.
- Added help.module:
    * Groups all available module documentation on a single page.
- Added forum.module:
    * Added an integrated forum.
- Added cvs.module and cvs-to-sql.pl:
    * Allows to display and mail CVS log messages as daily digests.
- Added book.module:
    * Allows collaborative handbook writing: primary used for Drupal documentation.
- Removed cron.module and integrated it into conf.module.
- Removed module.module as it was no longer needed.
- Various updates:
    * Added "auto-post new submissions" feature versus "moderate new submissions".
    * Introduced links/Drupal tags: [[link]]
    * Added preview functionality when submitting new content (such as a story) from the administration pages.
    * Made the administration section only show those links a user has access to.
    * Made all modules use specific form_* functions to guarantee a rock-solid forms and more consistent layout.
    * Improved scheduler:
        + Content can be scheduled to be 'posted', 'queued' and 'hidden'.
    * Improved account module:
        + Added "access control" to allow/deny certain usernames/e-mail addresses/hostnames.
    * Improved locale module:
        + Added new overview to easy the translation process.
    * Improved comment module:
        + Made it possible to permanently delete comments.
    * Improved rating module
    * Improved story module:
        + Added preview functionality for administrators.
        + Made it possible to permanently delete stories.
    * Improved themes:
        + W3C validation on a best effort basis.
        + Removed $theme->control() from themes.
        + Added theme "goofy".
- Collaboratively revised and expanded the Drupal documentation.

Drupal 2.0.0, 2001-03-15
------------------------
- Rewrote the comment/discussion code:
    * Comment navigation should be less confusing now.
    * Additional/alternative display and order methods have been added.
    * Modules can be extended with a "comment system": modules can embed the existing comment system without having to write their own, duplicate comment system.
- Added sections and section manager:
    * Story sections can be maintained from the administration pages.
    * Story sections make the open submission more adaptive in that you can set individual post, dump and expiration thresholds for each section according to the story type and urgency level: stories in certain sections do not "expire" and might stay interesting and active as time passes by, whereas news-related stories are only considered "hot" over a short period of time.
- Multiple vhosts + multiple directories:
    * You can set up multiple Drupal sites on top of the same physical source tree either by using vhosts or sub-directories.
- Added "user ratings" similar to SlashCode's Karma or Scoop's Mojo:
    * All rating logic is packed into a module to ease experimenting with different rating heuristics/algorithms.
- Added "search infrastructure":
    * Improved search page and integrated search functionality in the administration pages.
- Added translation / localization / internationalization support:
    * Because many people would love to see their website showing a lot less of English, and far more of their own language, Drupal provides a framework to set up a multi-lingual website or to overwrite the default English text in English.
- Added fine-grained user permission (or group) system:
    * Users can be granted access to specific administration sections. Example: a FAQ maintainer can be given access to maintain the FAQ and translators can be given access to the translation pages.
- Added FAQ module
- Changed the "open submission queue" into a (optional) module.
- Various updates:
    * Improved account module:
        + User accounts can be deleted.
        + Added fine-grained permission support.
    * Improved block module
    * Improved diary module:
        + Diary entries can be deleted
    * Improved headline module:
        + Improved parser to support more "generic" RDF/RSS/XML backend.
    * Improved module module
    * Improved watchdog module
    * Improved database abstraction layer
    * Improved themes:
        + W3C validation on a best effort basis
        + Added theme "example" (alias "Stone Age")
    * Added new scripts to directory "scripts"
    * Added directory "misc"
    * Added CREDITS file
- Revised documentation

Drupal 1.0.0, 2001-01-15
------------------------
- Initial release

File

drupal/CHANGELOG.txt
View source
  1. Drupal 7.xx, xxxx-xx-xx (development version)
  2. -----------------------
  3. - File upload validation functions and hook_file_validate() implementations are
  4. now always passed the correct file URI.
  5. - The default form cache expiration of 6 hours is now configurable (API
  6. addition: https://www.drupal.org/node/2857751).
  7. - Allowed callers of drupal_http_request() to optionally specify an explicit
  8. Host header.
  9. Drupal 7.56, 2017-06-21
  10. -----------------------
  11. - Fixed security issues (access bypass). See SA-CORE-2017-003.
  12. Drupal 7.55, 2017-06-07
  13. -----------------------
  14. - Fixed incompatibility with PHP versions 7.0.19 and 7.1.5 due to duplicate
  15. DATE_RFC7231 definition.
  16. - Made Drupal core pass all automated tests on PHP 7.1.
  17. - Allowed services such as Let's Encrypt to work with Drupal on Apache, by
  18. making Drupal's .htaccess file allow access to the .well-known directory
  19. defined by RFC 5785.
  20. - Made new Drupal sites work correctly on Apache 2.4 when the mod_access_compat
  21. Apache module is disabled.
  22. - Fixed Drupal's URL-generating functions to always encode '[' and ']' so that
  23. the URLs will pass HTML5 validation.
  24. - Various additional bug fixes.
  25. - Various API documentation improvements.
  26. - Additional automated test coverage.
  27. Drupal 7.54, 2017-02-01
  28. -----------------------
  29. - Modules are now able to define theme engines (API addition:
  30. https://www.drupal.org/node/2826480).
  31. - Logging of searches can now be disabled (new option in the administrative
  32. interface).
  33. - Added menu tree render structure to (pre-)process hooks for theme_menu_tree()
  34. (API addition: https://www.drupal.org/node/2827134).
  35. - Added new function for determining whether an HTTPS request is being served
  36. (API addition: https://www.drupal.org/node/2824590).
  37. - Fixed incorrect default value for short and medium date formats on the date
  38. type configuration page.
  39. - File validation error message is now removed after subsequent upload of valid
  40. file.
  41. - Numerous bug fixes.
  42. - Numerous API documentation improvements.
  43. - Additional performance improvements.
  44. - Additional automated test coverage.
  45. Drupal 7.53, 2016-12-07
  46. -----------------------
  47. - Fixed drag and drop support on newer Chrome/IE 11+ versions after 7.51 update
  48. when jQuery is updated to 1.7-1.11.0.
  49. Drupal 7.52, 2016-11-16
  50. -----------------------
  51. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2016-005.
  52. Drupal 7.51, 2016-10-05
  53. -----------------------
  54. - The Update module now also checks for updates to a disabled theme that is
  55. used as an admin theme.
  56. - Exceptions thrown in dblog_watchdog() are now caught and ignored.
  57. - Clarified the warning that appears when modules are missing or have moved.
  58. - Log messages are now XSS filtered on display.
  59. - Draggable tables now work on touch screen devices.
  60. - Added a setting for allowing double underscores in CSS identifiers
  61. (https://www.drupal.org/node/2810369).
  62. - If a user navigates away from a page while an Ajax request is running they
  63. will no longer get an error message saying "An Ajax HTTP request terminated
  64. abnormally".
  65. - The system_region_list() API function now takes an optional third parameter
  66. which allows region name translations to be skipped when they are not needed
  67. (API addition: https://www.drupal.org/node/2810365).
  68. - Numerous performance improvements.
  69. - Numerous bug fixes.
  70. - Numerous API documentation improvements.
  71. - Additional automated test coverage.
  72. Drupal 7.50, 2016-07-07
  73. -----------------------
  74. - Added a new "administer fields" permission for trusted users, which is
  75. required in addition to other permissions to use the field UI
  76. (https://www.drupal.org/node/2483307).
  77. - Added clickjacking protection to Drupal core by setting the X-Frame-Options
  78. header to SAMEORIGIN by default (https://www.drupal.org/node/2735873).
  79. - Added support for full UTF-8 (emojis, Asian symbols, mathematical symbols) on
  80. MySQL and other database drivers when the site and database are configured to
  81. allow it (https://www.drupal.org/node/2761183).
  82. - Improved performance by avoiding a re-scan of directories when a file is
  83. missing; instead, trigger a PHP warning (minor API change:
  84. https://www.drupal.org/node/2581445).
  85. - Made it possible to use any PHP callable in Ajax form callbacks, form API
  86. form-building functions, and form API wrapper callbacks (API addition:
  87. https://www.drupal.org/node/2761169).
  88. - Fixed that following a password reset link while logged in leaves users unable
  89. to change their password (minor user interface change:
  90. https://www.drupal.org/node/2759023).
  91. - Implemented various fixes for automated test failures on PHP 5.4+ and PHP 7.
  92. Drupal core automated tests now pass in these environments.
  93. - Improved support for PHP 7 by fixing various problems.
  94. - Fixed various bugs with PHP 5.5+ imagerotate(), including when incorrect
  95. color indices are passed in.
  96. - Fixed a regression introduced in Drupal 7.43 that allowed files uploaded by
  97. anonymous users to be lost after form validation errors, and that also caused
  98. regressions with certain contributed modules.
  99. - Fixed a regression introduced in Drupal 7.36 which caused the default value
  100. of hidden textarea fields to be ignored.
  101. - Fixed robots.txt to allow search engines to access CSS, JavaScript and image
  102. files.
  103. - Changed wording on the Update Manager settings page to clarify that the
  104. option to check for disabled module updates also applies to uninstalled
  105. modules (administrative-facing translatable string change).
  106. - Changed the help text when editing menu links and configuring URL redirect
  107. actions so that it does not reference "Drupal" or the drupal.org website
  108. (administrative-facing translatable string change).
  109. - Fixed the locale safety check that is used to ensure that translations are
  110. safe to allow for tokens in the href/src attributes of translated strings.
  111. - Fixed that URL generation only works on port 80 when using domain based
  112. language negotation.
  113. - Made method="get" forms work inside the administrative overlay. The fix adds
  114. a new hidden field to these forms when they appear inside the overlay (minor
  115. data structure change).
  116. - Increased maxlength of menu link title input fields in the node form and
  117. menu link form from 128 to 255 characters.
  118. - Removed meaningless post-check=0 and pre-check=0 cache control headers from
  119. Drupal HTTP responses.
  120. - Added a .editorconfig file to auto-configure editors that support it.
  121. - Added --directory option to run-tests.sh for easier test discovery of all
  122. tests within a project.
  123. - Made run-tests.sh exit with a failure code when there are test fails or
  124. problems running the script.
  125. - Fixed that cookies from previous tests are still present when a new test
  126. starts in DrupalWebTestCase.
  127. - Improved performance of queries on the {authmap} database table.
  128. - Fixed handling of missing files and functions inside the registry.
  129. - Fixed Ajax handling for tableselect form elements that use checkboxes.
  130. - Fixed a bug which caused ip_address() to return nothing when the client IP
  131. address and proxy IP address are the same.
  132. - Added a new option to format_xml_elements() to allow for already encoded
  133. values.
  134. - Changed the {history} table's node ID field to be an unsigned integer, to
  135. match the same field in the {node} table and to prevent errors with very
  136. large node IDs.
  137. - Added an explicit page callback to the "admin/people/create" menu item in the
  138. User module (minor data structure change). Previously this automatically
  139. inherited the page callback from the parent "admin/people" menu item, which
  140. broke contributed modules that override the "admin/people" page.
  141. - Numerous small bug fixes.
  142. - Numerous API documentation improvements.
  143. - Additional automated test coverage.
  144. Drupal 7.44, 2016-06-15
  145. -----------------------
  146. - Fixed security issues (privilege escalation). See SA-CORE-2016-002.
  147. Drupal 7.43, 2016-02-24
  148. -----------------------
  149. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2016-001.
  150. Drupal 7.42, 2016-02-03
  151. -----------------------
  152. - Stopped invoking hook_flush_caches() on every cron run, since some modules
  153. use that hook for expensive operations that are only needed on cache clears.
  154. - Changed the default .htaccess and web.config to block Composer-related files.
  155. - Added static caching to module_load_include() to improve performance.
  156. - Fixed double-encoding bugs in select field widgets provided by the Options
  157. module. The fix deprecates the 'strip_tags' property on option widgets and
  158. replaces it with a new 'strip_tags_and_unescape' property (minor data
  159. structure change).
  160. - Improved MySQL 5.7 support by changing the MySQL database driver to stop
  161. using the ANSI SQL mode alias, which has different meanings for different
  162. MySQL versions.
  163. - Fixed a regression introduced in Drupal 7.39 which prevented autocomplete
  164. functionality from working on servers that are not configured to
  165. automatically recognize index.php.
  166. - Updated the Archive_Tar PEAR package to the latest 1.4.0 release, to fix bugs
  167. with tar file handling on various operating systems.
  168. - Fixed fatal errors on node preview when a field is displayed in the node
  169. teaser but hidden in the full node view. The fix removes a
  170. field_attach_prepare_view() call from the node_preview() function since it is
  171. redundant with one in the node preview theme layer.
  172. - Improved the description of the "Trimmed" format option on text fields
  173. (translatable string change, and minor UI and data structure change).
  174. - Numerous small bug fixes.
  175. - Numerous API documentation improvements.
  176. - Additional automated test coverage.
  177. Drupal 7.41, 2015-10-21
  178. -----------------------
  179. - Fixed security issues (open redirect). See SA-CORE-2015-004.
  180. Drupal 7.40, 2015-10-14
  181. -----------------------
  182. - Made Drupal's code for parsing .info files run much faster and use much less
  183. memory.
  184. - Prevented drupal_http_request() from returning an error when it receives a
  185. 201 through 206 HTTP status code.
  186. - Added support for autoloading traits via the registry on sites running PHP
  187. 5.4 or higher.
  188. - Allowed the user-picture.tpl.php theme template to have HTML classes besides
  189. the default "user-picture" class printed in it (markup change).
  190. - Fixed the URL text filter to convert e-mail addresses with plus signs into
  191. mailto: links.
  192. - Added alternate text to file icons displayed by the File module, to improve
  193. accessibility (string change, and minor API addition to theme_file_icon()).
  194. - Changed one-time login link failure messages to be displayed as errors or
  195. warnings as appropriate, rather than as regular status messages (minor UI
  196. change and data structure change).
  197. - Changed the default settings.php configuration to exclude private files from
  198. the "404_fast_paths" behavior.
  199. - Changed the page that displays filter tips for a particular text format, for
  200. example filter/tips/full_html, to return "page not found" or "access denied"
  201. if the format does not exist or the user does not have access to it. This
  202. change adds a new menu item to the Filter module's hook_menu() entry (minor
  203. data structure change).
  204. - Added a new hook, hook_block_cid_parts_alter(), to allow modules to alter the
  205. cache keys used for caching a particular block.
  206. - Made drupal_set_message() display and return messages when "0" is passed in
  207. as the message to set.
  208. - Fixed non-functional "Files displayed by default" setting on file fields.
  209. - The "worker callback" provided in hook_cron_queue_info() and the "finished"
  210. callback specified during batch processing can now be any PHP callable
  211. instead of just functions.
  212. - Prevented drupal_set_time_limit() from decreasing the time limit in the case
  213. where the PHP maximum execution time is already unlimited.
  214. - Changed the default thousand marker for numeric fields from a space ("1 000")
  215. to nothing ("1000") (minor UI change: https://www.drupal.org/node/1388376).
  216. - Prevented malformed theme .info files (without a "name" key) from causing
  217. exceptions during menu rebuilds. If an .info file without a "name" key is
  218. found in a module or theme directory, Drupal will now use the module or
  219. theme's machine name as the display name instead.
  220. - Made the format column in the {date_format_locale} database table
  221. case-sensitive, to match the equivalent column in the {date_formats} table.
  222. - Fixed a bug in the Statistics module that caused JavaScript files attached to
  223. a node while it is being viewed to be omitted from the page.
  224. - Added an optional 'project:' prefix that can be added to dependencies in a
  225. module's .info file to indicate which project the dependency resides in (API
  226. addition: https://www.drupal.org/node/2299747).
  227. - Fixed various bugs that occurred after hooks were invoked early in the Drupal
  228. bootstrap and that caused module_implements() and drupal_alter() to cache an
  229. incomplete set of hook implementations for later use.
  230. - Set the X-Content-Type-Options header to "nosniff" when possible, to prevent
  231. certain web browsers from picking an unsafe MIME type.
  232. - Prevented the database API from executing multiple queries at once on MySQL,
  233. if the site's PHP version is new enough to do so. This is a secondary defense
  234. against SQL injection (API change: https://www.drupal.org/node/2463973).
  235. - Fixed a bug in the Drupal 6 to Drupal 7 upgrade path which caused the upgrade
  236. to fail when there were multiple file records pointing to the same file.
  237. - Numerous small bug fixes.
  238. - Numerous API documentation improvements.
  239. - Additional automated test coverage.
  240. Drupal 7.39, 2015-08-19
  241. -----------------------
  242. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-003.
  243. Drupal 7.38, 2015-06-17
  244. -----------------------
  245. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-002.
  246. Drupal 7.37, 2015-05-07
  247. -----------------------
  248. - Fixed a regression in Drupal 7.36 which caused certain kinds of content types
  249. to become disabled if they were defined by a no-longer-enabled module.
  250. - Removed a confusing description regarding automatic time zone detection from
  251. the user account form (minor UI and data structure change).
  252. - Allowed custom HTML tags with a dash in the name to pass through filter_xss()
  253. when specified in the list of allowed tags.
  254. - Allowed hook_field_schema() implementations to specify indexes for fields
  255. based on a fixed-length column prefix (rather than the entire column), as was
  256. already allowed in hook_schema() implementations.
  257. - Fixed PDO exceptions on PostgreSQL when accessing invalid entity URLs.
  258. - Added a sites/all/libraries folder to the codebase, with instructions for
  259. using it.
  260. - Added a description to the "Administer text formats and filters" permission
  261. on the Permissions page (string change).
  262. - Numerous small bug fixes.
  263. - Numerous API documentation improvements.
  264. - Additional automated test coverage.
  265. Drupal 7.36, 2015-04-01
  266. -----------------------
  267. - Added a 'file_public_schema' variable which allows modules that define
  268. publicly-accessible streams in hook_stream_wrappers() to bypass file download
  269. access checks when processing managed file upload fields.
  270. - Fixed a bug that caused database query tags not to be added to search-related
  271. database queries under many circumstances, and which prevented the
  272. corresponding hook_query_TAG_alter() implementations from being called.
  273. - Fixed the "for" attribute on managed file upload field labels to improve
  274. accessibility (minor markup change).
  275. - Added a 'javascript_always_use_jquery' variable which can be set to FALSE by
  276. sites that may not need jQuery loaded on all pages, and a 'requires_jquery'
  277. option to drupal_add_js() which modules can set to FALSE when adding
  278. JavaScript files that have no dependency on jQuery (API addition:
  279. https://www.drupal.org/node/2462717).
  280. - Fixed incorrect foreign keys in the User module's role_permission and
  281. users_roles database tables.
  282. - Changed permission descriptions throughout Drupal core to consistently link
  283. to relevant administrative pages, regardless of whether the user viewing the
  284. Permissions page can view the page being linked to (minor UI change).
  285. - Fixed the drupal_add_region_content() function so that it actually adds
  286. content to the page.
  287. - Added an 'image_suppress_itok_output' variable to allow sites already using
  288. the existing 'image_allow_insecure_derivatives' variable to also prevent
  289. security tokens from appearing in image derivative URLs.
  290. - Fixed double-escaping of theme names in the Block module administrative
  291. interface (minor string change).
  292. - Added basic support for Xdebug when running automated tests.
  293. - Fixed a bug which caused previewing a node to remove elements from the node
  294. being edited. With this fix, calling node_preview() will no longer modify the
  295. passed-in node object (minor API change).
  296. - Added a user_has_role() function to check whether a user has a particular
  297. role (API addition: https://www.drupal.org/node/2462411).
  298. - Fixed installation failures when an opcode cache is enabled.
  299. - Fixed a bug in the Drupal 6 to Drupal 7 upgrade path which caused private
  300. files to be inaccessible.
  301. - Fixed a bug in the Drupal 6 to Drupal 7 upgrade path which caused user
  302. pictures to be lost.
  303. - Fixed missing language code in hook_field_attach_view_alter() when it is
  304. invoked from field_view_field().
  305. - Stopped sending ETag and Last-Modified headers for uncached page requests,
  306. since they break caching for certain Varnish and Nginx configurations.
  307. - Changed the Simpletest module to allow PSR-4 test classes to be used in
  308. Drupal 7.
  309. - Fixed a fatal error that occurred when using the Comment module's "Unpublish
  310. comment containing keyword(s)" action.
  311. - Changed the "lang" attribute on language links to "xml:lang" so it validates
  312. as XHTML (minor markup change).
  313. - Prevented the form API from allowing arrays to be submitted for various form
  314. elements, such as textfields, textareas, and password fields (API change:
  315. https://www.drupal.org/node/2462723).
  316. - Fixed a bug in the Contact module which caused the global user object to have
  317. the incorrect name and e-mail address during the remainder of the page
  318. request after the contact form is submitted.
  319. - Numerous small bug fixes.
  320. - Numerous API documentation improvements.
  321. - Additional automated test coverage.
  322. Drupal 7.35, 2015-03-18
  323. -----------------------
  324. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-001.
  325. Drupal 7.34, 2014-11-19
  326. -----------------------
  327. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-006.
  328. Drupal 7.33, 2014-11-07
  329. -----------------------
  330. - Began storing the file modification time of each module and theme in the
  331. {system} database table so that contributed modules can use it to identify
  332. recently changed modules and themes (minor data structure change to the
  333. return value of system_get_info() and other related functions).
  334. - Added a "Did you mean?" feature to the run-tests.sh script for running
  335. automated tests from the command line, to help developers who are attempting
  336. to run a particular test class or group.
  337. - Changed the date format used in various HTTP headers output by Drupal core
  338. from RFC 1123 format to RFC 7231 format.
  339. - Added a "block_cache_bypass_node_grants" variable to allow sites which have
  340. node access modules enabled to use the block cache if desired (API addition).
  341. - Made image derivative generation HTTP requests return a 404 error (rather
  342. than a 500 error) when the source image does not exist.
  343. - Fixed a bug which caused user pictures to be removed from the user object
  344. after saving, and resulted in data loss if the user account was subsequently
  345. re-saved.
  346. - Fixed a bug in which field_has_data() did not return TRUE for fields that
  347. only had data in older entity revisions, leading to loss of the field's data
  348. when the field configuration was edited.
  349. - Fixed a bug which caused the Ajax progress throbber to appear misaligned in
  350. many situatons (minor styling change).
  351. - Prevented the Bartik theme from lower-casing the "Permalink" link on
  352. comments, for improved multilingual support (minor UI change).
  353. - Added a "preferred_menu_links" tag to the database query that is used by
  354. menu_link_get_preferred() to find the preferred menu link for a given path,
  355. to make it easier to alter.
  356. - Increased the maximum allowed length of block titles to 255 characters
  357. (database schema change to the {block} table).
  358. - Removed the Field module's field_modules_uninstalled() function, since it did
  359. not do anything when it was invoked.
  360. - Added a "theme_hook_original" variable to templates and theme functions and
  361. an optional sitewide theme debug mode, to provide contextual information in
  362. the page's HTML to theme developers. The theme debug mode is based on the one
  363. used with Twig in Drupal 8 and can be accessed by setting the "theme_debug"
  364. variable to TRUE (API addition).
  365. - Added an entity_view_mode_prepare() API function to allow entity-defining
  366. modules to properly invoke hook_entity_view_mode_alter(), and used it
  367. throughout Drupal core to fix bugs with the invocation of that hook (API
  368. change: https://www.drupal.org/node/2369141).
  369. - Security improvement: Made the database API's orderBy() method sanitize the
  370. sort direction ("ASC" or "DESC") for queries built with db_select(), so that
  371. calling code does not have to.
  372. - Changed the RDF module to consistently output RDF metadata for nodes and
  373. comments near where the node is rendered in the HTML (minor markup and data
  374. structure change).
  375. - Added an HTML class to RDFa metatags throughout Drupal to prevent them from
  376. accidentally affecting the site appearance (minor markup change).
  377. - Fixed a bug in the Unicode requirements check which prevented installing
  378. Drupal on PHP 5.6.
  379. - Fixed a bug which caused drupal_get_bootstrap_phase() to abort the bootstrap
  380. when called early in the page request.
  381. - Renamed the "Search result" view mode to "Search result highlighting input"
  382. to better reflect how it is used (UI change).
  383. - Improved database queries generated by EntityFieldQuery in the case where
  384. delta or language condition groups are used, to reduce the number of INNER
  385. JOINs (this is a minor data structure change affecting code which implements
  386. hook_query_alter() on these queries).
  387. - Removed special-case behavior for file uploads which allowed user #1 to
  388. bypass maximum file size and user quota limits.
  389. - Numerous small bug fixes.
  390. - Numerous API documentation improvements.
  391. - Additional automated test coverage.
  392. Drupal 7.32, 2014-10-15
  393. -----------------------
  394. - Fixed security issues (SQL injection). See SA-CORE-2014-005.
  395. Drupal 7.31, 2014-08-06
  396. -----------------------
  397. - Fixed security issues (denial of service). See SA-CORE-2014-004.
  398. Drupal 7.30, 2014-07-24
  399. -----------------------
  400. - Fixed a regression introduced in Drupal 7.29 that caused files or images
  401. attached to taxonomy terms to be deleted when the taxonomy term was edited
  402. and resaved (and other related bugs with contributed and custom modules).
  403. - Added a warning on the permissions page to recommend restricting access to
  404. the "View site reports" permission to trusted administrators. See
  405. DRUPAL-PSA-2014-002.
  406. - Numerous API documentation improvements.
  407. - Additional automated test coverage.
  408. Drupal 7.29, 2014-07-16
  409. -----------------------
  410. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-003.
  411. Drupal 7.28, 2014-05-08
  412. -----------------------
  413. - Fixed a regression introduced in Drupal 7.27 that caused JavaScript to break
  414. on older browsers (such as Internet Explorer 8 and earlier) when Ajax was
  415. used.
  416. - Increased the timeout used by the Update Manager module when it fetches data
  417. from drupal.org (from 5 seconds to 30 seconds), to work around a problem
  418. which causes incomplete information about security updates to be presented to
  419. site administrators. This fix may lead to a performance slowdown on the
  420. Update Manager administration pages, when installing Drupal distributions,
  421. and (for sites that use the automated cron feature) on occasional page loads
  422. by site visitors.
  423. - Fixed the behavior of the token system's "[node:summary]" token when the body
  424. field does not have a manual summary.
  425. - Changed the behavior of db_query_temporary() so that it works on SELECT
  426. queries even when they have leading comments/whitespace. A side effect of
  427. this fix is that db_query_temporary() will now fail with an error if it is
  428. ever used on non-SELECT queries.
  429. - Added a "node_admin_filter" tag to the database query used to build the list
  430. of nodes on the content administration page, to make it easier to alter.
  431. - Made the cron queue system log any exceptions that are thrown while an item
  432. in the queue is being processed, rather than stopping the entire PHP request.
  433. - Improved screen reader support by adding an aria-live HTML attribute to file
  434. upload fields when there is an error uploading the file (minor markup
  435. change).
  436. - Made the pager on the Tracker module listing pages show the same number of
  437. items as other pagers throughout Drupal core (minor UI change).
  438. - Fixed a bug which caused caches not to be properly cleared when a file entity
  439. was saved or deleted.
  440. - Added several missing countries to the default list returned by
  441. country_get_list() (string change).
  442. - Replaced the term "weight" with "influence" in the content ranking settings
  443. for search, and added help text for administrators (string change).
  444. - Fixed untranslatable text strings in the administrative interface for the
  445. "Crop" effect provided by the Image module (minor string change).
  446. - Fixed a bug in the Taxonomy module update function introduced in Drupal 7.26
  447. that caused memory and CPU problems on sites with very large numbers of
  448. unpublished nodes.
  449. - Numerous small bug fixes.
  450. - Numerous API documentation improvements.
  451. - Additional automated test coverage.
  452. Drupal 7.27, 2014-04-16
  453. -----------------------
  454. - Fixed security issues (information disclosure). See SA-CORE-2014-002.
  455. Drupal 7.26, 2014-01-15
  456. -----------------------
  457. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-001.
  458. Drupal 7.25, 2014-01-02
  459. -----------------------
  460. - Fixed a bug in node_save() which prevented the saved node from being updated
  461. in hook_node_insert() and other similar hooks.
  462. - Added a meta tag to install.php to prevent it from being indexed by search
  463. engines even when Drupal is installed in a subfolder (minor markup change).
  464. - Fixed a bug in the database API that caused frequent deadlock errors when
  465. running merge queries on some servers.
  466. - Performance improvement: Prevented block rehashing from writing blocks to the
  467. database on every cache clear and cron run when the blocks have not changed.
  468. This fix results in an extra 'saved' key which is added and set to TRUE for
  469. each block returned by _block_rehash() that actually is saved to the database
  470. (data structure change).
  471. - Added an optional 'skip on cron' parameter to hook_cron_queue_info() to allow
  472. queues to avoid being automatically processed on cron runs (API addition).
  473. - Fixed a bug which caused hook_block_view_MODULE_DELTA_alter() to never be
  474. invoked if the block delta had a hyphen in it. To implement the hook when the
  475. block delta has a hyphen, modules should now replace hyphens with underscores
  476. when constructing the function name for the hook implementation.
  477. - Fixed a bug which caused cached pages to sometimes be sent to the browser
  478. with incorrect compression. The fix adds a new 'page_compressed' key to the
  479. $cache->data array returned by drupal_page_get_cache() (minor data structure
  480. change).
  481. - Fixed broken tests on PHP 5.5.
  482. - Made the File and Image modules more robust when saving entities that have
  483. deleted files attached. The code in file_field_presave() will now remove the
  484. record of the deleted file from the entity before saving (minor data
  485. structure change).
  486. - Standardized menu callback functions throughout Drupal core to return
  487. MENU_NOT_FOUND and MENU_ACCESS_DENIED rather than printing their own "page
  488. not found" or "access denied" pages (minor API change in the return value of
  489. these functions under some circumstances).
  490. - Fixed a bug in which caches were not properly cleared when a node was deleted
  491. via the administrative interface.
  492. - Changed the Bartik theme to render content contained in
    ,  and
    
  493. similar tags in a larger font size, so it is easier to read.
  494. - Fixed a bug in the Search module that caused exceptions to be thrown during
  495. searches if the server was not configured to represent decimal points as a
  496. period.
  497. - Fixed a regression in the Image module that made image_style_url() not work
  498. when a relative path (rather than a complete file URI) was passed to it.
  499. - Added an optional feature to the Statistics module to allow node views to be
  500. tracked by Ajax requests rather than during the server-side generation of the
  501. page. This allows the node counter to work on sites that use external page
  502. caches (string change and new administrative option:
  503. https://drupal.org/node/2164069).
  504. - Added a link to the drupal.org documentation page for cron to the Cron
  505. settings page (string change).
  506. - Added a 'drupal_anonymous_user_object' variable to allow the anonymous user
  507. object returned by drupal_anonymous_user() to be overridden with a classed
  508. object (API addition).
  509. - Changed the database API to allow inserts based on a SELECT * query to work
  510. correctly.
  511. - Changed the database schema of the {file_managed} table to allow Drupal to
  512. manage files larger than 4 GB.
  513. - Changed the File module's hook_field_load() implementation to prevent file
  514. entity properties which have the same name as file or image field properties
  515. from overwriting the field properties (minor API change).
  516. - Numerous small bug fixes.
  517. - Numerous API documentation improvements.
  518. - Additional automated test coverage.
  519. Drupal 7.24, 2013-11-20
  520. -----------------------
  521. - Fixed security issues (multiple vulnerabilities), see SA-CORE-2013-003.
  522. Drupal 7.23, 2013-08-07
  523. -----------------------
  524. - Fixed a fatal error on PostgreSQL databases when updating the Taxonomy module
  525. from Drupal 6 to Drupal 7.
  526. - Fixed the default ordering of CSS files for sites using right-to-left
  527. languages, to consistently place the right-to-left override file immediately
  528. after the CSS it is overriding (API change: https://drupal.org/node/2058463).
  529. - Added a drupal_check_memory_limit() API function to allow the memory limit to
  530. be checked consistently (API addition).
  531. - Changed the default web.config file for IIS servers to allow favicon.ico
  532. files which are present in the filesystem to be accessed.
  533. - Fixed inconsistent support for the 'tel' protocol in Drupal's URL filtering
  534. functions.
  535. - Performance improvement: Allowed all hooks to be included in the
  536. module_implements() cache, even those that are only invoked on HTTP POST
  537. requests.
  538. - Made the database system replace truncate queries with delete queries when
  539. inside a transaction, to fix issues with PostgreSQL and other databases.
  540. - Fixed a bug which caused nested contextual links to display improperly.
  541. - Fixed a bug which prevented cached image derivatives from being flushed for
  542. private files and other non-default file schemes.
  543. - Fixed drupal_render() to always return an empty string when there is no
  544. output, rather than sometimes returning NULL (minor API change).
  545. - Added protection to cache_clear_all() to ensure that non-cache tables cannot
  546. be truncated (API addition: a new isValidBin() method has been added to the
  547. default database cache implementation).
  548. - Changed the default .htaccess file to support HTTP authorization in CGI
  549. environments.
  550. - Changed the password reset form to pre-fill the username when requested via a
  551. URL query parameter, and used this in the error message that appears after a
  552. failed login attempt (minor data structure and behavior change).
  553. - Fixed broken support for foreign keys in the field API.
  554. - Fixed "No active batch" error when a user cancels their own account.
  555. - Added a description to the "access content overview" permission on the
  556. permissions page (string change).
  557. - Added a drupal_array_diff_assoc_recursive() function to allow associative
  558. arrays to be compared recursively (API addition).
  559. - Added human-readable labels to image styles, in addition to the existing
  560. machine-readable name (API change: https://drupal.org/node/2058503).
  561. - Moved the drupal_get_hash_salt() function to bootstrap.inc and used it in
  562. additional places in the code, for added security in the case where there is
  563. no hash salt in settings.php.
  564. - Fixed a regression in Drupal 7.22 that caused internal server errors for
  565. sites running on very old Apache 1.x web servers.
  566. - Numerous small bug fixes.
  567. - Numerous API documentation improvements.
  568. - Additional automated test coverage.
  569. Drupal 7.22, 2013-04-03
  570. -----------------------
  571. - Allowed the drupal_http_request() function to be overridden so that
  572. additional HTTP request capabilities can be added by contributed modules.
  573. - Changed the Simpletest module to allow PSR-0 test classes to be used in
  574. Drupal 7.
  575. - Removed an unnecessary "Content-Disposition" header from private file
  576. downloads; it prevented many private files from being viewed inline in a web
  577. browser.
  578. - Changed various field API functions to allow them to optionally act on a
  579. single field within an entity (API addition: http://drupal.org/node/1825844).
  580. - Fixed a bug which prevented Drupal's file transfer functionality from working
  581. on some PHP 5.4 systems.
  582. - Fixed incorrect log message when theme() is called for a theme hook that does
  583. not exist (minor string change).
  584. - Fixed Drupal's token-replacement system to allow spaces in the token value.
  585. - Changed the default behavior after a user creates a node they do not have
  586. access to view. The user will now be redirected to the front page rather than
  587. an access denied page.
  588. - Fixed a bug which prevented empty HTTP headers (such as "0") from being set.
  589. (Minor behavior change: Callers of drupal_add_http_header() must now set
  590. FALSE explicitly to prevent a header from being sent at all; this was already
  591. indicated in the function's documentation.)
  592. - Fixed OpenID errors when more than one module implements hook_openid(). The
  593. behavior is now changed so that if more than one module tries to set the same
  594. parameter, the last module's change takes effect.
  595. - Fixed a serious documentation bug: The $name variable in the
  596. taxonomy-term.tpl.php theme template was incorrectly documented as being
  597. sanitized when in fact it is not.
  598. - Fixed a bug which prevented Drupal 6 to Drupal 7 upgrades on sites which had
  599. duplicate permission names in the User module's database tables.
  600. - Added an empty "datatype" attribute to taxonomy term and username links to
  601. make the RDFa markup upward compatible with RDFa 1.1 (minor markup addition).
  602. - Fixed a bug which caused the denial-of-service protection added in Drupal
  603. 7.20 to break certain valid image URLs that had an extra slash in them.
  604. - Fixed a bug with update queries in the SQLite database driver that prevented
  605. Drupal from being installed with SQLite on PHP 5.4.
  606. - Fixed enforced dependencies errors updating to recent versions of Drupal 7 on
  607. certain non-MySQL databases.
  608. - Refactored the Field module's caching behavior to obtain large improvements
  609. in memory usage for sites with many fields and instances (API addition:
  610. http://drupal.org/node/1915646).
  611. - Fixed entity argument not being passed to implementations of
  612. hook_file_download_access_alter(). The fix adds an additional context
  613. parameter that can be passed when calling drupal_alter() for any hook (API
  614. change: http://drupal.org/node/1882722).
  615. - Fixed broken support for translatable comment fields (API change:
  616. http://drupal.org/node/1874724).
  617. - Added an assertThemeOutput() method to Simpletest to allow tests to check
  618. that themed output matches an expected HTML string (API addition).
  619. - Added a link to "Install another module" after a module has been successfully
  620. downloaded via the Update Manager (UI change).
  621. - Added an optional "exclusive" flag to installation profile .info files which
  622. allows Drupal distributions to force a profile to be selected during
  623. installation (API addition: http://drupal.org/node/1961012).
  624. - Fixed a bug which caused the database API to not properly close database
  625. connections.
  626. - Added a link to the URL for running cron from outside the site to the Cron
  627. settings page (UI change).
  628. - Fixed a bug which prevented image styles from being reverted on PHP 5.4.
  629. - Made the default .htaccess rules protocol sensitive to improve security for
  630. sites which use HTTPS and redirect between "www" and non-"www" versions of
  631. the page.
  632. - Numerous small bug fixes.
  633. - Numerous API documentation improvements.
  634. - Additional automated test coverage.
  635. Drupal 7.21, 2013-03-06
  636. -----------------------
  637. - Allowed sites using the 'image_allow_insecure_derivatives' variable to still
  638. have partial protection from the security issues fixed in Drupal 7.20.
  639. Drupal 7.20, 2013-02-20
  640. -----------------------
  641. - Fixed security issues (denial of service). See SA-CORE-2013-002.
  642. Drupal 7.19, 2013-01-16
  643. -----------------------
  644. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2013-001.
  645. Drupal 7.18, 2012-12-19
  646. -----------------------
  647. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2012-004.
  648. Drupal 7.17, 2012-11-07
  649. -----------------------
  650. - Changed the default value of the '404_fast_html' variable to have a DOCTYPE
  651. declaration.
  652. - Made it possible to use associative arrays for the 'items' variable in
  653. theme_item_list().
  654. - Fixed a bug which prevented required form elements without a title from being
  655. given an "error" class when the form fails validation.
  656. - Prevented duplicate HTML IDs from appearing when two forms are displayed on
  657. the same page and one of them is submitted with invalid data (minor markup
  658. change).
  659. - Fixed a bug which prevented Drupal 6 to Drupal 7 upgrades on sites which had
  660. stale data in the Upload module's database tables.
  661. - Fixed a bug in the States API which prevented certain types of form elements
  662. from being disabled when requested.
  663. - Allowed aggregator feed items with author names longer than 255 characters to
  664. have a truncated version saved to the database (rather than causing a fatal
  665. error).
  666. - Allowed aggregator feed items to have URLs longer than 255 characters
  667. (schema change which results in several columns in the Aggregator module's
  668. database tables changing from VARCHAR to TEXT fields).
  669. - Added hook_taxonomy_term_view() and standardized the process for rendering
  670. taxonomy terms to invoke hook_entity_view() and otherwise make it consistent
  671. with other entities (API change: http://drupal.org/node/1808870).
  672. - Added hook_entity_view_mode_alter() to allow modules to change entity view
  673. modes on display (API addition: http://drupal.org/node/1833086).
  674. - Fixed a bug which made database queries running a "LIKE" query on blob fields
  675. fail on PostgreSQL databases. This caused errors during the Drupal 6 to
  676. Drupal 7 upgrade.
  677. - Changed the hook_menu() entry for Drupal's rss.xml page to prevent extra path
  678. components from being accidentally passed to the page callback function (data
  679. structure change).
  680. - Removed a non-standard "name" attribute from Drupal's default Content-Type
  681. header for file downloads.
  682. - Fixed the theme settings form to properly clean up submitted values in
  683. $form_state['values'] when the form is submitted (data structure change).
  684. - Fixed an inconsistency by removing the colon from the end of the label on
  685. multi-valued form fields (minor string change).
  686. - Added support for 'weight' in hook_field_widget_info() to allow modules to
  687. control the order in which widgets are displayed in the Field UI.
  688. - Updated various tables in the OpenID and Book modules to use the default
  689. "empty table" text pattern (string change).
  690. - Added proxy server support to drupal_http_request().
  691. - Added "lang" attributes to language links, to better support screen readers.
  692. - Fixed double occurrence of a "ul" HTML tag on secondary local tasks in the
  693. Seven theme (markup change).
  694. - Fixed bugs which caused taxonomy vocabulary and shortcut set titles to be
  695. double-escaped. The fix replaces the taxonomy vocabulary overview page and
  696. "Edit shortcuts" menu items' title callback entries in hook_menu() with new
  697. functions that do not escape HTML characters (data structure change).
  698. - Modified the Update manager module to allow drupal.org to collect usage
  699. statistics for individual modules and themes, rather than only for entire
  700. projects.
  701. - Modified the node listing database query on Drupal's default front page to
  702. add table aliases for better query altering (this is a data structure change
  703. affecting code which implements hook_query_alter() on this query).
  704. - Improved the translatability of the "Field type(s) in use" message on the
  705. modules page (admin-facing string change).
  706. - Fixed a regression which caused a "call to undefined function
  707. drupal_find_base_themes()" fatal error under rare circumstances.
  708. - Numerous API documentation improvements.
  709. - Additional automated test coverage.
  710. Drupal 7.16, 2012-10-17
  711. -----------------------
  712. - Fixed security issues (Arbitrary PHP code execution and information
  713. disclosure). See SA-CORE-2012-003.
  714. Drupal 7.15, 2012-08-01
  715. -----------------------
  716. - Introduced a 'user_password_reset_timeout' variable to allow the 24-hour
  717. expiration for user password reset links to be adjusted (API addition).
  718. - Fixed database errors due to ambiguous column names that occurred when
  719. EntityFieldQuery was used in certain situations.
  720. - Changed the drupal_array_get_nested_value() function to return a reference
  721. (API addition).
  722. - Changed the System module's hook_block_info() implementation to assign the
  723. "Main page content" and "System help" blocks to appropriate regions by
  724. default and prevent error messages on the block administration page (data
  725. structure change).
  726. - Fixed regression: Non-node entities couldn't be accessed with
  727. EntityFieldQuery.
  728. - Fixed regression: Optional radio buttons with an empty, non-NULL default
  729. value led to an illegal choice error when none were selected.
  730. - Reorganized the testing framework to split setUp() into specific sub-methods
  731. and fix several regressions in the process.
  732. - Fixed bug which made it impossible to search for strings that have not been
  733. translated into a particular language.
  734. - Renamed the "Field" column on the Manage Fields screen to "Field type", since
  735. the former was confusing and inaccurate (UI change).
  736. - Performance improvement: Removed needless call to system_rebuild_module_data()
  737. in field_sync_field_status(), greatly speeding up bulk module enable/disable.
  738. - Fixed bug which prevented notifications from being sent when core, module, and
  739. theme updates are available.
  740. - Fixed bug which prevented sub-themes from inheriting the default values of
  741. theme settings defined by the base theme.
  742. - Fixed bug which prevented the jQuery UI Datepicker from being localized.
  743. - Made Ajax alert dialogs respect error reporting settings.
  744. - Fixed bug which prevented image styles from being deleted on PHP 5.4.
  745. - Fixed bug: Language detection by domain only worked on port 80.
  746. - Fixed regression: The first plural index on a page was not calculated
  747. correctly.
  748. - Introduced generic entity language support. Entities may now declare their
  749. language property in hook_entity_info(), and modules working with entities
  750. may access the language using entity_language() (API change:
  751. http://drupal.org/node/1626346).
  752. - Added EntityFieldQuery support for taxonomy bundles.
  753. - Fixed issue where field form structure was incomplete if field_access()
  754. returned FALSE. Instead of being incomplete, the form structure now has
  755. #access set to FALSE and field form validation is skipped (data structure
  756. change: http://drupal.org/node/1663020).
  757. - Fixed data loss issue due to field_has_data() returning inconsistent results.
  758. The fix adds an optional DANGEROUS_ACCESS_CHECK_OPT_OUT tag to entity field
  759. queries which field storage engines can respond to (API addition:
  760. http://drupal.org/node/1597378).
  761. - Fixed notice: Undefined index: default_image in image_field_prepare_view()
  762. - Numerous API documentation improvements.
  763. - Additional automated test coverage.
  764. Drupal 7.14, 2012-05-02
  765. -----------------------
  766. - Fixed "integrity constraint" fatal errors when rebuilding registry.
  767. - Fixed custom logo and favicon functionality referencing incorrect paths.
  768. - Fixed DB Case Sensitivity: Allow BINARY attribute in MySQL.
  769. - Split field_bundle_settings out per bundle.
  770. - Improve UX for machine names for fields (UI change).
  771. - Fixed User pictures are not removed properly.
  772. - Fixed HTTPS sessions not working in all cases.
  773. - Fixed Regression: Required radios throw illegal choice error when none
  774. selected.
  775. - Fixed allow autocompletion requests to include slashes.
  776. - Eliminate $user->cache and {session}.cache in favor of
  777. $_SESSION['cache_expiration'][$bin] (Performance).
  778. - Fixed focus jumps to tab when pressing enter on a form element within tab.
  779. - Fixed race condition in locale() - duplicates in {locales_source}.
  780. - Fixed Missing "Default image" per field instance.
  781. - Quit clobbering people's work when they click the filter tips link
  782. - Form API #states: Fix conditionals to allow OR and XOR constructions.
  783. - Fixed Focus jumps to tab when pressing enter on a form element within tab.
  784. (Accessibility)
  785. - Improved performance of node_access queries.
  786. - Fixed Fieldsets inside vertical tabs have no title and can't be collapsed.
  787. - Reduce size of cache_menu table (Performance).
  788. - Fixed unnecessary aggregation of CSS/JS (Performance).
  789. - Fixed taxonomy_autocomplete() produces SQL error for nonexistent field.
  790. - Fixed HTML filter is not run first by default, despite default weight.
  791. - Fixed Overlay does not work with prefixed URL paths.
  792. - Better debug info for field errors (string change).
  793. - Fixed Data corruption in comment IDs (results in broken threading on
  794. PostgreSQL).
  795. - Fixed machine name not editable if every character is replaced.
  796. - Fixed user picture not appearing in comment preview (Markup change).
  797. - Added optional vid argument for taxonomy_get_term_by_name().
  798. - Fixed Invalid Unicode code range in PREG_CLASS_UNICODE_WORD_BOUNDARY fails
  799. with PCRE 8.30.
  800. - Fixed {trigger_assignments()}.hook has only 32 characters, is too short.
  801. - Numerous fixes to run-tests.sh.
  802. - Fixed Tests in profiles/[name]/modules cannot be run and cannot use a
  803. different profile for running tests.
  804. - Numerous JavaScript performance fixes.
  805. - Numerous documentation fixes.
  806. - Fixed All pager links have an 'active' CSS class.
  807. - Numerous upgrade path fixes; notably:
  808. - system_update_7061() fails on inserting files with same name but different
  809. case.
  810. - system_update_7061() converts filepaths too aggressively.
  811. - Trigger upgrade path: Node triggers removed when upgrading to 7-x from 6.25.
  812. Drupal 7.13, 2012-05-02
  813. -----------------------
  814. - Fixed security issues (Multiple vulnerabilities), see SA-CORE-2012-002.
  815. Drupal 7.12, 2012-02-01
  816. -----------------------
  817. - Fixed bug preventing custom menus from receiving an active trail.
  818. - Fixed hook_field_delete() no longer invoked during field_purge_data().
  819. - Fixed bug causing entity info cache to not be cleared with the rest of caches.
  820. - Fixed file_unmanaged_copy() fails with Drupal 7.7+ and safe_mode() or
  821. open_basedir().
  822. - Fixed Nested transactions throw exceptions when they got out of scope.
  823. - Fixed bugs with the Return-Path when sending mail on both Windows and
  824. non-Windows systems.
  825. - Fixed bug with DrupalCacheArray property visibility preventing others from
  826. extending it (API change: http://drupal.org/node/1422264).
  827. - Fixed bug with handling of non-ASCII characters in file names (API change:
  828. http://drupal.org/node/1424840).
  829. - Reconciled field maximum length with database column size in image and
  830. aggregator modules.
  831. - Fixes to various core JavaScript files to allow for minification and
  832. aggregation.
  833. - Fixed Prevent tests from deleting main installation's tables when
  834. parent::setUp() is not called.
  835. - Fixed several Poll module bugs.
  836. - Fixed several Shortcut module bugs.
  837. - Added new hook_system_theme_info() to provide ability for contributed modules
  838. to test theme functionality.
  839. - Added ability to cancel mail sending from hook_mail_alter().
  840. - Added support for configurable PDO connection options, enabling master-master
  841. database replication.
  842. - Numerous improvements to tests and test runner to pave the way for faster test
  843. runs.
  844. - Expanded test coverage.
  845. - Numerous API documentation improvements.
  846. - Numerous performance improvements, including token replacement and render
  847. cache.
  848. Drupal 7.11, 2012-02-01
  849. -----------------------
  850. - Fixed security issues (Multiple vulnerabilities), see SA-CORE-2012-001.
  851. Drupal 7.10, 2011-12-05
  852. -----------------------
  853. - Fixed Content-Language HTTP header to not cause issues with Drush 5.x.
  854. - Reduce memory usage of theme registry (performance).
  855. - Fixed PECL upload progress bar for FileField
  856. - Fixed running update.php doesn't always clear the cache.
  857. - Fixed PDO exceptions on long titles.
  858. - Fixed Overlay redirect does not include query string.
  859. - Fixed D6 modules satisfy D7 module dependencies.
  860. - Fixed the ordering of module hooks when using module_implements_alter().
  861. - Fixed "floating" submit buttons during AJAX requests.
  862. - Fixed timezone selected on install not propogating to admin account.
  863. - Added msgctx context to JS translation functions, for feature parity with t().
  864. - Profiles' .install files now available during hook_install_tasks().
  865. - Added test coverage of 7.0 -> 7.x upgrade path.
  866. - Numerous notice fixes.
  867. - Numerous documentation improvements.
  868. - Additional automated test coverage.
  869. Drupal 7.9, 2011-10-26
  870. ----------------------
  871. - Critical fixes to OpenID to spec violations that could allow for
  872. impersonation in certain scenarios. Existing OpenID users should see
  873. http://drupal.org/node/1120290#comment-5092796 for more information on
  874. transitioning.
  875. - Fixed files getting lost when adding multiple files to multiple file fields
  876. at the same time.
  877. - Improved usability of the clean URL test screens.
  878. - Restored height/width attributes on images run through the theme system.
  879. - Fixed usability bug with first password field being pre-filled by certain
  880. browser plugins.
  881. - Fixed file_usage_list() so that it can return more than one result.
  882. - Fixed bug preventing preview of private images on node form.
  883. - Fixed PDO error when inserting an aggregator title longer than 255 characters.
  884. - Spelled out what TRADITIONAL means in MySQL sql_mode.
  885. - Deprecated "!=" operator for DBTNG; should be "<>".
  886. - Added two new API functions (menu_tree_set_path()/menu_tree_get_path()) were
  887. added in order to enable setting the active menu trail for dynamically
  888. generated menu paths.
  889. - Added new "fast 404" capability in settings.php to bypass Drupal bootstrap
  890. when serving 404 pages for certain file types.
  891. - Added format_string() function which can perform string munging ala the t()
  892. function without the overhead of the translation system.
  893. - Numerous #states system fixes.
  894. - Numerous EntityFieldQuery, DBTNG, and SQLite fixes.
  895. - Numerous Shortcut module fixes.
  896. - Numerous language system fixes.
  897. - Numerous token fixes.
  898. - Numerous CSS fixes.
  899. - Numerous upgrade path fixes.
  900. - Numerous minor string fixes.
  901. - Numerous notice fixes.
  902. Drupal 7.8, 2011-08-31
  903. ----------------------
  904. - Fixed critical upgrade path issue with multilingual sites, leading to lost
  905. content.
  906. - Numerous fixes to upgrade path, preventing fatal errors due to incorrect
  907. dependencies.
  908. - Fixed issue with saving files on hosts with open_basedir restrictions.
  909. - Fixed Update manger error when used with Overlay.
  910. - Fixed RTL support in Seven administration theme and Overlay.
  911. - Fixes to nested transaction support.
  912. - Introduced performance pattern to reduce Drupal core's RAM usage.
  913. - Added support for HTML 5 tags to filter_xss_admin().
  914. - Added exception handling to cron.
  915. - Added new hook hook_field_widget_form_alter() for contribtued modules.
  916. - element_validate_*() functions now available to contrib.
  917. - Added new maintainers for several subsystems.
  918. - Numerous testing system improvements.
  919. - Numerous markup and CSS fixes.
  920. - Numerous poll module fixes.
  921. - Numerous notice/warning fixes.
  922. - Numerous documentation fixes.
  923. - Numerous token fixes.
  924. Drupal 7.7, 2011-07-27
  925. ----------------------
  926. - Fixed VERSION string.
  927. Drupal 7.6, 2011-07-27
  928. ----------------------
  929. - Fixed support for remote streamwrappers.
  930. - AJAX now binds to 'click' instead of 'mousedown'.
  931. - 'Translatable' flag on fields created in UI now defaults to FALSE, to match those created via the API.
  932. - Performance enhancement to permissions page on large numbers of permissions.
  933. - More secure password generation.
  934. - Fix for temporary directory on Windows servers.
  935. - run-tests.sh now uses proc_open() instead of pcntl_fork() for better Windows support.
  936. - Numerous upgrade path fixes.
  937. - Numerous documentation fixes.
  938. - Numerous notice fixes.
  939. - Numerous fixes to improve PHP 5.4 support.
  940. - Numerous RTL improvements.
  941. Drupal 7.5, 2011-07-27
  942. ----------------------
  943. - Fixed security issue (Access bypass), see SA-CORE-2011-003.
  944. Drupal 7.4, 2011-06-29
  945. ----------------------
  946. - Rolled back patch that caused fatal errors in CTools, Feeds, and other modules using the class registry.
  947. - Fixed critical bug with saving default images.
  948. - Fixed fatal errors when uninstalling some modules.
  949. - Added workaround for MySQL transaction support breaking on DDL statments.
  950. - Improved page caching with external caching systems.
  951. - Fix to Batch API, which was terminating too early.
  952. - Numerous upgrade path fixes.
  953. - Performance fixes.
  954. - Additional test coverage.
  955. - Numerous documentation fixes.
  956. Drupal 7.3, 2011-06-29
  957. ----------------------
  958. - Fixed security issue (Access bypass), see SA-CORE-2011-002.
  959. Drupal 7.2, 2011-05-25
  960. ----------------------
  961. - Added a default .gitignore file.
  962. - Improved PostgreSQL and SQLite support.
  963. - Numerous critical performance improvements.
  964. - Numerous critical fixes to the upgrade path.
  965. - Numerous fixes to language and translation systems.
  966. - Numerous fixes to AJAX and #states systems.
  967. - Improvements to the locking system.
  968. - Numerous documentation fixes.
  969. - Numerous styling and theme system fixes.
  970. - Numerous fixes for schema mis-matches between Drupal 6 and 7.
  971. - Minor internal API clean-ups.
  972. Drupal 7.1, 2011-05-25
  973. ----------------------
  974. - Fixed security issues (Cross site scripting, File access bypass), see SA-CORE-2011-001.
  975. Drupal 7.0, 2011-01-05
  976. ----------------------
  977. - Database:
  978. * Fully rewritten database layer utilizing PHP 5's PDO abstraction layer.
  979. * Drupal now requires MySQL >= 5.0.15 or PostgreSQL >= 8.3.
  980. * Added query builders for INSERT, UPDATE, DELETE, MERGE, and SELECT queries.
  981. * Support for master/slave replication, transactions, multi-insert queries,
  982. and other features.
  983. * Added support for the SQLite database engine.
  984. * Default to InnoDB engine, rather than MyISAM, on MySQL when available.
  985. This offers increased scalability and data integrity.
  986. - Security:
  987. * Protected cron.php -- cron will only run if the proper key is provided.
  988. * Implemented a pluggable password system and much stronger password hashes
  989. that are compatible with the Portable PHP password hashing framework.
  990. * Rate limited login attempts to prevent brute-force password guessing, and
  991. improved the flood control API to allow variable time windows and
  992. identifiers for limiting user access to resources.
  993. * Transformed the "Update status" module into the "Update manager" which
  994. can securely install or update modules and themes via a web interface.
  995. - Usability:
  996. * Added contextual links (a.k.a. local tasks) to page elements, such as
  997. blocks, nodes, or comments, which allows to perform the most common tasks
  998. with a single click only.
  999. * Improved installer requirements check.
  1000. * Improved support for integration of WYSIWYG editors.
  1001. * Implemented drag-and-drop positioning for input format listings.
  1002. * Implemented drag-and-drop positioning for language listing.
  1003. * Implemented drag-and-drop positioning for poll options.
  1004. * Provided descriptions and human-readable names for user permissions.
  1005. * Removed comment controls for users.
  1006. * Removed display order settings for comment module. Comment display
  1007. order can now be customized using the Views module.
  1008. * Removed the 'related terms' feature from taxonomy module since this can
  1009. now be achieved with Field API.
  1010. * Added additional features to the default installation profile, and
  1011. implemented a "slimmed down" profile designed for developers.
  1012. * Added a built-in, automated cron run feature, which is triggered by site
  1013. visitors.
  1014. * Added an administrator role which is assigned all permissions for
  1015. installed modules automatically.
  1016. * Image toolkits are now provided by modules (rather than requiring a
  1017. manual file copy to the includes directory).
  1018. * Added an edit tab to taxonomy term pages.
  1019. * Redesigned password strength validator.
  1020. * Redesigned the add content type screen.
  1021. * Highlight duplicate URL aliases.
  1022. * Renamed "input formats" to "text formats".
  1023. * Moved text format permissions to the main permissions page.
  1024. * Added configurable ability for users to cancel their own accounts.
  1025. * Added "vertical tabs", a reusable interface component that features
  1026. automatic summaries and increases usability.
  1027. * Replaced fieldsets on node edit and add pages with vertical tabs.
  1028. - Performance:
  1029. * Improved performance on uncached page views by loading multiple core
  1030. objects in a single database query.
  1031. * Improved performance for logged-in users by reducing queries for path
  1032. alias lookups.
  1033. * Improved support for HTTP proxies (including reverse proxies), allowing
  1034. anonymous page views to be served entirely from the proxy.
  1035. - Documentation:
  1036. * Hook API documentation now included in Drupal core.
  1037. - News aggregator:
  1038. * Added OPML import functionality for RSS feeds.
  1039. * Optionally, RSS feeds may be configured to not automatically generate feed blocks.
  1040. - Search:
  1041. * Added support for language-aware searches.
  1042. - Aggregator:
  1043. * Introduced architecture that allows pluggable parsers and processors for
  1044. syndicating RSS and Atom feeds.
  1045. * Added options to suspend updating specific feeds and never discard feeds
  1046. items.
  1047. - Testing:
  1048. * Added test framework and tests.
  1049. - Improved time zone support:
  1050. * Drupal now uses PHP's time zone database when rendering dates in local
  1051. time. Site-wide and user-configured time zone offsets have been converted
  1052. to time zone names, e.g. Africa/Abidjan.
  1053. * In some cases the upgrade and install scripts do not choose the preferred
  1054. site default time zone. The automatically-selected time zone can be
  1055. corrected at admin/config/regional/settings.
  1056. * If your site is being upgraded from Drupal 6 and you do not have the
  1057. contributed date or event modules installed, user time zone settings will
  1058. fallback to the system time zone and will have to be reconfigured by each user.
  1059. * User-configured time zones now serve as the default time zone for PHP
  1060. date/time functions.
  1061. - Filter system:
  1062. * Revamped the filter API and text format storage.
  1063. * Added support for default text formats to be assigned on a per-role basis.
  1064. * Refactored the HTML corrector to take advantage of PHP 5 features.
  1065. - User system:
  1066. * Added clean API functions for creating, loading, updating, and deleting
  1067. user roles and permissions.
  1068. * Refactored the "access rules" component of user module: The user module
  1069. now provides a simple interface for blocking single IP addresses. The
  1070. previous functionality in the user module for restricting certain e-mail
  1071. addresses and usernames is now available as a contributed module. Further,
  1072. IP address range blocking is no longer supported and should be implemented
  1073. at the operating system level.
  1074. * Removed per-user themes: Contributed modules with similar functionality
  1075. are available.
  1076. - OpenID:
  1077. * Added support for Gmail and Google Apps for Domain identifiers. Users can
  1078. now login with their user@example.com identifier when example.com is powered
  1079. by Google.
  1080. * Made the OpenID module more pluggable.
  1081. - Added code registry:
  1082. * Using the registry, modules declare their includable files via their .info file,
  1083. allowing Drupal to lazy-load classes and interfaces as needed.
  1084. - Theme system:
  1085. * Removed the Bluemarine, Chameleon and Pushbutton themes. These themes live
  1086. on as contributed themes (http://drupal.org/project/bluemarine,
  1087. http://drupal.org/project/chameleon and http://drupal.org/project/pushbutton).
  1088. * Added Stark theme to make analyzing Drupal's default HTML and CSS easier.
  1089. * Added Seven as the default administration theme.
  1090. * Variable preprocessing of theme hooks prior to template rendering now goes
  1091. through two phases: a 'preprocess' phase and a new 'process' phase. See
  1092. http://api.drupal.org/api/function/theme/7 for details.
  1093. * Theme hooks implemented as functions (rather than as templates) can now
  1094. also have preprocess (and process) functions. See
  1095. http://api.drupal.org/api/function/theme/7 for details.
  1096. * Added Bartik as the default theme.
  1097. - File handling:
  1098. * Files are now first class Drupal objects with file_load(), file_save(),
  1099. and file_validate() functions and corresponding hooks.
  1100. * The file_move(), file_copy() and file_delete() functions now operate on
  1101. file objects and invoke file hooks so that modules are notified and can
  1102. respond to changes.
  1103. * For the occasions when only basic file manipulation are needed--such as
  1104. uploading a site logo--that don't require the overhead of databases and
  1105. hooks, the current unmanaged copy, move and delete operations have been
  1106. preserved but renamed to file_unmanaged_*().
  1107. * Rewrote file handling to use PHP stream wrappers to enable support for
  1108. both public and private files and to support pluggable storage mechanisms
  1109. and access to remote resources (e.g. S3 storage or Flickr photos).
  1110. * The mime_extension_mapping variable has been removed. Modules that need to
  1111. alter the default MIME type extension mappings should implement
  1112. hook_file_mimetype_mapping_alter().
  1113. * Added the hook_file_url_alter() hook, which makes it possible to serve
  1114. files from a CDN.
  1115. * Added a field specifically for uploading files, previously provided by
  1116. the contributed module FileField.
  1117. - Image handling:
  1118. * Improved image handling, including better support for add-on image
  1119. libraries.
  1120. * Added API and interface for creating advanced image thumbnails.
  1121. * Inclusion of additional effects such as rotate and desaturate.
  1122. * Added a field specifically for uploading images, previously provided by
  1123. the contributed module ImageField.
  1124. - Added aliased multi-site support:
  1125. * Added support for mapping domain names to sites directories.
  1126. - Added RDF support:
  1127. * Modules can declare RDF namespaces which are serialized in the tag
  1128. for RDFa support.
  1129. * Modules can specify how their data structure maps to RDF.
  1130. * Added support for RDFa export of nodes, comments, terms, users, etc. and
  1131. their fields.
  1132. - Search engine optimization and web linking:
  1133. * Added a rel="canonical" link on node and comment pages to prevent
  1134. duplicate content indexing by search engines.
  1135. * Added a default rel="shortlink" link on node and comment pages that
  1136. advertises a short link as an alternative URL to third-party services.
  1137. * Meta information is now alterable by all modules before rendering.
  1138. - Field API:
  1139. * Custom data fields may be attached to nodes, users, comments and taxonomy
  1140. terms.
  1141. * Node bodies and teasers are now Field API fields instead of
  1142. being a hard-coded property of node objects.
  1143. * In addition, any other object type may register with Field API
  1144. and allow custom data fields to be attached to itself.
  1145. * Provides most of the features of the former Content Construction
  1146. Kit (CCK) module.
  1147. * Taxonomy terms are now Field API fields that can be added to any fieldable
  1148. object.
  1149. - Installer:
  1150. * Refactored the installer into an API that allows Drupal to be installed
  1151. via a command line script.
  1152. - Page organization
  1153. * Made the help text area a full featured region with blocks.
  1154. * Site mission is replaced with the highlighted content block region and
  1155. separate RSS feed description settings.
  1156. * The footer message setting was removed in favor of custom blocks.
  1157. * Made the main page content a block which can be moved and ordered
  1158. with other blocks in the same region.
  1159. * Blocks can now return structured arrays for later rendering just
  1160. like page callbacks.
  1161. - Translation system
  1162. * The translation system now supports message context (msgctxt).
  1163. * Added support for translatable fields to Field API.
  1164. - JavaScript changes
  1165. * Upgraded the core JavaScript library to jQuery version 1.4.4.
  1166. * Upgraded the jQuery Forms library to 2.52.
  1167. * Added jQuery UI 1.8.7, which allows improvements to Drupal's user
  1168. experience.
  1169. - Better module version support
  1170. * Modules now can specify which version of another module they depend on.
  1171. - Removed modules from core
  1172. * The following modules have been removed from core, because contributed
  1173. modules with similar functionality are available:
  1174. * Blog API module
  1175. * Ping module
  1176. * Throttle module
  1177. - Improved node access control system.
  1178. * All modules may now influence the access to a node at runtime, not just
  1179. the module that defined a node.
  1180. * Users may now be allowed to bypass node access restrictions without giving
  1181. them complete access to the site.
  1182. * Access control affects both published and unpublished nodes.
  1183. * Numerous other improvements to the node access system.
  1184. - Actions system
  1185. * Simplified definitions of actions and triggers.
  1186. * Removed dependency on the combination of hooks and operations. Triggers
  1187. now directly map to module hooks.
  1188. - Task handling
  1189. * Added a queue API to process many or long-running tasks.
  1190. * Added queue API support to cron API.
  1191. * Added a locking framework to coordinate long-running operations across
  1192. requests.
  1193. Drupal 6.23-dev, xxxx-xx-xx (development release)
  1194. ---------------------------
  1195. Drupal 6.22, 2011-05-25
  1196. -----------------------
  1197. - Made Drupal 6 work better with IIS and Internet Explorer.
  1198. - Fixed .po file imports to work better with custom textgroups.
  1199. - Improved code documentation at various places.
  1200. - Fixed a variety of other bugs.
  1201. Drupal 6.21, 2011-05-25
  1202. -----------------------
  1203. - Fixed security issues (Cross site scripting), see SA-CORE-2011-001.
  1204. Drupal 6.20, 2010-12-15
  1205. -----------------------
  1206. - Fixed a variety of small bugs, improved code documentation.
  1207. Drupal 6.19, 2010-08-11
  1208. -----------------------
  1209. - Fixed a variety of small bugs, improved code documentation.
  1210. Drupal 6.18, 2010-08-11
  1211. -----------------------
  1212. - Fixed security issues (OpenID authentication bypass, File download access
  1213. bypass, Comment unpublishing bypass, Actions cross site scripting),
  1214. see SA-CORE-2010-002.
  1215. Drupal 6.17, 2010-06-02
  1216. -----------------------
  1217. - Improved PostgreSQL compatibility
  1218. - Better PHP 5.3 and PHP 4 compatibility
  1219. - Better browser compatibility of CSS and JS aggregation
  1220. - Improved logging for login failures
  1221. - Fixed an incompatibility with some contributed modules and the locking system
  1222. - Fixed a variety of other bugs.
  1223. Drupal 6.16, 2010-03-03
  1224. -----------------------
  1225. - Fixed security issues (Installation cross site scripting, Open redirection,
  1226. Locale module cross site scripting, Blocked user session regeneration),
  1227. see SA-CORE-2010-001.
  1228. - Better support for updated jQuery versions.
  1229. - Reduced resource usage of update.module.
  1230. - Fixed several issues relating to support of installation profiles and
  1231. distributions.
  1232. - Added a locking framework to avoid data corruption on long operations.
  1233. - Fixed a variety of other bugs.
  1234. Drupal 6.15, 2009-12-16
  1235. -----------------------
  1236. - Fixed security issues (Cross site scripting), see SA-CORE-2009-009.
  1237. - Fixed a variety of other bugs.
  1238. Drupal 6.14, 2009-09-16
  1239. -----------------------
  1240. - Fixed security issues (OpenID association cross site request forgeries,
  1241. OpenID impersonation and File upload), see SA-CORE-2009-008.
  1242. - Changed the system modules page to not run all cache rebuilds; use the
  1243. button on the performance settings page to achieve the same effect.
  1244. - Added support for PHP 5.3.0 out of the box.
  1245. - Fixed a variety of small bugs.
  1246. Drupal 6.13, 2009-07-01
  1247. -----------------------
  1248. - Fixed security issues (Cross site scripting, Input format access bypass and
  1249. Password leakage in URL), see SA-CORE-2009-007.
  1250. - Fixed a variety of small bugs.
  1251. Drupal 6.12, 2009-05-13
  1252. -----------------------
  1253. - Fixed security issues (Cross site scripting), see SA-CORE-2009-006.
  1254. - Fixed a variety of small bugs.
  1255. Drupal 6.11, 2009-04-29
  1256. -----------------------
  1257. - Fixed security issues (Cross site scripting and limited information
  1258. disclosure), see SA-CORE-2009-005
  1259. - Fixed performance issues with the menu router cache, the update
  1260. status cache and improved cache invalidation
  1261. - Fixed a variety of small bugs.
  1262. Drupal 6.10, 2009-02-25
  1263. -----------------------
  1264. - Fixed a security issue, (Local file inclusion on Windows),
  1265. see SA-CORE-2009-003
  1266. - Fixed node_feed() so custom fields can show up in RSS feeds.
  1267. - Improved PostgreSQL compatibility.
  1268. - Fixed a variety of small bugs.
  1269. Drupal 6.9, 2009-01-14
  1270. ----------------------
  1271. - Fixed security issues, (Access Bypass, Validation Bypass and Hardening
  1272. against SQL injection), see SA-CORE-2009-001
  1273. - Made HTTP request checking more robust and informative.
  1274. - Fixed HTTP_HOST checking to work again with HTTP 1.0 clients and
  1275. basic shell scripts.
  1276. - Removed t() calls from all schema documentation. Suggested best practice
  1277. changed for contributed modules, see http://drupal.org/node/322731.
  1278. - Fixed a variety of small bugs.
  1279. Drupal 6.8, 2008-12-11
  1280. ----------------------
  1281. - Removed a previous change incompatible with PHP 5.1.x and lower.
  1282. Drupal 6.7, 2008-12-10
  1283. ----------------------
  1284. - Fixed security issues, (Cross site request forgery and Cross site scripting), see SA-2008-073
  1285. - Updated robots.txt and .htaccess to match current file use.
  1286. - Fixed a variety of small bugs.
  1287. Drupal 6.6, 2008-10-22
  1288. ----------------------
  1289. - Fixed security issues, (File inclusion, Cross site scripting), see SA-2008-067
  1290. - Fixed a variety of small bugs.
  1291. Drupal 6.5, 2008-10-08
  1292. ----------------------
  1293. - Fixed security issues, (File upload access bypass, Access rules bypass,
  1294. BlogAPI access bypass), see SA-2008-060.
  1295. - Fixed a variety of small bugs.
  1296. Drupal 6.4, 2008-08-13
  1297. ----------------------
  1298. - Fixed a security issue (Cross site scripting, Arbitrary file uploads via
  1299. BlogAPI, Cross site request forgeries and Various Upload module
  1300. vulnerabilities), see SA-2008-047.
  1301. - Improved error messages during installation.
  1302. - Fixed a bug that prevented AHAH handlers to be attached to radios widgets.
  1303. - Fixed a variety of small bugs.
  1304. Drupal 6.3, 2008-07-09
  1305. ----------------------
  1306. - Fixed security issues, (Cross site scripting, cross site request forgery,
  1307. session fixation and SQL injection), see SA-2008-044.
  1308. - Slightly modified installation process to prevent file ownership issues on
  1309. shared hosts.
  1310. - Improved PostgreSQL compatibility (rewritten queries; custom blocks).
  1311. - Upgraded to jQuery 1.2.6.
  1312. - Performance improvements to search, menu handling and form API caches.
  1313. - Fixed Views compatibility issues (Views for Drupal 6 requires Drupal 6.3+).
  1314. - Fixed a variety of small bugs.
  1315. Drupal 6.2, 2008-04-09
  1316. ----------------------
  1317. - Fixed a variety of small bugs.
  1318. - Fixed a security issue (Access bypasses), see SA-2008-026.
  1319. Drupal 6.1, 2008-02-27
  1320. ----------------------
  1321. - Fixed a variety of small bugs.
  1322. - Fixed a security issue (Cross site scripting), see SA-2008-018.
  1323. Drupal 6.0, 2008-02-13
  1324. ----------------------
  1325. - New, faster and better menu system.
  1326. - New watchdog as a hook functionality.
  1327. * New hook_watchdog that can be implemented by any module to route log
  1328. messages to various destinations.
  1329. * Expands the severity levels from 3 (Error, Warning, Notice) to the 8
  1330. levels defined in RFC 3164.
  1331. * The watchdog module is now called dblog, and is optional, but enabled by
  1332. default in the default installation profile.
  1333. * Extended the database log module so log messages can be filtered.
  1334. * Added syslog module: useful for monitoring large Drupal installations.
  1335. - Added optional e-mail notifications when users are approved, blocked, or
  1336. deleted.
  1337. - Drupal works with error reporting set to E_ALL.
  1338. - Added scripts/drupal.sh to execute Drupal code from the command line. Useful
  1339. to use Drupal as a framework to build command-line tools.
  1340. - Made signature support optional and made it possible to theme signatures.
  1341. - Made it possible to filter the URL aliases on the URL alias administration
  1342. screen.
  1343. - Language system improvements:
  1344. * Support for right to left languages.
  1345. * Language detection based on parts of the URL.
  1346. * Browser based language detection.
  1347. * Made it possible to specify a node's language.
  1348. * Support for translating posts on the site to different languages.
  1349. * Language dependent path aliases.
  1350. * Automatically import translations when adding a new language.
  1351. * JavaScript interface translation.
  1352. * Automatically import a module's translation upon enabling that module.
  1353. - Moved "PHP input filter" to a standalone module so it can be deleted for
  1354. security reasons.
  1355. - Usability:
  1356. * Improved handling of teasers in posts.
  1357. * Added sticky table headers.
  1358. * Check for clean URL support automatically with JavaScript.
  1359. * Removed default/settings.php. Instead the installer will create it from
  1360. default.settings.php.
  1361. * Made it possible to configure your own date formats.
  1362. * Remember anonymous comment posters.
  1363. * Only allow modules and themes to be enabled that have explicitly been
  1364. ported to the correct core API version.
  1365. * Can now specify the minimum PHP version required for a module within the
  1366. .info file.
  1367. * Drupal core no longer requires CREATE TEMPORARY TABLES or LOCK TABLES
  1368. database rights.
  1369. * Dynamically check password strength and confirmation.
  1370. * Refactored poll administration.
  1371. * Implemented drag-and-drop positioning for blocks, menu items, taxonomy
  1372. vocabularies and terms, forums, profile fields, and input format filters.
  1373. - Theme system:
  1374. * Added .info files to themes and made it easier to specify regions and
  1375. features.
  1376. * Added theme registry: modules can directly provide .tpl.php files for
  1377. their themes without having to create theme_ functions.
  1378. * Used the Garland theme for the installation and maintenance pages.
  1379. * Added theme preprocess functions for themes that are templates.
  1380. * Added support for themeable functions in JavaScript.
  1381. - Refactored update.php to a generic batch API to be able to run time-consuming
  1382. operations in multiple subsequent HTTP requests.
  1383. - Installer:
  1384. * Themed the installer with the Garland theme.
  1385. * Added form to provide initial site information during installation.
  1386. * Added ability to provide extra installation steps programmatically.
  1387. * Made it possible to import interface translations during installation.
  1388. - Added the HTML corrector filter:
  1389. * Fixes faulty and chopped off HTML in postings.
  1390. * Tags are now automatically closed at the end of the teaser.
  1391. - Performance:
  1392. * Made it easier to conditionally load .include files and split up many core
  1393. modules.
  1394. * Added a JavaScript aggregator.
  1395. * Added block-level caching, improving performance for both authenticated
  1396. and anonymous users.
  1397. * Made Drupal work correctly when running behind a reverse proxy like
  1398. Squid or Pound.
  1399. - File handling improvements:
  1400. * Entries in the files table are now keyed to a user instead of a node.
  1401. * Added reusable validation functions to check for uploaded file sizes,
  1402. extensions, and image resolution.
  1403. * Added ability to create and remove temporary files during a cron job.
  1404. - Forum improvements:
  1405. * Any node type may now be posted in a forum.
  1406. - Taxonomy improvements:
  1407. * Descriptions for terms are now shown on taxonomy/term pages as well
  1408. as RSS feeds.
  1409. * Added versioning support to categories by associating them with node
  1410. revisions.
  1411. - Added support for OpenID.
  1412. - Added support for triggering configurable actions.
  1413. - Added the Update status module to automatically check for available updates
  1414. and warn sites if they are missing security updates or newer versions.
  1415. Sites deploying from CVS should use http://drupal.org/project/cvs_deploy.
  1416. Advanced settings provided by http://drupal.org/project/update_advanced.
  1417. - Upgraded the core JavaScript library to jQuery version 1.2.3.
  1418. - Added a new Schema API, which provides built-in support for core and
  1419. contributed modules to work with databases other than MySQL.
  1420. - Removed drupal.module. The functionality lives on as the Site network
  1421. contributed module (http://drupal.org/project/site_network).
  1422. - Removed old system updates. Updates from Drupal versions prior to 5.x will
  1423. require upgrading to 5.x before upgrading to 6.x.
  1424. Drupal 5.23, 2010-08-11
  1425. -----------------------
  1426. - Fixed security issues (File download access bypass, Comment unpublishing
  1427. bypass), see SA-CORE-2010-002.
  1428. Drupal 5.22, 2010-03-03
  1429. -----------------------
  1430. - Fixed security issues (Open redirection, Locale module cross site scripting,
  1431. Blocked user session regeneration), see SA-CORE-2010-001.
  1432. Drupal 5.21, 2009-12-16
  1433. -----------------------
  1434. - Fixed a security issue (Cross site scripting), see SA-CORE-2009-009.
  1435. - Fixed a variety of small bugs.
  1436. Drupal 5.20, 2009-09-16
  1437. -----------------------
  1438. - Avoid security problems resulting from writing Drupal 6-style menu
  1439. declarations.
  1440. - Fixed security issues (session fixation), see SA-CORE-2009-008.
  1441. - Fixed a variety of small bugs.
  1442. Drupal 5.19, 2009-07-01
  1443. -----------------------
  1444. - Fixed security issues (Cross site scripting and Password leakage in URL), see
  1445. SA-CORE-2009-007.
  1446. - Fixed a variety of small bugs.
  1447. Drupal 5.18, 2009-05-13
  1448. -----------------------
  1449. - Fixed security issues (Cross site scripting), see SA-CORE-2009-006.
  1450. - Fixed a variety of small bugs.
  1451. Drupal 5.17, 2009-04-29
  1452. -----------------------
  1453. - Fixed security issues (Cross site scripting and limited information
  1454. disclosure) see SA-CORE-2009-005.
  1455. - Fixed a variety of small bugs.
  1456. Drupal 5.16, 2009-02-25
  1457. -----------------------
  1458. - Fixed a security issue, (Local file inclusion on Windows), see SA-CORE-2009-004.
  1459. - Fixed a variety of small bugs.
  1460. Drupal 5.15, 2009-01-14
  1461. -----------------------
  1462. - Fixed security issues, (Hardening against SQL injection), see
  1463. SA-CORE-2009-001
  1464. - Fixed HTTP_HOST checking to work again with HTTP 1.0 clients and basic shell
  1465. scripts.
  1466. - Fixed a variety of small bugs.
  1467. Drupal 5.14, 2008-12-11
  1468. -----------------------
  1469. - removed a previous change incompatible with PHP 5.1.x and lower.
  1470. Drupal 5.13, 2008-12-10
  1471. -----------------------
  1472. - fixed a variety of small bugs.
  1473. - fixed security issues, (Cross site request forgery and Cross site scripting), see SA-2008-073
  1474. - updated robots.txt and .htaccess to match current file use.
  1475. Drupal 5.12, 2008-10-22
  1476. -----------------------
  1477. - fixed security issues, (File inclusion), see SA-2008-067
  1478. Drupal 5.11, 2008-10-08
  1479. -----------------------
  1480. - fixed a variety of small bugs.
  1481. - fixed security issues, (File upload access bypass, Access rules bypass,
  1482. BlogAPI access bypass, Node validation bypass), see SA-2008-060
  1483. Drupal 5.10, 2008-08-13
  1484. -----------------------
  1485. - fixed a variety of small bugs.
  1486. - fixed security issues, (Cross site scripting, Arbitrary file uploads via
  1487. BlogAPI and Cross site request forgery), see SA-2008-047
  1488. Drupal 5.9, 2008-07-23
  1489. ----------------------
  1490. - fixed a variety of small bugs.
  1491. - fixed security issues, (Session fixation), see SA-2008-046
  1492. Drupal 5.8, 2008-07-09
  1493. ----------------------
  1494. - fixed a variety of small bugs.
  1495. - fixed security issues, (Cross site scripting, cross site request forgery, and
  1496. session fixation), see SA-2008-044
  1497. Drupal 5.7, 2008-01-28
  1498. ----------------------
  1499. - fixed the input format configuration page.
  1500. - fixed a variety of small bugs.
  1501. Drupal 5.6, 2008-01-10
  1502. ----------------------
  1503. - fixed a variety of small bugs.
  1504. - fixed a security issue (Cross site request forgery), see SA-2008-005
  1505. - fixed a security issue (Cross site scripting, UTF8), see SA-2008-006
  1506. - fixed a security issue (Cross site scripting, register_globals), see SA-2008-007
  1507. Drupal 5.5, 2007-12-06
  1508. ----------------------
  1509. - fixed missing missing brackets in a query in the user module.
  1510. - fixed taxonomy feed bug introduced by SA-2007-031
  1511. Drupal 5.4, 2007-12-05
  1512. ----------------------
  1513. - fixed a variety of small bugs.
  1514. - fixed a security issue (SQL injection), see SA-2007-031
  1515. Drupal 5.3, 2007-10-17
  1516. ----------------------
  1517. - fixed a variety of small bugs.
  1518. - fixed a security issue (HTTP response splitting), see SA-2007-024
  1519. - fixed a security issue (Arbitrary code execution via installer), see SA-2007-025
  1520. - fixed a security issue (Cross site scripting via uploads), see SA-2007-026
  1521. - fixed a security issue (User deletion cross site request forgery), see SA-2007-029
  1522. - fixed a security issue (API handling of unpublished comment), see SA-2007-030
  1523. Drupal 5.2, 2007-07-26
  1524. ----------------------
  1525. - changed hook_link() $teaser argument to match documentation.
  1526. - fixed a variety of small bugs.
  1527. - fixed a security issue (cross-site request forgery), see SA-2007-017
  1528. - fixed a security issue (cross-site scripting), see SA-2007-018
  1529. Drupal 5.1, 2007-01-29
  1530. ----------------------
  1531. - fixed security issue (code execution), see SA-2007-005
  1532. - fixed a variety of small bugs.
  1533. Drupal 5.0, 2007-01-15
  1534. ----------------------
  1535. - Completely retooled the administration page
  1536. * /Admin now contains an administration page which may be themed
  1537. * Reorganised administration menu items by task and by module
  1538. * Added a status report page with detailed PHP/MySQL/Drupal information
  1539. - Added web-based installer which can:
  1540. * Check installation and run-time requirements
  1541. * Automatically generate the database configuration file
  1542. * Install pre-made installation profiles or distributions
  1543. * Import the database structure with automatic table prefixing
  1544. * Be localized
  1545. - Added new default Garland theme
  1546. - Added color module to change some themes' color schemes
  1547. - Included the jQuery JavaScript library 1.0.4 and converted all core JavaScript to use it
  1548. - Introduced the ability to alter mail sent from system
  1549. - Module system:
  1550. * Added .info files for module meta-data
  1551. * Added support for module dependencies
  1552. * Improved module installation screen
  1553. * Moved core modules to their own directories
  1554. * Added support for module uninstalling
  1555. - Added support for different cache backends
  1556. - Added support for a generic "sites/all" directory.
  1557. - Usability:
  1558. * Added support for auto-complete forms (AJAX) to user profiles.
  1559. * Made it possible to instantly assign roles to newly created user accounts.
  1560. * Improved configurability of the contact forms.
  1561. * Reorganized the settings pages.
  1562. * Made it easy to investigate popular search terms.
  1563. * Added a 'select all' checkbox and a range select feature to administration tables.
  1564. * Simplified the 'break' tag to split teasers from body.
  1565. * Use proper capitalization for titles, menu items and operations.
  1566. - Integrated urlfilter.module into filter.module
  1567. - Block system:
  1568. * Extended the block visibility settings with a role specific setting.
  1569. * Made it possible to customize all block titles.
  1570. - Poll module:
  1571. * Optionally allow people to inspect all votes.
  1572. * Optionally allow people to cancel their vote.
  1573. - Distributed authentication:
  1574. * Added default server option.
  1575. - Added default robots.txt to control crawlers.
  1576. - Database API:
  1577. * Added db_table_exists().
  1578. - Blogapi module:
  1579. * 'Blogapi new' and 'blogapi edit' nodeapi operations.
  1580. - User module:
  1581. * Added hook_profile_alter().
  1582. * E-mail verification is made optional.
  1583. * Added mass editing and filtering on admin/user/user.
  1584. - PHP Template engine:
  1585. * Add the ability to look for a series of suggested templates.
  1586. * Look for page templates based upon the path.
  1587. * Look for block templates based upon the region, module, and delta.
  1588. - Content system:
  1589. * Made it easier for node access modules to work well with each other.
  1590. * Added configurable content types.
  1591. * Changed node rendering to work with structured arrays.
  1592. - Performance:
  1593. * Improved session handling: reduces database overhead.
  1594. * Improved access checking: reduces database overhead.
  1595. * Made it possible to do memcached based session management.
  1596. * Omit sidebars when serving a '404 - Page not found': saves CPU cycles and bandwidth.
  1597. * Added an 'aggressive' caching policy.
  1598. * Added a CSS aggregator and compressor (up to 40% faster page loads).
  1599. - Removed the archive module.
  1600. - Upgrade system:
  1601. * Created space for update branches.
  1602. - Form API:
  1603. * Made it possible to programmatically submit forms.
  1604. * Improved api for multistep forms.
  1605. - Theme system:
  1606. * Split up and removed drupal.css.
  1607. * Added nested lists generation.
  1608. * Added a self-clearing block class.
  1609. Drupal 4.7.11, 2008-01-10
  1610. -------------------------
  1611. - fixed a security issue (Cross site request forgery), see SA-2008-005
  1612. - fixed a security issue (Cross site scripting, UTF8), see SA-2008-006
  1613. - fixed a security issue (Cross site scripting, register_globals), see SA-2008-007
  1614. Drupal 4.7.10, 2007-12-06
  1615. -------------------------
  1616. - fixed taxonomy feed bug introduced by SA-2007-031
  1617. Drupal 4.7.9, 2007-12-05
  1618. ------------------------
  1619. - fixed a security issue (SQL injection), see SA-2007-031
  1620. Drupal 4.7.8, 2007-10-17
  1621. ------------------------
  1622. - fixed a security issue (HTTP response splitting), see SA-2007-024
  1623. - fixed a security issue (Cross site scripting via uploads), see SA-2007-026
  1624. - fixed a security issue (API handling of unpublished comment), see SA-2007-030
  1625. Drupal 4.7.7, 2007-07-26
  1626. ------------------------
  1627. - fixed security issue (XSS), see SA-2007-018
  1628. Drupal 4.7.6, 2007-01-29
  1629. ------------------------
  1630. - fixed security issue (code execution), see SA-2007-005
  1631. Drupal 4.7.5, 2007-01-05
  1632. ------------------------
  1633. - Fixed security issue (XSS), see SA-2007-001
  1634. - Fixed security issue (DoS), see SA-2007-002
  1635. Drupal 4.7.4, 2006-10-18
  1636. ------------------------
  1637. - Fixed security issue (XSS), see SA-2006-024
  1638. - Fixed security issue (CSRF), see SA-2006-025
  1639. - Fixed security issue (Form action attribute injection), see SA-2006-026
  1640. Drupal 4.7.3, 2006-08-02
  1641. ------------------------
  1642. - Fixed security issue (XSS), see SA-2006-011
  1643. Drupal 4.7.2, 2006-06-01
  1644. ------------------------
  1645. - Fixed critical upload issue, see SA-2006-007
  1646. - Fixed taxonomy XSS issue, see SA-2006-008
  1647. - Fixed a variety of small bugs.
  1648. Drupal 4.7.1, 2006-05-24
  1649. ------------------------
  1650. - Fixed critical SQL issue, see SA-2006-005
  1651. - Fixed a serious upgrade related bug.
  1652. - Fixed a variety of small bugs.
  1653. Drupal 4.7.0, 2006-05-01
  1654. ------------------------
  1655. - Added free tagging support.
  1656. - Added a site-wide contact form.
  1657. - Theme system:
  1658. * Added the PHPTemplate theme engine and removed the Xtemplate engine.
  1659. * Converted the bluemarine theme from XTemplate to PHPTemplate.
  1660. * Converted the pushbutton theme from XTemplate to PHPTemplate.
  1661. - Usability:
  1662. * Reworked the 'request new password' functionality.
  1663. * Reworked the node and comment edit forms.
  1664. * Made it easy to add nodes to the navigation menu.
  1665. * Added site 'offline for maintenance' feature.
  1666. * Added support for auto-complete forms (AJAX).
  1667. * Added support for collapsible page sections (JS).
  1668. * Added support for resizable text fields (JS).
  1669. * Improved file upload functionality (AJAX).
  1670. * Reorganized some settings pages.
  1671. * Added friendly database error screens.
  1672. * Improved styling of update.php.
  1673. - Refactored the forms API.
  1674. * Made it possible to alter, extend or theme forms.
  1675. - Comment system:
  1676. * Added support for "mass comment operations" to ease repetitive tasks.
  1677. * Comment moderation has been removed.
  1678. - Node system:
  1679. * Reworked the revision functionality.
  1680. * Removed the bookmarklet code. Third-party modules can now handle
  1681. This.
  1682. - Upgrade system:
  1683. * Allows contributed modules to plug into the upgrade system.
  1684. - Profiles:
  1685. * Added a block to display author information along with posts.
  1686. * Added support for private profile fields.
  1687. - Statistics module:
  1688. * Added the ability to track page generation times.
  1689. * Made it possible to block certain IPs/hostnames.
  1690. - Block system:
  1691. * Added support for theme-specific block regions.
  1692. - Syndication:
  1693. * Made the aggregator module parse Atom feeds.
  1694. * Made the aggregator generate RSS feeds.
  1695. * Added RSS feed settings.
  1696. - XML-RPC:
  1697. * Replaced the XML-RPC library by a better one.
  1698. - Performance:
  1699. * Added 'loose caching' option for high-traffic sites.
  1700. * Improved performance of path aliasing.
  1701. * Added the ability to track page generation times.
  1702. - Internationalization:
  1703. * Improved Unicode string handling API.
  1704. * Added support for PHP's multibyte string module.
  1705. - Added support for PHP5's 'mysqli' extension.
  1706. - Search module:
  1707. * Made indexer smarter and more robust.
  1708. * Added advanced search operators (e.g. phrase, node type, ...).
  1709. * Added customizable result ranking.
  1710. - PostgreSQL support:
  1711. * Removed dependency on PL/pgSQL procedural language.
  1712. - Menu system:
  1713. * Added support for external URLs.
  1714. - Queue module:
  1715. * Removed from core.
  1716. - HTTP handling:
  1717. * Added support for a tolerant Base URL.
  1718. * Output URIs relative to the root, without a base tag.
  1719. Drupal 4.6.11, 2007-01-05
  1720. -------------------------
  1721. - Fixed security issue (XSS), see SA-2007-001
  1722. - Fixed security issue (DoS), see SA-2007-002
  1723. Drupal 4.6.10, 2006-10-18
  1724. -------------------------
  1725. - Fixed security issue (XSS), see SA-2006-024
  1726. - Fixed security issue (CSRF), see SA-2006-025
  1727. - Fixed security issue (Form action attribute injection), see SA-2006-026
  1728. Drupal 4.6.9, 2006-08-02
  1729. ------------------------
  1730. - Fixed security issue (XSS), see SA-2006-011
  1731. Drupal 4.6.8, 2006-06-01
  1732. ------------------------
  1733. - Fixed critical upload issue, see SA-2006-007
  1734. - Fixed taxonomy XSS issue, see SA-2006-008
  1735. Drupal 4.6.7, 2006-05-24
  1736. ------------------------
  1737. - Fixed critical SQL issue, see SA-2006-005
  1738. Drupal 4.6.6, 2006-03-13
  1739. ------------------------
  1740. - Fixed bugs, including 4 security vulnerabilities.
  1741. Drupal 4.6.5, 2005-12-12
  1742. ------------------------
  1743. - Fixed bugs: no critical bugs were identified.
  1744. Drupal 4.6.4, 2005-11-30
  1745. ------------------------
  1746. - Fixed bugs, including 3 security vulnerabilities.
  1747. Drupal 4.6.3, 2005-08-15
  1748. ------------------------
  1749. - Fixed bugs, including a critical "arbitrary PHP code execution" bug.
  1750. Drupal 4.6.2, 2005-06-29
  1751. ------------------------
  1752. - Fixed bugs, including two critical "arbitrary PHP code execution" bugs.
  1753. Drupal 4.6.1, 2005-06-01
  1754. ------------------------
  1755. - Fixed bugs, including a critical input validation bug.
  1756. Drupal 4.6.0, 2005-04-15
  1757. ------------------------
  1758. - PHP5 compliance
  1759. - Search:
  1760. * Added UTF-8 support to make it work with all languages.
  1761. * Improved search indexing algorithm.
  1762. * Improved search output.
  1763. * Impose a throttle on indexing of large sites.
  1764. * Added search block.
  1765. - Syndication:
  1766. * Made the ping module ping pingomatic.com which, in turn, will ping all the major ping services.
  1767. * Made Drupal generate RSS 2.0 feeds.
  1768. * Made RSS feeds extensible.
  1769. * Added categories to RSS feeds.
  1770. * Added enclosures to RSS feeds.
  1771. - Flood control mechanism:
  1772. * Added a mechanism to throttle certain operations.
  1773. - Usability:
  1774. * Refactored the block configuration pages.
  1775. * Refactored the statistics pages.
  1776. * Refactored the watchdog pages.
  1777. * Refactored the throttle module configuration.
  1778. * Refactored the access rules page.
  1779. * Refactored the content administration page.
  1780. * Introduced forum configuration pages.
  1781. * Added a 'add child page' link to book pages.
  1782. - Contact module:
  1783. * Added a simple contact module that allows users to contact each other using e-mail.
  1784. - Multi-site configuration:
  1785. * Made it possible to run multiple sites from a single code base.
  1786. - Added an image API: enables better image handling.
  1787. - Block system:
  1788. * Extended the block visibility settings.
  1789. - Theme system:
  1790. * Added new theme functions.
  1791. - Database backend:
  1792. * The PEAR database backend is no longer supported.
  1793. - Performance:
  1794. * Improved performance of the forum topics block.
  1795. * Improved performance of the tracker module.
  1796. * Improved performance of the node pages.
  1797. - Documentation:
  1798. * Improved and extended PHPDoc/Doxygen comments.
  1799. Drupal 4.5.8, 2006-03-13
  1800. ------------------------
  1801. - Fixed bugs, including 3 security vulnerabilities.
  1802. Drupal 4.5.7, 2005-12-12
  1803. ------------------------
  1804. - Fixed bugs: no critical bugs were identified.
  1805. Drupal 4.5.6, 2005-11-30
  1806. ------------------------
  1807. - Fixed bugs, including 3 security vulnerabilities.
  1808. Drupal 4.5.5, 2005-08-15
  1809. ------------------------
  1810. - Fixed bugs, including a critical "arbitrary PHP code execution" bug.
  1811. Drupal 4.5.4, 2005-06-29
  1812. ------------------------
  1813. - Fixed bugs, including two critical "arbitrary PHP code execution" bugs.
  1814. Drupal 4.5.3, 2005-06-01
  1815. ------------------------
  1816. - Fixed bugs, including a critical input validation bug.
  1817. Drupal 4.5.2, 2005-01-15
  1818. ------------------------
  1819. - Fixed bugs: a cross-site scripting (XSS) vulnerability has been fixed.
  1820. Drupal 4.5.1, 2004-12-01
  1821. ------------------------
  1822. - Fixed bugs: no critical bugs were identified.
  1823. Drupal 4.5.0, 2004-10-18
  1824. ------------------------
  1825. - Navigation:
  1826. * Made it possible to add, delete, rename and move menu items.
  1827. * Introduced tabs and subtabs for local tasks.
  1828. * Reorganized the navigation menus.
  1829. - User management:
  1830. * Added support for multiple roles per user.
  1831. * Made it possible to add custom profile fields.
  1832. * Made it possible to browse user profiles by field.
  1833. - Node system:
  1834. * Added support for node-level permissions.
  1835. - Comment module:
  1836. * Made it possible to leave contact information without having to register.
  1837. - Upload module:
  1838. * Added support for uploading documents (includes images).
  1839. - Forum module:
  1840. * Added support for sticky forum topics.
  1841. * Made it possible to track forum topics.
  1842. - Syndication:
  1843. * Added support for RSS ping-notifications of http://technorati.com/.
  1844. * Refactored the categorization of syndicated news items.
  1845. * Added an URL alias for 'rss.xml'.
  1846. * Improved date parsing.
  1847. - Database backend:
  1848. * Added support for multiple database connections.
  1849. * The PostgreSQL backend does no longer require PEAR.
  1850. - Theme system:
  1851. * Changed all GIFs to PNGs.
  1852. * Reorganised the handling of themes, template engines, templates and styles.
  1853. * Unified and extended the available theme settings.
  1854. * Added theme screenshots.
  1855. - Blocks:
  1856. * Added 'recent comments' block.
  1857. * Added 'categories' block.
  1858. - Blogger API:
  1859. * Added support for auto-discovery of blogger API via RSD.
  1860. - Performance:
  1861. * Added support for sending gzip compressed pages.
  1862. * Improved performance of the forum module.
  1863. - Accessibility:
  1864. * Improved the accessibility of the archive module's calendar.
  1865. * Improved form handling and error reporting.
  1866. * Added HTTP redirects to prevent submitting twice when refreshing right after a form submission.
  1867. - Refactored 403 (forbidden) handling and added support for custom 403 pages.
  1868. - Documentation:
  1869. * Added PHPDoc/Doxygen comments.
  1870. - Filter system:
  1871. * Added support for using multiple input formats on the site
  1872. * Expanded the embedded PHP-code feature so it can be used everywhere
  1873. * Added support for role-dependent filtering, through input formats
  1874. - UI translation:
  1875. * Managing translations is now completely done through the administration interface
  1876. * Added support for importing/exporting gettext .po files
  1877. Drupal 4.4.3, 2005-06-01
  1878. ------------------------
  1879. - Fixed bugs, including a critical input validation bug.
  1880. Drupal 4.4.2, 2004-07-04
  1881. ------------------------
  1882. - Fixed bugs: no critical bugs were identified.
  1883. Drupal 4.4.1, 2004-05-01
  1884. ------------------------
  1885. - Fixed bugs: no critical bugs were identified.
  1886. Drupal 4.4.0, 2004-04-01
  1887. ------------------------
  1888. - Added support for the MetaWeblog API and MovableType extensions.
  1889. - Added a file API: enables better document management.
  1890. - Improved the watchdog and search module to log search keys.
  1891. - News aggregator:
  1892. * Added support for conditional GET.
  1893. * Added OPML feed subscription list.
  1894. * Added support for , , , , and .
  1895. - Comment module:
  1896. * Made it possible to disable the "comment viewing controls".
  1897. - Performance:
  1898. * Improved module loading when serving cached pages.
  1899. * Made it possible to automatically disable modules when under heavy load.
  1900. * Made it possible to automatically disable blocks when under heavy load.
  1901. * Improved performance and memory footprint of the locale module.
  1902. - Theme system:
  1903. * Made all theme functions start with 'theme_'.
  1904. * Made all theme functions return their output.
  1905. * Migrated away from using the BaseTheme class.
  1906. * Added many new theme functions and refactored existing theme functions.
  1907. * Added avatar support to 'Xtemplate'.
  1908. * Replaced theme 'UnConeD' by 'Chameleon'.
  1909. * Replaced theme 'Marvin' by 'Pushbutton'.
  1910. - Usability:
  1911. * Added breadcrumb navigation to all pages.
  1912. * Made it possible to add context-sensitive help to all pages.
  1913. * Replaced drop-down menus by radio buttons where appropriate.
  1914. * Removed the 'magic_quotes_gpc = 0' requirement.
  1915. * Added a 'book navigation' block.
  1916. - Accessibility:
  1917. * Made themes degrade gracefully in absence of CSS.
  1918. * Grouped form elements using '
    ' and '' tags.
  1919. * Added '
  1920. - Refactored 404 (file not found) handling and added support for custom 404 pages.
  1921. - Improved the filter system to prevent conflicts between filters:
  1922. * Made it possible to change the order in which filters are applied.
  1923. - Documentation:
  1924. * Added PHPDoc/Doxygen comments.
  1925. Drupal 4.3.2, 2004-01-01
  1926. ------------------------
  1927. - Fixed bugs: no critical bugs were identified.
  1928. Drupal 4.3.1, 2003-12-01
  1929. ------------------------
  1930. - Fixed bugs: no critical bugs were identified.
  1931. Drupal 4.3.0, 2003-11-01
  1932. ------------------------
  1933. - Added support for configurable URLs.
  1934. - Added support for sortable table columns.
  1935. - Database backend:
  1936. * Added support for selective database table prefixing.
  1937. - Performance:
  1938. * Optimized many SQL queries for speed by converting left joins to inner joins.
  1939. - Comment module:
  1940. * Rewrote the comment housekeeping code to be much more efficient and scalable.
  1941. * Changed the comment module to use the standard pager.
  1942. - User module:
  1943. * Added support for multiple sessions per user.
  1944. * Added support for anonymous user sessions.
  1945. - Forum module:
  1946. * Improved the forum views and the themability thereof.
  1947. - Book module:
  1948. * Improved integration of non-book nodes in the book outline.
  1949. - Usability:
  1950. * Added support for "mass node operations" to ease repetitive tasks.
  1951. * Added support for breadcrumb navigation to several modules' user pages.
  1952. * Integrated the administration pages with the normal user pages.
  1953. Drupal 4.2.0, 2003-08-01
  1954. ------------------------
  1955. - Added support for clean URLs.
  1956. - Added textarea hook and support for onload attributes: enables integration of WYSIWYG editors.
  1957. - Rewrote the RSS/RDF parser:
  1958. * It will now use PHP's built-in XML parser to parse news feeds.
  1959. - Rewrote the administration pages:
  1960. * Improved the navigational elements and added breadcrumb navigation.
  1961. * Improved the look and feel.
  1962. * Added context-sensitive help.
  1963. - Database backend:
  1964. * Fixed numerous SQL queries to make Drupal ANSI compliant.
  1965. * Added MSSQL database scheme.
  1966. - Search module:
  1967. * Changed the search module to use implicit AND'ing instead of implicit OR'ing.
  1968. - Node system:
  1969. * Replaced the "post content" permission by more fine-grained permissions.
  1970. * Improved content submission:
  1971. + Improved teasers: teasers are now optional, teaser length can be configured, teaser and body are edited in a single textarea, users will no longer be bothered with teasers when the post is too short for one.
  1972. + Added the ability to preview both the short and the full version of your posts.
  1973. * Extended the node API which allows for better integration.
  1974. * Added default node settings to control the behavior for promotion, moderation and other options.
  1975. - Themes:
  1976. * Replaced theme "Goofy" by "Xtemplate", a template driven theme.
  1977. - Removed the 'register_globals = on' requirement.
  1978. - Added better installation instructions.
  1979. Drupal 4.1.0, 2003-02-01
  1980. ------------------------
  1981. - Collaboratively revised and expanded the Drupal documentation.
  1982. - Rewrote comment.module:
  1983. * Reintroduced comment rating/moderation.
  1984. * Added support for comment paging.
  1985. * Performance improvements: improved comment caching, faster SQL queries, etc.
  1986. - Rewrote block.module:
  1987. * Performance improvements: blocks are no longer rendered when not displayed.
  1988. - Rewrote forum.module:
  1989. * Added a lot of features one can find in stand-alone forum software including but not limited to support for topic paging, added support for icons, rewrote the statistics module, etc.
  1990. - Rewrote statistics.module:
  1991. * Collects access counts for each node, referrer logs, number of users/guests.
  1992. * Export blocks displaying top viewed nodes over last 24 hour period, top viewed nodes over all time, last nodes viewed, how many users/guest online.
  1993. - Added throttle.module:
  1994. * Auto-throttle congestion control mechanism: Drupal can adapt itself based on the server load.
  1995. - Added profile.module:
  1996. * Enables to extend the user and registration page.
  1997. - Added pager support to the main page.
  1998. - Replaced weblogs.module by ping.module:
  1999. * Added support for normal and RSS notifications of http://blo.gs/.
  2000. * Added support for RSS ping-notifications of http://weblogs.com/.
  2001. - Removed the rating module
  2002. - Themes:
  2003. * Removed a significant portion of hard-coded mark-up.
  2004. Drupal 4.0.0, 2002-06-15
  2005. ------------------------
  2006. - Added tracker.module:
  2007. * Replaces the previous "your [site]" links (recent comments and nodes).
  2008. - Added weblogs.module:
  2009. * This will ping weblogs.com when new content is promoted.
  2010. - Added taxonomy module which replaces the meta module.
  2011. * Supports relations, hierarchies and synonyms.
  2012. - Added a caching system:
  2013. * Speeds up pages for anonymous users and reduces system load.
  2014. - Added support for external SMTP libraries.
  2015. - Added an archive extension to the calendar.
  2016. - Added support for the Blogger API.
  2017. - Themes:
  2018. * Cleaned up the theme system.
  2019. * Moved themes that are not maintained to contributions CVS repository.
  2020. - Database backend:
  2021. * Changed to PEAR database abstraction layer.
  2022. * Using ANSI SQL queries to be more portable.
  2023. - Rewrote the user system:
  2024. * Added support for Drupal authentication through XML-RPC and through a Jabber server.
  2025. * Added support for modules to add more user data.
  2026. * Users may delete their own account.
  2027. * Added who's new and who's online blocks.
  2028. - Changed block system:
  2029. * Various hard coded blocks are now dynamic.
  2030. * Blocks can now be enabled and/or be set by the user.
  2031. * Blocks can be set to only show up on some pages.
  2032. * Merged box module with block module.
  2033. - Node system:
  2034. * Blogs can be updated.
  2035. * Teasers (abstracts) on all node types.
  2036. * Improved error checking.
  2037. * Content versioning support.
  2038. * Usability improvements.
  2039. - Improved book module to support text, HTML and PHP pages.
  2040. - Improved comment module to mark new comments.
  2041. - Added a general outliner which will let any node type be linked to a book.
  2042. - Added an update script that lets you upgrade from previous releases or on a day to day basis when using the development tree.
  2043. - Search module:
  2044. * Improved the search system by making it context sensitive.
  2045. * Added indexing.
  2046. - Various updates:
  2047. * Changed output to valid XHTML.
  2048. * Improved multiple sites using the same Drupal database support.
  2049. * Added support for session IDs in URLs instead of cookies.
  2050. * Made the type of content on the front page configurable.
  2051. * Made each cloud site have its own settings.
  2052. * Modules and themes can now be enabled/disabled using the administration pages.
  2053. * Added URL abstraction for links.
  2054. * Usability changes (renamed links, better UI, etc).
  2055. - Collaboratively revised and expanded the Drupal documentation.
  2056. Drupal 3.0.1, 2001-10-15
  2057. ------------------------
  2058. - Various updates:
  2059. * Added missing translations
  2060. * Updated the themes: tidied up some HTML code and added new Drupal logos.
  2061. Drupal 3.0.0, 2001-09-15
  2062. ------------------------
  2063. - Major overhaul of the entire underlying design:
  2064. * Everything is based on nodes: nodes are a conceptual "black box" to couple and manage different types of content and that promotes reusing existing code, thus reducing the complexity and size of Drupal as well as improving long-term stability.
  2065. - Rewrote submission/moderation queue and renamed it to queue.module.
  2066. - Removed FAQ and documentation module and merged them into a "book module".
  2067. - Removed ban module and integrated it into account.module as "access control":
  2068. * Access control is based on much more powerful regular expressions (regex) now rather than on MySQL pattern matching.
  2069. - Rewrote watchdog and submission throttle:
  2070. * Improved watchdog messages and added watchdog filter.
  2071. - Rewrote headline code and renamed it to import.module and export.module:
  2072. * Added various improvements, including a better parser, bundles and better control over individual feeds.
  2073. - Rewrote section code and renamed it to meta.module:
  2074. * Supports unlimited amount of nested topics. Topics can be nested to create a multi-level hierarchy.
  2075. - Rewrote configuration file resolving:
  2076. * Drupal tries to locate a configuration file that matches your domain name or uses conf.php if the former failed. Note also that the configuration files got renamed from .conf to .php for security's sake on mal-configured Drupal sites.
  2077. - Added caching support which makes Drupal extremely scalable.
  2078. - Added access.module:
  2079. * Allows you to set up 'roles' (groups) and to bind a set of permissions to each group.
  2080. - Added blog.module.
  2081. - Added poll.module.
  2082. - Added system.module:
  2083. * Moved most of the configuration options from hostname.conf to the new administration section.
  2084. * Added support for custom "filters".
  2085. - Added statistics.module
  2086. - Added moderate.module:
  2087. * Allows to assign users editorial/moderator rights to certain nodes or topics.
  2088. - Added page.module:
  2089. * Allows creation of static (and dynamic) pages through the administration interface.
  2090. - Added help.module:
  2091. * Groups all available module documentation on a single page.
  2092. - Added forum.module:
  2093. * Added an integrated forum.
  2094. - Added cvs.module and cvs-to-sql.pl:
  2095. * Allows to display and mail CVS log messages as daily digests.
  2096. - Added book.module:
  2097. * Allows collaborative handbook writing: primary used for Drupal documentation.
  2098. - Removed cron.module and integrated it into conf.module.
  2099. - Removed module.module as it was no longer needed.
  2100. - Various updates:
  2101. * Added "auto-post new submissions" feature versus "moderate new submissions".
  2102. * Introduced links/Drupal tags: [[link]]
  2103. * Added preview functionality when submitting new content (such as a story) from the administration pages.
  2104. * Made the administration section only show those links a user has access to.
  2105. * Made all modules use specific form_* functions to guarantee a rock-solid forms and more consistent layout.
  2106. * Improved scheduler:
  2107. + Content can be scheduled to be 'posted', 'queued' and 'hidden'.
  2108. * Improved account module:
  2109. + Added "access control" to allow/deny certain usernames/e-mail addresses/hostnames.
  2110. * Improved locale module:
  2111. + Added new overview to easy the translation process.
  2112. * Improved comment module:
  2113. + Made it possible to permanently delete comments.
  2114. * Improved rating module
  2115. * Improved story module:
  2116. + Added preview functionality for administrators.
  2117. + Made it possible to permanently delete stories.
  2118. * Improved themes:
  2119. + W3C validation on a best effort basis.
  2120. + Removed $theme->control() from themes.
  2121. + Added theme "goofy".
  2122. - Collaboratively revised and expanded the Drupal documentation.
  2123. Drupal 2.0.0, 2001-03-15
  2124. ------------------------
  2125. - Rewrote the comment/discussion code:
  2126. * Comment navigation should be less confusing now.
  2127. * Additional/alternative display and order methods have been added.
  2128. * Modules can be extended with a "comment system": modules can embed the existing comment system without having to write their own, duplicate comment system.
  2129. - Added sections and section manager:
  2130. * Story sections can be maintained from the administration pages.
  2131. * Story sections make the open submission more adaptive in that you can set individual post, dump and expiration thresholds for each section according to the story type and urgency level: stories in certain sections do not "expire" and might stay interesting and active as time passes by, whereas news-related stories are only considered "hot" over a short period of time.
  2132. - Multiple vhosts + multiple directories:
  2133. * You can set up multiple Drupal sites on top of the same physical source tree either by using vhosts or sub-directories.
  2134. - Added "user ratings" similar to SlashCode's Karma or Scoop's Mojo:
  2135. * All rating logic is packed into a module to ease experimenting with different rating heuristics/algorithms.
  2136. - Added "search infrastructure":
  2137. * Improved search page and integrated search functionality in the administration pages.
  2138. - Added translation / localization / internationalization support:
  2139. * Because many people would love to see their website showing a lot less of English, and far more of their own language, Drupal provides a framework to set up a multi-lingual website or to overwrite the default English text in English.
  2140. - Added fine-grained user permission (or group) system:
  2141. * Users can be granted access to specific administration sections. Example: a FAQ maintainer can be given access to maintain the FAQ and translators can be given access to the translation pages.
  2142. - Added FAQ module
  2143. - Changed the "open submission queue" into a (optional) module.
  2144. - Various updates:
  2145. * Improved account module:
  2146. + User accounts can be deleted.
  2147. + Added fine-grained permission support.
  2148. * Improved block module
  2149. * Improved diary module:
  2150. + Diary entries can be deleted
  2151. * Improved headline module:
  2152. + Improved parser to support more "generic" RDF/RSS/XML backend.
  2153. * Improved module module
  2154. * Improved watchdog module
  2155. * Improved database abstraction layer
  2156. * Improved themes:
  2157. + W3C validation on a best effort basis
  2158. + Added theme "example" (alias "Stone Age")
  2159. * Added new scripts to directory "scripts"
  2160. * Added directory "misc"
  2161. * Added CREDITS file
  2162. - Revised documentation
  2163. Drupal 1.0.0, 2001-01-15
  2164. ------------------------
  2165. - Initial release