Projet

Général

Profil

Paste
Télécharger (91,3 ko) Statistiques
| Branche: | Révision:

root / drupal7 / CHANGELOG.txt @ b4adf10d

1

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
567
Drupal 7.9, 2011-10-26
568
----------------------
569
- Critical fixes to OpenID to spec violations that could allow for
570
  impersonation in certain scenarios. Existing OpenID users should see
571
  http://drupal.org/node/1120290#comment-5092796 for more information on
572
  transitioning.
573
- Fixed files getting lost when adding multiple files to multiple file fields
574
  at the same time.
575
- Improved usability of the clean URL test screens.
576
- Restored height/width attributes on images run through the theme system.
577
- Fixed usability bug with first password field being pre-filled by certain
578
  browser plugins.
579
- Fixed file_usage_list() so that it can return more than one result.
580
- Fixed bug preventing preview of private images on node form.
581
- Fixed PDO error when inserting an aggregator title longer than 255 characters.
582
- Spelled out what TRADITIONAL means in MySQL sql_mode.
583
- Deprecated "!=" operator for DBTNG; should be "<>".
584
- Added two new API functions (menu_tree_set_path()/menu_tree_get_path()) were
585
  added in order to enable setting the active menu trail for dynamically
586
  generated menu paths.
587
- Added new "fast 404" capability in settings.php to bypass Drupal bootstrap
588
  when serving 404 pages for certain file types.
589
- Added format_string() function which can perform string munging ala the t()
590
  function without the overhead of the translation system.
591
- Numerous #states system fixes.
592
- Numerous EntityFieldQuery, DBTNG, and SQLite fixes.
593
- Numerous Shortcut module fixes.
594
- Numerous language system fixes.
595
- Numerous token fixes.
596
- Numerous CSS fixes.
597
- Numerous upgrade path fixes.
598
- Numerous minor string fixes.
599
- Numerous notice fixes.
600

    
601
Drupal 7.8, 2011-08-31
602
----------------------
603
- Fixed critical upgrade path issue with multilingual sites, leading to lost
604
  content.
605
- Numerous fixes to upgrade path, preventing fatal errors due to incorrect
606
  dependencies.
607
- Fixed issue with saving files on hosts with open_basedir restrictions.
608
- Fixed Update manger error when used with Overlay.
609
- Fixed RTL support in Seven administration theme and Overlay.
610
- Fixes to nested transaction support.
611
- Introduced performance pattern to reduce Drupal core's RAM usage.
612
- Added support for HTML 5 tags to filter_xss_admin().
613
- Added exception handling to cron.
614
- Added new hook hook_field_widget_form_alter() for contribtued modules.
615
- element_validate_*() functions now available to contrib.
616
- Added new maintainers for several subsystems.
617
- Numerous testing system improvements.
618
- Numerous markup and CSS fixes.
619
- Numerous poll module fixes.
620
- Numerous notice/warning fixes.
621
- Numerous documentation fixes.
622
- Numerous token fixes.
623

    
624
Drupal 7.7, 2011-07-27
625
----------------------
626
- Fixed VERSION string.
627

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

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

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

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

    
664
Drupal 7.2, 2011-05-25
665
----------------------
666
- Added a default .gitignore file.
667
- Improved PostgreSQL and SQLite support.
668
- Numerous critical performance improvements.
669
- Numerous critical fixes to the upgrade path.
670
- Numerous fixes to language and translation systems.
671
- Numerous fixes to AJAX and #states systems.
672
- Improvements to the locking system.
673
- Numerous documentation fixes.
674
- Numerous styling and theme system fixes.
675
- Numerous fixes for schema mis-matches between Drupal 6 and 7.
676
- Minor internal API clean-ups.
677

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

    
682
Drupal 7.0, 2011-01-05 
683
----------------------
684
- Database:
685
    * Fully rewritten database layer utilizing PHP 5's PDO abstraction layer.
686
    * Drupal now requires MySQL >= 5.0.15 or PostgreSQL >= 8.3.
687
    * Added query builders for INSERT, UPDATE, DELETE, MERGE, and SELECT queries.
688
    * Support for master/slave replication, transactions, multi-insert queries,
689
      and other features.
690
    * Added support for the SQLite database engine.
691
    * Default to InnoDB engine, rather than MyISAM, on MySQL when available.
692
      This offers increased scalability and data integrity.
693
- Security:
694
    * Protected cron.php -- cron will only run if the proper key is provided.
695
    * Implemented a pluggable password system and much stronger password hashes
696
      that are compatible with the Portable PHP password hashing framework.
697
    * Rate limited login attempts to prevent brute-force password guessing, and
698
      improved the flood control API to allow variable time windows and
699
      identifiers for limiting user access to resources.
700
    * Transformed the "Update status" module into the "Update manager" which
701
      can securely install or update modules and themes via a web interface.
702
- Usability:
703
    * Added contextual links (a.k.a. local tasks) to page elements, such as
704
      blocks, nodes, or comments, which allows to perform the most common tasks
705
      with a single click only.
706
    * Improved installer requirements check.
707
    * Improved support for integration of WYSIWYG editors.
708
    * Implemented drag-and-drop positioning for input format listings.
709
    * Implemented drag-and-drop positioning for language listing.
710
    * Implemented drag-and-drop positioning for poll options.
711
    * Provided descriptions and human-readable names for user permissions.
712
    * Removed comment controls for users.
713
    * Removed display order settings for comment module. Comment display
714
      order can now be customized using the Views module.
715
    * Removed the 'related terms' feature from taxonomy module since this can
716
      now be achieved with Field API.
717
    * Added additional features to the default installation profile, and
718
      implemented a "slimmed down" profile designed for developers.
719
    * Added a built-in, automated cron run feature, which is triggered by site
720
      visitors.
721
    * Added an administrator role which is assigned all permissions for
722
      installed modules automatically.
723
    * Image toolkits are now provided by modules (rather than requiring a
724
      manual file copy to the includes directory).
725
    * Added an edit tab to taxonomy term pages.
726
    * Redesigned password strength validator.
727
    * Redesigned the add content type screen.
728
    * Highlight duplicate URL aliases.
729
    * Renamed "input formats" to "text formats".
730
    * Moved text format permissions to the main permissions page.
731
    * Added configurable ability for users to cancel their own accounts.
732
    * Added "vertical tabs", a reusable interface component that features
733
      automatic summaries and increases usability.
734
    * Replaced fieldsets on node edit and add pages with vertical tabs.
735
- Performance:
736
    * Improved performance on uncached page views by loading multiple core
737
      objects in a single database query.
738
    * Improved performance for logged-in users by reducing queries for path
739
      alias lookups.
740
    * Improved support for HTTP proxies (including reverse proxies), allowing
741
      anonymous page views to be served entirely from the proxy.
742
- Documentation:
743
    * Hook API documentation now included in Drupal core.
744
- News aggregator:
745
    * Added OPML import functionality for RSS feeds.
746
    * Optionally, RSS feeds may be configured to not automatically generate feed blocks.
747
- Search:
748
    * Added support for language-aware searches.
749
- Aggregator:
750
    * Introduced architecture that allows pluggable parsers and processors for
751
      syndicating RSS and Atom feeds.
752
    * Added options to suspend updating specific feeds and never discard feeds
753
      items.
754
- Testing:
755
    * Added test framework and tests.
756
- Improved time zone support:
757
    * Drupal now uses PHP's time zone database when rendering dates in local
758
      time. Site-wide and user-configured time zone offsets have been converted
759
      to time zone names, e.g. Africa/Abidjan.
760
    * In some cases the upgrade and install scripts do not choose the preferred
761
      site default time zone. The automatically-selected time zone can be
762
      corrected at admin/config/regional/settings.
763
    * If your site is being upgraded from Drupal 6 and you do not have the
764
      contributed date or event modules installed, user time zone settings will
765
      fallback to the system time zone and will have to be reconfigured by each user.
766
    * User-configured time zones now serve as the default time zone for PHP
767
      date/time functions.
768
- Filter system:
769
    * Revamped the filter API and text format storage.
770
    * Added support for default text formats to be assigned on a per-role basis.
771
    * Refactored the HTML corrector to take advantage of PHP 5 features.
772
- User system:
773
    * Added clean API functions for creating, loading, updating, and deleting
774
      user roles and permissions.
775
    * Refactored the "access rules" component of user module: The user module
776
      now provides a simple interface for blocking single IP addresses. The
777
      previous functionality in the user module for restricting certain e-mail
778
      addresses and usernames is now available as a contributed module. Further,
779
      IP address range blocking is no longer supported and should be implemented
780
      at the operating system level.
781
    * Removed per-user themes: Contributed modules with similar functionality
782
      are available.
783
- OpenID:
784
    * Added support for Gmail and Google Apps for Domain identifiers. Users can
785
      now login with their user@example.com identifier when example.com is powered
786
      by Google.
787
    * Made the OpenID module more pluggable.
788
- Added code registry:
789
    * Using the registry, modules declare their includable files via their .info file,
790
      allowing Drupal to lazy-load classes and interfaces as needed.
791
- Theme system:
792
    * Removed the Bluemarine, Chameleon and Pushbutton themes. These themes live
793
      on as contributed themes (http://drupal.org/project/bluemarine,
794
      http://drupal.org/project/chameleon and http://drupal.org/project/pushbutton).
795
    * Added Stark theme to make analyzing Drupal's default HTML and CSS easier.
796
    * Added Seven as the default administration theme.
797
    * Variable preprocessing of theme hooks prior to template rendering now goes
798
      through two phases: a 'preprocess' phase and a new 'process' phase. See
799
      http://api.drupal.org/api/function/theme/7 for details.
800
    * Theme hooks implemented as functions (rather than as templates) can now
801
      also have preprocess (and process) functions. See
802
      http://api.drupal.org/api/function/theme/7 for details.
803
    * Added Bartik as the default theme.
804
- File handling:
805
    * Files are now first class Drupal objects with file_load(), file_save(),
806
      and file_validate() functions and corresponding hooks.
807
    * The file_move(), file_copy() and file_delete() functions now operate on
808
      file objects and invoke file hooks so that modules are notified and can
809
      respond to changes.
810
    * For the occasions when only basic file manipulation are needed--such as
811
      uploading a site logo--that don't require the overhead of databases and
812
      hooks, the current unmanaged copy, move and delete operations have been
813
      preserved but renamed to file_unmanaged_*().
814
    * Rewrote file handling to use PHP stream wrappers to enable support for
815
      both public and private files and to support pluggable storage mechanisms
816
      and access to remote resources (e.g. S3 storage or Flickr photos).
817
    * The mime_extension_mapping variable has been removed. Modules that need to
818
      alter the default MIME type extension mappings should implement
819
      hook_file_mimetype_mapping_alter().
820
    * Added the hook_file_url_alter() hook, which makes it possible to serve
821
      files from a CDN.
822
    * Added a field specifically for uploading files, previously provided by
823
      the contributed module FileField.
824
- Image handling:
825
    * Improved image handling, including better support for add-on image
826
      libraries.
827
    * Added API and interface for creating advanced image thumbnails.
828
    * Inclusion of additional effects such as rotate and desaturate.
829
    * Added a field specifically for uploading images, previously provided by
830
      the contributed module ImageField.
831
- Added aliased multi-site support:
832
    * Added support for mapping domain names to sites directories.
833
- Added RDF support:
834
    * Modules can declare RDF namespaces which are serialized in the <html> tag
835
      for RDFa support.
836
    * Modules can specify how their data structure maps to RDF.
837
    * Added support for RDFa export of nodes, comments, terms, users, etc. and
838
      their fields.
839
- Search engine optimization and web linking:
840
    * Added a rel="canonical" link on node and comment pages to prevent
841
      duplicate content indexing by search engines.
842
    * Added a default rel="shortlink" link on node and comment pages that
843
      advertises a short link as an alternative URL to third-party services.
844
    * Meta information is now alterable by all modules before rendering.
845
- Field API:
846
    * Custom data fields may be attached to nodes, users, comments and taxonomy
847
      terms.
848
    * Node bodies and teasers are now Field API fields instead of
849
      being a hard-coded property of node objects.
850
    * In addition, any other object type may register with Field API
851
      and allow custom data fields to be attached to itself.
852
    * Provides most of the features of the former Content Construction
853
      Kit (CCK) module.
854
    * Taxonomy terms are now Field API fields that can be added to any fieldable
855
      object.
856
- Installer:
857
    * Refactored the installer into an API that allows Drupal to be installed
858
      via a command line script.
859
- Page organization
860
    * Made the help text area a full featured region with blocks.
861
    * Site mission is replaced with the highlighted content block region and
862
      separate RSS feed description settings.
863
    * The footer message setting was removed in favor of custom blocks.
864
    * Made the main page content a block which can be moved and ordered
865
      with other blocks in the same region.
866
    * Blocks can now return structured arrays for later rendering just
867
      like page callbacks.
868
- Translation system
869
    * The translation system now supports message context (msgctxt).
870
    * Added support for translatable fields to Field API.
871
- JavaScript changes
872
    * Upgraded the core JavaScript library to jQuery version 1.4.4.
873
    * Upgraded the jQuery Forms library to 2.52.
874
    * Added jQuery UI 1.8.7, which allows improvements to Drupal's user
875
      experience.
876
- Better module version support
877
    * Modules now can specify which version of another module they depend on.
878
- Removed modules from core
879
    * The following modules have been removed from core, because contributed
880
      modules with similar functionality are available:
881
      * Blog API module
882
      * Ping module
883
      * Throttle module
884
- Improved node access control system.
885
    * All modules may now influence the access to a node at runtime, not just
886
      the module that defined a node.
887
    * Users may now be allowed to bypass node access restrictions without giving
888
      them complete access to the site.
889
    * Access control affects both published and unpublished nodes.
890
    * Numerous other improvements to the node access system.
891
- Actions system
892
    * Simplified definitions of actions and triggers.
893
    * Removed dependency on the combination of hooks and operations. Triggers
894
      now directly map to module hooks.
895
- Task handling
896
    * Added a queue API to process many or long-running tasks.
897
    * Added queue API support to cron API.
898
    * Added a locking framework to coordinate long-running operations across
899
      requests.
900

    
901
Drupal 6.23-dev, xxxx-xx-xx (development release)
902
-----------------------
903

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
1054
Drupal 6.0, 2008-02-13
1055
----------------------
1056
- New, faster and better menu system.
1057
- New watchdog as a hook functionality.
1058
   * New hook_watchdog that can be implemented by any module to route log
1059
     messages to various destinations.
1060
   * Expands the severity levels from 3 (Error, Warning, Notice) to the 8
1061
     levels defined in RFC 3164.
1062
   * The watchdog module is now called dblog, and is optional, but enabled by
1063
     default in the default installation profile.
1064
   * Extended the database log module so log messages can be filtered.
1065
   * Added syslog module: useful for monitoring large Drupal installations.
1066
- Added optional e-mail notifications when users are approved, blocked, or
1067
  deleted.
1068
- Drupal works with error reporting set to E_ALL.
1069
- Added scripts/drupal.sh to execute Drupal code from the command line. Useful
1070
  to use Drupal as a framework to build command-line tools.
1071
- Made signature support optional and made it possible to theme signatures.
1072
- Made it possible to filter the URL aliases on the URL alias administration
1073
  screen.
1074
- Language system improvements:
1075
    * Support for right to left languages.
1076
    * Language detection based on parts of the URL.
1077
    * Browser based language detection.
1078
    * Made it possible to specify a node's language.
1079
    * Support for translating posts on the site to different languages.
1080
    * Language dependent path aliases.
1081
    * Automatically import translations when adding a new language.
1082
    * JavaScript interface translation.
1083
    * Automatically import a module's translation upon enabling that module.
1084
- Moved "PHP input filter" to a standalone module so it can be deleted for
1085
  security reasons.
1086
- Usability:
1087
    * Improved handling of teasers in posts.
1088
    * Added sticky table headers.
1089
    * Check for clean URL support automatically with JavaScript.
1090
    * Removed default/settings.php. Instead the installer will create it from
1091
      default.settings.php.
1092
    * Made it possible to configure your own date formats.
1093
    * Remember anonymous comment posters.
1094
    * Only allow modules and themes to be enabled that have explicitly been
1095
      ported to the correct core API version.
1096
    * Can now specify the minimum PHP version required for a module within the
1097
      .info file.
1098
    * Drupal core no longer requires CREATE TEMPORARY TABLES or LOCK TABLES
1099
      database rights.
1100
    * Dynamically check password strength and confirmation.
1101
    * Refactored poll administration.
1102
    * Implemented drag-and-drop positioning for blocks, menu items, taxonomy
1103
      vocabularies and terms, forums, profile fields, and input format filters.
1104
- Theme system:
1105
    * Added .info files to themes and made it easier to specify regions and
1106
      features.
1107
    * Added theme registry: modules can directly provide .tpl.php files for
1108
      their themes without having to create theme_ functions.
1109
    * Used the Garland theme for the installation and maintenance pages.
1110
    * Added theme preprocess functions for themes that are templates.
1111
    * Added support for themeable functions in JavaScript.
1112
- Refactored update.php to a generic batch API to be able to run time-consuming
1113
  operations in multiple subsequent HTTP requests.
1114
- Installer:
1115
    * Themed the installer with the Garland theme.
1116
    * Added form to provide initial site information during installation.
1117
    * Added ability to provide extra installation steps programmatically.
1118
    * Made it possible to import interface translations during installation.
1119
- Added the HTML corrector filter:
1120
    * Fixes faulty and chopped off HTML in postings.
1121
    * Tags are now automatically closed at the end of the teaser.
1122
- Performance:
1123
    * Made it easier to conditionally load .include files and split up many core
1124
      modules.
1125
    * Added a JavaScript aggregator.
1126
    * Added block-level caching, improving performance for both authenticated
1127
      and anonymous users.
1128
    * Made Drupal work correctly when running behind a reverse proxy like
1129
      Squid or Pound.
1130
- File handling improvements:
1131
    * Entries in the files table are now keyed to a user instead of a node.
1132
    * Added reusable validation functions to check for uploaded file sizes,
1133
      extensions, and image resolution.
1134
    * Added ability to create and remove temporary files during a cron job.
1135
- Forum improvements:
1136
    * Any node type may now be posted in a forum.
1137
- Taxonomy improvements:
1138
    * Descriptions for terms are now shown on taxonomy/term pages as well
1139
      as RSS feeds.
1140
    * Added versioning support to categories by associating them with node
1141
      revisions.
1142
- Added support for OpenID.
1143
- Added support for triggering configurable actions.
1144
- Added the Update status module to automatically check for available updates
1145
  and warn sites if they are missing security updates or newer versions.
1146
  Sites deploying from CVS should use http://drupal.org/project/cvs_deploy.
1147
  Advanced settings provided by http://drupal.org/project/update_advanced.
1148
- Upgraded the core JavaScript library to jQuery version 1.2.3.
1149
- Added a new Schema API, which provides built-in support for core and
1150
  contributed modules to work with databases other than MySQL.
1151
- Removed drupal.module. The functionality lives on as the Site network
1152
  contributed module (http://drupal.org/project/site_network).
1153
- Removed old system updates. Updates from Drupal versions prior to 5.x will
1154
  require upgrading to 5.x before upgrading to 6.x.
1155

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
1245
Drupal 5.7, 2008-01-28
1246
----------------------
1247
- fixed the input format configuration page.
1248
- fixed a variety of small bugs.
1249

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

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

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

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

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

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

    
1288
Drupal 5.0, 2007-01-15
1289
----------------------
1290
- Completely retooled the administration page
1291
    * /Admin now contains an administration page which may be themed
1292
    * Reorganised administration menu items by task and by module
1293
    * Added a status report page with detailed PHP/MySQL/Drupal information
1294
- Added web-based installer which can:
1295
    * Check installation and run-time requirements
1296
    * Automatically generate the database configuration file
1297
    * Install pre-made installation profiles or distributions
1298
    * Import the database structure with automatic table prefixing
1299
    * Be localized
1300
- Added new default Garland theme
1301
- Added color module to change some themes' color schemes
1302
- Included the jQuery JavaScript library 1.0.4 and converted all core JavaScript to use it
1303
- Introduced the ability to alter mail sent from system
1304
- Module system:
1305
    * Added .info files for module meta-data
1306
    * Added support for module dependencies
1307
    * Improved module installation screen
1308
    * Moved core modules to their own directories
1309
    * Added support for module uninstalling
1310
- Added support for different cache backends
1311
- Added support for a generic "sites/all" directory.
1312
- Usability:
1313
    * Added support for auto-complete forms (AJAX) to user profiles.
1314
    * Made it possible to instantly assign roles to newly created user accounts.
1315
    * Improved configurability of the contact forms.
1316
    * Reorganized the settings pages.
1317
    * Made it easy to investigate popular search terms.
1318
    * Added a 'select all' checkbox and a range select feature to administration tables.
1319
    * Simplified the 'break' tag to split teasers from body.
1320
    * Use proper capitalization for titles, menu items and operations.
1321
- Integrated urlfilter.module into filter.module
1322
- Block system:
1323
    * Extended the block visibility settings with a role specific setting.
1324
    * Made it possible to customize all block titles.
1325
- Poll module:
1326
    * Optionally allow people to inspect all votes.
1327
    * Optionally allow people to cancel their vote.
1328
- Distributed authentication:
1329
    * Added default server option.
1330
- Added default robots.txt to control crawlers.
1331
- Database API:
1332
    * Added db_table_exists().
1333
- Blogapi module:
1334
    * 'Blogapi new' and 'blogapi edit' nodeapi operations.
1335
- User module:
1336
    * Added hook_profile_alter().
1337
    * E-mail verification is made optional.
1338
    * Added mass editing and filtering on admin/user/user.
1339
- PHP Template engine:
1340
    * Add the ability to look for a series of suggested templates.
1341
    * Look for page templates based upon the path.
1342
    * Look for block templates based upon the region, module, and delta.
1343
- Content system:
1344
    * Made it easier for node access modules to work well with each other.
1345
    * Added configurable content types.
1346
    * Changed node rendering to work with structured arrays.
1347
- Performance:
1348
    * Improved session handling: reduces database overhead.
1349
    * Improved access checking: reduces database overhead.
1350
    * Made it possible to do memcached based session management.
1351
    * Omit sidebars when serving a '404 - Page not found': saves CPU cycles and bandwidth.
1352
    * Added an 'aggressive' caching policy.
1353
    * Added a CSS aggregator and compressor (up to 40% faster page loads).
1354
- Removed the archive module.
1355
- Upgrade system:
1356
    * Created space for update branches.
1357
- Form API:
1358
    * Made it possible to programmatically submit forms.
1359
    * Improved api for multistep forms.
1360
- Theme system:
1361
    * Split up and removed drupal.css.
1362
    * Added nested lists generation.
1363
    * Added a self-clearing block class.
1364

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

    
1371
Drupal 4.7.10, 2007-12-06
1372
-------------------------
1373
- fixed taxonomy feed bug introduced by SA-2007-031
1374

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

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

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

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

    
1393
Drupal 4.7.5, 2007-01-05
1394
------------------------
1395
- Fixed security issue (XSS), see SA-2007-001
1396
- Fixed security issue (DoS), see SA-2007-002
1397

    
1398
Drupal 4.7.4, 2006-10-18
1399
------------------------
1400
- Fixed security issue (XSS), see SA-2006-024
1401
- Fixed security issue (CSRF), see SA-2006-025
1402
- Fixed security issue (Form action attribute injection), see SA-2006-026
1403

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

    
1408
Drupal 4.7.2, 2006-06-01
1409
------------------------
1410
- Fixed critical upload issue, see SA-2006-007
1411
- Fixed taxonomy XSS issue, see SA-2006-008
1412
- Fixed a variety of small bugs.
1413

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

    
1420
Drupal 4.7.0, 2006-05-01
1421
------------------------
1422
- Added free tagging support.
1423
- Added a site-wide contact form.
1424
- Theme system:
1425
    * Added the PHPTemplate theme engine and removed the Xtemplate engine.
1426
    * Converted the bluemarine theme from XTemplate to PHPTemplate.
1427
    * Converted the pushbutton theme from XTemplate to PHPTemplate.
1428
- Usability:
1429
    * Reworked the 'request new password' functionality.
1430
    * Reworked the node and comment edit forms.
1431
    * Made it easy to add nodes to the navigation menu.
1432
    * Added site 'offline for maintenance' feature.
1433
    * Added support for auto-complete forms (AJAX).
1434
    * Added support for collapsible page sections (JS).
1435
    * Added support for resizable text fields (JS).
1436
    * Improved file upload functionality (AJAX).
1437
    * Reorganized some settings pages.
1438
    * Added friendly database error screens.
1439
    * Improved styling of update.php.
1440
- Refactored the forms API.
1441
    * Made it possible to alter, extend or theme forms.
1442
- Comment system:
1443
    * Added support for "mass comment operations" to ease repetitive tasks.
1444
    * Comment moderation has been removed.
1445
- Node system:
1446
    * Reworked the revision functionality.
1447
    * Removed the bookmarklet code. Third-party modules can now handle
1448
      This.
1449
- Upgrade system:
1450
    * Allows contributed modules to plug into the upgrade system.
1451
- Profiles:
1452
    * Added a block to display author information along with posts.
1453
    * Added support for private profile fields.
1454
- Statistics module:
1455
    * Added the ability to track page generation times.
1456
    * Made it possible to block certain IPs/hostnames.
1457
- Block system:
1458
    * Added support for theme-specific block regions.
1459
- Syndication:
1460
    * Made the aggregator module parse Atom feeds.
1461
    * Made the aggregator generate RSS feeds.
1462
    * Added RSS feed settings.
1463
- XML-RPC:
1464
    * Replaced the XML-RPC library by a better one.
1465
- Performance:
1466
    * Added 'loose caching' option for high-traffic sites.
1467
    * Improved performance of path aliasing.
1468
    * Added the ability to track page generation times.
1469
- Internationalization:
1470
    * Improved Unicode string handling API.
1471
    * Added support for PHP's multibyte string module.
1472
- Added support for PHP5's 'mysqli' extension.
1473
- Search module:
1474
    * Made indexer smarter and more robust.
1475
    * Added advanced search operators (e.g. phrase, node type, ...).
1476
    * Added customizable result ranking.
1477
- PostgreSQL support:
1478
    * Removed dependency on PL/pgSQL procedural language.
1479
- Menu system:
1480
    * Added support for external URLs.
1481
- Queue module:
1482
    * Removed from core.
1483
- HTTP handling:
1484
    * Added support for a tolerant Base URL.
1485
    * Output URIs relative to the root, without a base tag.
1486

    
1487
Drupal 4.6.11, 2007-01-05
1488
-------------------------
1489
- Fixed security issue (XSS), see SA-2007-001
1490
- Fixed security issue (DoS), see SA-2007-002
1491

    
1492
Drupal 4.6.10, 2006-10-18
1493
------------------------
1494
- Fixed security issue (XSS), see SA-2006-024
1495
- Fixed security issue (CSRF), see SA-2006-025
1496
- Fixed security issue (Form action attribute injection), see SA-2006-026
1497

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

    
1502
Drupal 4.6.8, 2006-06-01
1503
------------------------
1504
- Fixed critical upload issue, see SA-2006-007
1505
- Fixed taxonomy XSS issue, see SA-2006-008
1506

    
1507
Drupal 4.6.7, 2006-05-24
1508
------------------------
1509
- Fixed critical SQL issue, see SA-2006-005
1510

    
1511
Drupal 4.6.6, 2006-03-13
1512
------------------------
1513
- Fixed bugs, including 4 security vulnerabilities.
1514

    
1515
Drupal 4.6.5, 2005-12-12
1516
------------------------
1517
- Fixed bugs: no critical bugs were identified.
1518

    
1519
Drupal 4.6.4, 2005-11-30
1520
------------------------
1521
- Fixed bugs, including 3 security vulnerabilities.
1522

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

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

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

    
1535
Drupal 4.6.0, 2005-04-15
1536
------------------------
1537
- PHP5 compliance
1538
- Search:
1539
    * Added UTF-8 support to make it work with all languages.
1540
    * Improved search indexing algorithm.
1541
    * Improved search output.
1542
    * Impose a throttle on indexing of large sites.
1543
    * Added search block.
1544
- Syndication:
1545
    * Made the ping module ping pingomatic.com which, in turn, will ping all the major ping services.
1546
    * Made Drupal generate RSS 2.0 feeds.
1547
    * Made RSS feeds extensible.
1548
    * Added categories to RSS feeds.
1549
    * Added enclosures to RSS feeds.
1550
- Flood control mechanism:
1551
    * Added a mechanism to throttle certain operations.
1552
- Usability:
1553
    * Refactored the block configuration pages.
1554
    * Refactored the statistics pages.
1555
    * Refactored the watchdog pages.
1556
    * Refactored the throttle module configuration.
1557
    * Refactored the access rules page.
1558
    * Refactored the content administration page.
1559
    * Introduced forum configuration pages.
1560
    * Added a 'add child page' link to book pages.
1561
- Contact module:
1562
    * Added a simple contact module that allows users to contact each other using e-mail.
1563
- Multi-site configuration:
1564
    * Made it possible to run multiple sites from a single code base.
1565
- Added an image API: enables better image handling.
1566
- Block system:
1567
    * Extended the block visibility settings.
1568
- Theme system:
1569
    * Added new theme functions.
1570
- Database backend:
1571
    * The PEAR database backend is no longer supported.
1572
- Performance:
1573
    * Improved performance of the forum topics block.
1574
    * Improved performance of the tracker module.
1575
    * Improved performance of the node pages.
1576
- Documentation:
1577
    * Improved and extended PHPDoc/Doxygen comments.
1578

    
1579
Drupal 4.5.8, 2006-03-13
1580
------------------------
1581
- Fixed bugs, including 3 security vulnerabilities.
1582

    
1583
Drupal 4.5.7, 2005-12-12
1584
------------------------
1585
- Fixed bugs: no critical bugs were identified.
1586

    
1587
Drupal 4.5.6, 2005-11-30
1588
------------------------
1589
- Fixed bugs, including 3 security vulnerabilities.
1590

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

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

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

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

    
1607
Drupal 4.5.1, 2004-12-01
1608
------------------------
1609
- Fixed bugs: no critical bugs were identified.
1610

    
1611
Drupal 4.5.0, 2004-10-18
1612
------------------------
1613
- Navigation:
1614
    * Made it possible to add, delete, rename and move menu items.
1615
    * Introduced tabs and subtabs for local tasks.
1616
    * Reorganized the navigation menus.
1617
- User management:
1618
    * Added support for multiple roles per user.
1619
    * Made it possible to add custom profile fields.
1620
    * Made it possible to browse user profiles by field.
1621
- Node system:
1622
    * Added support for node-level permissions.
1623
- Comment module:
1624
    * Made it possible to leave contact information without having to register.
1625
- Upload module:
1626
    * Added support for uploading documents (includes images).
1627
- Forum module:
1628
    * Added support for sticky forum topics.
1629
    * Made it possible to track forum topics.
1630
- Syndication:
1631
    * Added support for RSS ping-notifications of http://technorati.com/.
1632
    * Refactored the categorization of syndicated news items.
1633
    * Added an URL alias for 'rss.xml'.
1634
    * Improved date parsing.
1635
- Database backend:
1636
    * Added support for multiple database connections.
1637
    * The PostgreSQL backend does no longer require PEAR.
1638
- Theme system:
1639
    * Changed all GIFs to PNGs.
1640
    * Reorganised the handling of themes, template engines, templates and styles.
1641
    * Unified and extended the available theme settings.
1642
    * Added theme screenshots.
1643
- Blocks:
1644
    * Added 'recent comments' block.
1645
    * Added 'categories' block.
1646
- Blogger API:
1647
    * Added support for auto-discovery of blogger API via RSD.
1648
- Performance:
1649
    * Added support for sending gzip compressed pages.
1650
    * Improved performance of the forum module.
1651
- Accessibility:
1652
    * Improved the accessibility of the archive module's calendar.
1653
    * Improved form handling and error reporting.
1654
    * Added HTTP redirects to prevent submitting twice when refreshing right after a form submission.
1655
- Refactored 403 (forbidden) handling and added support for custom 403 pages.
1656
- Documentation:
1657
    * Added PHPDoc/Doxygen comments.
1658
- Filter system:
1659
    * Added support for using multiple input formats on the site
1660
    * Expanded the embedded PHP-code feature so it can be used everywhere
1661
    * Added support for role-dependent filtering, through input formats
1662
- UI translation:
1663
    * Managing translations is now completely done through the administration interface
1664
    * Added support for importing/exporting gettext .po files
1665

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

    
1670
Drupal 4.4.2, 2004-07-04
1671
------------------------
1672
- Fixed bugs: no critical bugs were identified.
1673

    
1674
Drupal 4.4.1, 2004-05-01
1675
------------------------
1676
- Fixed bugs: no critical bugs were identified.
1677

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

    
1718
Drupal 4.3.2, 2004-01-01
1719
------------------------
1720
- Fixed bugs: no critical bugs were identified.
1721

    
1722
Drupal 4.3.1, 2003-12-01
1723
------------------------
1724
- Fixed bugs: no critical bugs were identified.
1725

    
1726
Drupal 4.3.0, 2003-11-01
1727
------------------------
1728
- Added support for configurable URLs.
1729
- Added support for sortable table columns.
1730
- Database backend:
1731
    * Added support for selective database table prefixing.
1732
- Performance:
1733
    * Optimized many SQL queries for speed by converting left joins to inner joins.
1734
- Comment module:
1735
    * Rewrote the comment housekeeping code to be much more efficient and scalable.
1736
    * Changed the comment module to use the standard pager.
1737
- User module:
1738
    * Added support for multiple sessions per user.
1739
    * Added support for anonymous user sessions.
1740
- Forum module:
1741
    * Improved the forum views and the themability thereof.
1742
- Book module:
1743
    * Improved integration of non-book nodes in the book outline.
1744
- Usability:
1745
    * Added support for "mass node operations" to ease repetitive tasks.
1746
    * Added support for breadcrumb navigation to several modules' user pages.
1747
    * Integrated the administration pages with the normal user pages.
1748

    
1749
Drupal 4.2.0, 2003-08-01
1750
------------------------
1751
- Added support for clean URLs.
1752
- Added textarea hook and support for onload attributes: enables integration of WYSIWYG editors.
1753
- Rewrote the RSS/RDF parser:
1754
    * It will now use PHP's built-in XML parser to parse news feeds.
1755
- Rewrote the administration pages:
1756
    * Improved the navigational elements and added breadcrumb navigation.
1757
    * Improved the look and feel.
1758
    * Added context-sensitive help.
1759
- Database backend:
1760
    * Fixed numerous SQL queries to make Drupal ANSI compliant.
1761
    * Added MSSQL database scheme.
1762
- Search module:
1763
    * Changed the search module to use implicit AND'ing instead of implicit OR'ing.
1764
- Node system:
1765
    * Replaced the "post content" permission by more fine-grained permissions.
1766
    * Improved content submission:
1767
        + 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.
1768
        + Added the ability to preview both the short and the full version of your posts.
1769
    * Extended the node API which allows for better integration.
1770
    * Added default node settings to control the behavior for promotion, moderation and other options.
1771
- Themes:
1772
    * Replaced theme "Goofy" by "Xtemplate", a template driven theme.
1773
- Removed the 'register_globals = on' requirement.
1774
- Added better installation instructions.
1775

    
1776
Drupal 4.1.0, 2003-02-01
1777
------------------------
1778
- Collaboratively revised and expanded the Drupal documentation.
1779
- Rewrote comment.module:
1780
    * Reintroduced comment rating/moderation.
1781
    * Added support for comment paging.
1782
    * Performance improvements: improved comment caching, faster SQL queries, etc.
1783
- Rewrote block.module:
1784
    * Performance improvements: blocks are no longer rendered when not displayed.
1785
- Rewrote forum.module:
1786
    * 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.
1787
- Rewrote statistics.module:
1788
    * Collects access counts for each node, referrer logs, number of users/guests.
1789
    * 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.
1790
- Added throttle.module:
1791
    * Auto-throttle congestion control mechanism: Drupal can adapt itself based on the server load.
1792
- Added profile.module:
1793
    * Enables to extend the user and registration page.
1794
- Added pager support to the main page.
1795
- Replaced weblogs.module by ping.module:
1796
    * Added support for normal and RSS notifications of http://blo.gs/.
1797
    * Added support for RSS ping-notifications of http://weblogs.com/.
1798
- Removed the rating module
1799
- Themes:
1800
    * Removed a significant portion of hard-coded mark-up.
1801

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

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

    
1861
Drupal 3.0.0, 2001-09-15
1862
------------------------
1863
- Major overhaul of the entire underlying design:
1864
    * 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.
1865
- Rewrote submission/moderation queue and renamed it to queue.module.
1866
- Removed FAQ and documentation module and merged them into a "book module".
1867
- Removed ban module and integrated it into account.module as "access control":
1868
    * Access control is based on much more powerful regular expressions (regex) now rather than on MySQL pattern matching.
1869
- Rewrote watchdog and submission throttle:
1870
    * Improved watchdog messages and added watchdog filter.
1871
- Rewrote headline code and renamed it to import.module and export.module:
1872
    * Added various improvements, including a better parser, bundles and better control over individual feeds.
1873
- Rewrote section code and renamed it to meta.module:
1874
    * Supports unlimited amount of nested topics. Topics can be nested to create a multi-level hierarchy.
1875
- Rewrote configuration file resolving:
1876
    * 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.
1877
- Added caching support which makes Drupal extremely scalable.
1878
- Added access.module:
1879
    * Allows you to set up 'roles' (groups) and to bind a set of permissions to each group.
1880
- Added blog.module.
1881
- Added poll.module.
1882
- Added system.module:
1883
    * Moved most of the configuration options from hostname.conf to the new administration section.
1884
    * Added support for custom "filters".
1885
- Added statistics.module
1886
- Added moderate.module:
1887
    * Allows to assign users editorial/moderator rights to certain nodes or topics.
1888
- Added page.module:
1889
    * Allows creation of static (and dynamic) pages through the administration interface.
1890
- Added help.module:
1891
    * Groups all available module documentation on a single page.
1892
- Added forum.module:
1893
    * Added an integrated forum.
1894
- Added cvs.module and cvs-to-sql.pl:
1895
    * Allows to display and mail CVS log messages as daily digests.
1896
- Added book.module:
1897
    * Allows collaborative handbook writing: primary used for Drupal documentation.
1898
- Removed cron.module and integrated it into conf.module.
1899
- Removed module.module as it was no longer needed.
1900
- Various updates:
1901
    * Added "auto-post new submissions" feature versus "moderate new submissions".
1902
    * Introduced links/Drupal tags: [[link]]
1903
    * Added preview functionality when submitting new content (such as a story) from the administration pages.
1904
    * Made the administration section only show those links a user has access to.
1905
    * Made all modules use specific form_* functions to guarantee a rock-solid forms and more consistent layout.
1906
    * Improved scheduler:
1907
        + Content can be scheduled to be 'posted', 'queued' and 'hidden'.
1908
    * Improved account module:
1909
        + Added "access control" to allow/deny certain usernames/e-mail addresses/hostnames.
1910
    * Improved locale module:
1911
        + Added new overview to easy the translation process.
1912
    * Improved comment module:
1913
        + Made it possible to permanently delete comments.
1914
    * Improved rating module
1915
    * Improved story module:
1916
        + Added preview functionality for administrators.
1917
        + Made it possible to permanently delete stories.
1918
    * Improved themes:
1919
        + W3C validation on a best effort basis.
1920
        + Removed $theme->control() from themes.
1921
        + Added theme "goofy".
1922
- Collaboratively revised and expanded the Drupal documentation.
1923

    
1924
Drupal 2.0.0, 2001-03-15
1925
------------------------
1926
- Rewrote the comment/discussion code:
1927
    * Comment navigation should be less confusing now.
1928
    * Additional/alternative display and order methods have been added.
1929
    * Modules can be extended with a "comment system": modules can embed the existing comment system without having to write their own, duplicate comment system.
1930
- Added sections and section manager:
1931
    * Story sections can be maintained from the administration pages.
1932
    * 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.
1933
- Multiple vhosts + multiple directories:
1934
    * You can set up multiple Drupal sites on top of the same physical source tree either by using vhosts or sub-directories.
1935
- Added "user ratings" similar to SlashCode's Karma or Scoop's Mojo:
1936
    * All rating logic is packed into a module to ease experimenting with different rating heuristics/algorithms.
1937
- Added "search infrastructure":
1938
    * Improved search page and integrated search functionality in the administration pages.
1939
- Added translation / localization / internationalization support:
1940
    * 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.
1941
- Added fine-grained user permission (or group) system:
1942
    * 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.
1943
- Added FAQ module
1944
- Changed the "open submission queue" into a (optional) module.
1945
- Various updates:
1946
    * Improved account module:
1947
        + User accounts can be deleted.
1948
        + Added fine-grained permission support.
1949
    * Improved block module
1950
    * Improved diary module:
1951
        + Diary entries can be deleted
1952
    * Improved headline module:
1953
        + Improved parser to support more "generic" RDF/RSS/XML backend.
1954
    * Improved module module
1955
    * Improved watchdog module
1956
    * Improved database abstraction layer
1957
    * Improved themes:
1958
        + W3C validation on a best effort basis
1959
        + Added theme "example" (alias "Stone Age")
1960
    * Added new scripts to directory "scripts"
1961
    * Added directory "misc"
1962
    * Added CREDITS file
1963
- Revised documentation
1964

    
1965
Drupal 1.0.0, 2001-01-15
1966
------------------------
1967
- Initial release