Projet

Général

Profil

Paste
Télécharger (87,5 ko) Statistiques
| Branche: | Révision:

root / drupal7 / CHANGELOG.txt @ dae300e8

1

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
502
Drupal 7.9, 2011-10-26
503
----------------------
504
- Critical fixes to OpenID to spec violations that could allow for
505
  impersonation in certain scenarios. Existing OpenID users should see
506
  http://drupal.org/node/1120290#comment-5092796 for more information on
507
  transitioning.
508
- Fixed files getting lost when adding multiple files to multiple file fields
509
  at the same time.
510
- Improved usability of the clean URL test screens.
511
- Restored height/width attributes on images run through the theme system.
512
- Fixed usability bug with first password field being pre-filled by certain
513
  browser plugins.
514
- Fixed file_usage_list() so that it can return more than one result.
515
- Fixed bug preventing preview of private images on node form.
516
- Fixed PDO error when inserting an aggregator title longer than 255 characters.
517
- Spelled out what TRADITIONAL means in MySQL sql_mode.
518
- Deprecated "!=" operator for DBTNG; should be "<>".
519
- Added two new API functions (menu_tree_set_path()/menu_tree_get_path()) were
520
  added in order to enable setting the active menu trail for dynamically
521
  generated menu paths.
522
- Added new "fast 404" capability in settings.php to bypass Drupal bootstrap
523
  when serving 404 pages for certain file types.
524
- Added format_string() function which can perform string munging ala the t()
525
  function without the overhead of the translation system.
526
- Numerous #states system fixes.
527
- Numerous EntityFieldQuery, DBTNG, and SQLite fixes.
528
- Numerous Shortcut module fixes.
529
- Numerous language system fixes.
530
- Numerous token fixes.
531
- Numerous CSS fixes.
532
- Numerous upgrade path fixes.
533
- Numerous minor string fixes.
534
- Numerous notice fixes.
535

    
536
Drupal 7.8, 2011-08-31
537
----------------------
538
- Fixed critical upgrade path issue with multilingual sites, leading to lost
539
  content.
540
- Numerous fixes to upgrade path, preventing fatal errors due to incorrect
541
  dependencies.
542
- Fixed issue with saving files on hosts with open_basedir restrictions.
543
- Fixed Update manger error when used with Overlay.
544
- Fixed RTL support in Seven administration theme and Overlay.
545
- Fixes to nested transaction support.
546
- Introduced performance pattern to reduce Drupal core's RAM usage.
547
- Added support for HTML 5 tags to filter_xss_admin().
548
- Added exception handling to cron.
549
- Added new hook hook_field_widget_form_alter() for contribtued modules.
550
- element_validate_*() functions now available to contrib.
551
- Added new maintainers for several subsystems.
552
- Numerous testing system improvements.
553
- Numerous markup and CSS fixes.
554
- Numerous poll module fixes.
555
- Numerous notice/warning fixes.
556
- Numerous documentation fixes.
557
- Numerous token fixes.
558

    
559
Drupal 7.7, 2011-07-27
560
----------------------
561
- Fixed VERSION string.
562

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

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

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

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

    
599
Drupal 7.2, 2011-05-25
600
----------------------
601
- Added a default .gitignore file.
602
- Improved PostgreSQL and SQLite support.
603
- Numerous critical performance improvements.
604
- Numerous critical fixes to the upgrade path.
605
- Numerous fixes to language and translation systems.
606
- Numerous fixes to AJAX and #states systems.
607
- Improvements to the locking system.
608
- Numerous documentation fixes.
609
- Numerous styling and theme system fixes.
610
- Numerous fixes for schema mis-matches between Drupal 6 and 7.
611
- Minor internal API clean-ups.
612

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

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

    
836
Drupal 6.23-dev, xxxx-xx-xx (development release)
837
-----------------------
838

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
989
Drupal 6.0, 2008-02-13
990
----------------------
991
- New, faster and better menu system.
992
- New watchdog as a hook functionality.
993
   * New hook_watchdog that can be implemented by any module to route log
994
     messages to various destinations.
995
   * Expands the severity levels from 3 (Error, Warning, Notice) to the 8
996
     levels defined in RFC 3164.
997
   * The watchdog module is now called dblog, and is optional, but enabled by
998
     default in the default installation profile.
999
   * Extended the database log module so log messages can be filtered.
1000
   * Added syslog module: useful for monitoring large Drupal installations.
1001
- Added optional e-mail notifications when users are approved, blocked, or
1002
  deleted.
1003
- Drupal works with error reporting set to E_ALL.
1004
- Added scripts/drupal.sh to execute Drupal code from the command line. Useful
1005
  to use Drupal as a framework to build command-line tools.
1006
- Made signature support optional and made it possible to theme signatures.
1007
- Made it possible to filter the URL aliases on the URL alias administration
1008
  screen.
1009
- Language system improvements:
1010
    * Support for right to left languages.
1011
    * Language detection based on parts of the URL.
1012
    * Browser based language detection.
1013
    * Made it possible to specify a node's language.
1014
    * Support for translating posts on the site to different languages.
1015
    * Language dependent path aliases.
1016
    * Automatically import translations when adding a new language.
1017
    * JavaScript interface translation.
1018
    * Automatically import a module's translation upon enabling that module.
1019
- Moved "PHP input filter" to a standalone module so it can be deleted for
1020
  security reasons.
1021
- Usability:
1022
    * Improved handling of teasers in posts.
1023
    * Added sticky table headers.
1024
    * Check for clean URL support automatically with JavaScript.
1025
    * Removed default/settings.php. Instead the installer will create it from
1026
      default.settings.php.
1027
    * Made it possible to configure your own date formats.
1028
    * Remember anonymous comment posters.
1029
    * Only allow modules and themes to be enabled that have explicitly been
1030
      ported to the correct core API version.
1031
    * Can now specify the minimum PHP version required for a module within the
1032
      .info file.
1033
    * Drupal core no longer requires CREATE TEMPORARY TABLES or LOCK TABLES
1034
      database rights.
1035
    * Dynamically check password strength and confirmation.
1036
    * Refactored poll administration.
1037
    * Implemented drag-and-drop positioning for blocks, menu items, taxonomy
1038
      vocabularies and terms, forums, profile fields, and input format filters.
1039
- Theme system:
1040
    * Added .info files to themes and made it easier to specify regions and
1041
      features.
1042
    * Added theme registry: modules can directly provide .tpl.php files for
1043
      their themes without having to create theme_ functions.
1044
    * Used the Garland theme for the installation and maintenance pages.
1045
    * Added theme preprocess functions for themes that are templates.
1046
    * Added support for themeable functions in JavaScript.
1047
- Refactored update.php to a generic batch API to be able to run time-consuming
1048
  operations in multiple subsequent HTTP requests.
1049
- Installer:
1050
    * Themed the installer with the Garland theme.
1051
    * Added form to provide initial site information during installation.
1052
    * Added ability to provide extra installation steps programmatically.
1053
    * Made it possible to import interface translations during installation.
1054
- Added the HTML corrector filter:
1055
    * Fixes faulty and chopped off HTML in postings.
1056
    * Tags are now automatically closed at the end of the teaser.
1057
- Performance:
1058
    * Made it easier to conditionally load .include files and split up many core
1059
      modules.
1060
    * Added a JavaScript aggregator.
1061
    * Added block-level caching, improving performance for both authenticated
1062
      and anonymous users.
1063
    * Made Drupal work correctly when running behind a reverse proxy like
1064
      Squid or Pound.
1065
- File handling improvements:
1066
    * Entries in the files table are now keyed to a user instead of a node.
1067
    * Added reusable validation functions to check for uploaded file sizes,
1068
      extensions, and image resolution.
1069
    * Added ability to create and remove temporary files during a cron job.
1070
- Forum improvements:
1071
    * Any node type may now be posted in a forum.
1072
- Taxonomy improvements:
1073
    * Descriptions for terms are now shown on taxonomy/term pages as well
1074
      as RSS feeds.
1075
    * Added versioning support to categories by associating them with node
1076
      revisions.
1077
- Added support for OpenID.
1078
- Added support for triggering configurable actions.
1079
- Added the Update status module to automatically check for available updates
1080
  and warn sites if they are missing security updates or newer versions.
1081
  Sites deploying from CVS should use http://drupal.org/project/cvs_deploy.
1082
  Advanced settings provided by http://drupal.org/project/update_advanced.
1083
- Upgraded the core JavaScript library to jQuery version 1.2.3.
1084
- Added a new Schema API, which provides built-in support for core and
1085
  contributed modules to work with databases other than MySQL.
1086
- Removed drupal.module. The functionality lives on as the Site network
1087
  contributed module (http://drupal.org/project/site_network).
1088
- Removed old system updates. Updates from Drupal versions prior to 5.x will
1089
  require upgrading to 5.x before upgrading to 6.x.
1090

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
1180
Drupal 5.7, 2008-01-28
1181
----------------------
1182
- fixed the input format configuration page.
1183
- fixed a variety of small bugs.
1184

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

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

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

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

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

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

    
1223
Drupal 5.0, 2007-01-15
1224
----------------------
1225
- Completely retooled the administration page
1226
    * /Admin now contains an administration page which may be themed
1227
    * Reorganised administration menu items by task and by module
1228
    * Added a status report page with detailed PHP/MySQL/Drupal information
1229
- Added web-based installer which can:
1230
    * Check installation and run-time requirements
1231
    * Automatically generate the database configuration file
1232
    * Install pre-made installation profiles or distributions
1233
    * Import the database structure with automatic table prefixing
1234
    * Be localized
1235
- Added new default Garland theme
1236
- Added color module to change some themes' color schemes
1237
- Included the jQuery JavaScript library 1.0.4 and converted all core JavaScript to use it
1238
- Introduced the ability to alter mail sent from system
1239
- Module system:
1240
    * Added .info files for module meta-data
1241
    * Added support for module dependencies
1242
    * Improved module installation screen
1243
    * Moved core modules to their own directories
1244
    * Added support for module uninstalling
1245
- Added support for different cache backends
1246
- Added support for a generic "sites/all" directory.
1247
- Usability:
1248
    * Added support for auto-complete forms (AJAX) to user profiles.
1249
    * Made it possible to instantly assign roles to newly created user accounts.
1250
    * Improved configurability of the contact forms.
1251
    * Reorganized the settings pages.
1252
    * Made it easy to investigate popular search terms.
1253
    * Added a 'select all' checkbox and a range select feature to administration tables.
1254
    * Simplified the 'break' tag to split teasers from body.
1255
    * Use proper capitalization for titles, menu items and operations.
1256
- Integrated urlfilter.module into filter.module
1257
- Block system:
1258
    * Extended the block visibility settings with a role specific setting.
1259
    * Made it possible to customize all block titles.
1260
- Poll module:
1261
    * Optionally allow people to inspect all votes.
1262
    * Optionally allow people to cancel their vote.
1263
- Distributed authentication:
1264
    * Added default server option.
1265
- Added default robots.txt to control crawlers.
1266
- Database API:
1267
    * Added db_table_exists().
1268
- Blogapi module:
1269
    * 'Blogapi new' and 'blogapi edit' nodeapi operations.
1270
- User module:
1271
    * Added hook_profile_alter().
1272
    * E-mail verification is made optional.
1273
    * Added mass editing and filtering on admin/user/user.
1274
- PHP Template engine:
1275
    * Add the ability to look for a series of suggested templates.
1276
    * Look for page templates based upon the path.
1277
    * Look for block templates based upon the region, module, and delta.
1278
- Content system:
1279
    * Made it easier for node access modules to work well with each other.
1280
    * Added configurable content types.
1281
    * Changed node rendering to work with structured arrays.
1282
- Performance:
1283
    * Improved session handling: reduces database overhead.
1284
    * Improved access checking: reduces database overhead.
1285
    * Made it possible to do memcached based session management.
1286
    * Omit sidebars when serving a '404 - Page not found': saves CPU cycles and bandwidth.
1287
    * Added an 'aggressive' caching policy.
1288
    * Added a CSS aggregator and compressor (up to 40% faster page loads).
1289
- Removed the archive module.
1290
- Upgrade system:
1291
    * Created space for update branches.
1292
- Form API:
1293
    * Made it possible to programmatically submit forms.
1294
    * Improved api for multistep forms.
1295
- Theme system:
1296
    * Split up and removed drupal.css.
1297
    * Added nested lists generation.
1298
    * Added a self-clearing block class.
1299

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

    
1306
Drupal 4.7.10, 2007-12-06
1307
-------------------------
1308
- fixed taxonomy feed bug introduced by SA-2007-031
1309

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

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

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

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

    
1328
Drupal 4.7.5, 2007-01-05
1329
------------------------
1330
- Fixed security issue (XSS), see SA-2007-001
1331
- Fixed security issue (DoS), see SA-2007-002
1332

    
1333
Drupal 4.7.4, 2006-10-18
1334
------------------------
1335
- Fixed security issue (XSS), see SA-2006-024
1336
- Fixed security issue (CSRF), see SA-2006-025
1337
- Fixed security issue (Form action attribute injection), see SA-2006-026
1338

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

    
1343
Drupal 4.7.2, 2006-06-01
1344
------------------------
1345
- Fixed critical upload issue, see SA-2006-007
1346
- Fixed taxonomy XSS issue, see SA-2006-008
1347
- Fixed a variety of small bugs.
1348

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

    
1355
Drupal 4.7.0, 2006-05-01
1356
------------------------
1357
- Added free tagging support.
1358
- Added a site-wide contact form.
1359
- Theme system:
1360
    * Added the PHPTemplate theme engine and removed the Xtemplate engine.
1361
    * Converted the bluemarine theme from XTemplate to PHPTemplate.
1362
    * Converted the pushbutton theme from XTemplate to PHPTemplate.
1363
- Usability:
1364
    * Reworked the 'request new password' functionality.
1365
    * Reworked the node and comment edit forms.
1366
    * Made it easy to add nodes to the navigation menu.
1367
    * Added site 'offline for maintenance' feature.
1368
    * Added support for auto-complete forms (AJAX).
1369
    * Added support for collapsible page sections (JS).
1370
    * Added support for resizable text fields (JS).
1371
    * Improved file upload functionality (AJAX).
1372
    * Reorganized some settings pages.
1373
    * Added friendly database error screens.
1374
    * Improved styling of update.php.
1375
- Refactored the forms API.
1376
    * Made it possible to alter, extend or theme forms.
1377
- Comment system:
1378
    * Added support for "mass comment operations" to ease repetitive tasks.
1379
    * Comment moderation has been removed.
1380
- Node system:
1381
    * Reworked the revision functionality.
1382
    * Removed the bookmarklet code. Third-party modules can now handle
1383
      This.
1384
- Upgrade system:
1385
    * Allows contributed modules to plug into the upgrade system.
1386
- Profiles:
1387
    * Added a block to display author information along with posts.
1388
    * Added support for private profile fields.
1389
- Statistics module:
1390
    * Added the ability to track page generation times.
1391
    * Made it possible to block certain IPs/hostnames.
1392
- Block system:
1393
    * Added support for theme-specific block regions.
1394
- Syndication:
1395
    * Made the aggregator module parse Atom feeds.
1396
    * Made the aggregator generate RSS feeds.
1397
    * Added RSS feed settings.
1398
- XML-RPC:
1399
    * Replaced the XML-RPC library by a better one.
1400
- Performance:
1401
    * Added 'loose caching' option for high-traffic sites.
1402
    * Improved performance of path aliasing.
1403
    * Added the ability to track page generation times.
1404
- Internationalization:
1405
    * Improved Unicode string handling API.
1406
    * Added support for PHP's multibyte string module.
1407
- Added support for PHP5's 'mysqli' extension.
1408
- Search module:
1409
    * Made indexer smarter and more robust.
1410
    * Added advanced search operators (e.g. phrase, node type, ...).
1411
    * Added customizable result ranking.
1412
- PostgreSQL support:
1413
    * Removed dependency on PL/pgSQL procedural language.
1414
- Menu system:
1415
    * Added support for external URLs.
1416
- Queue module:
1417
    * Removed from core.
1418
- HTTP handling:
1419
    * Added support for a tolerant Base URL.
1420
    * Output URIs relative to the root, without a base tag.
1421

    
1422
Drupal 4.6.11, 2007-01-05
1423
-------------------------
1424
- Fixed security issue (XSS), see SA-2007-001
1425
- Fixed security issue (DoS), see SA-2007-002
1426

    
1427
Drupal 4.6.10, 2006-10-18
1428
------------------------
1429
- Fixed security issue (XSS), see SA-2006-024
1430
- Fixed security issue (CSRF), see SA-2006-025
1431
- Fixed security issue (Form action attribute injection), see SA-2006-026
1432

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

    
1437
Drupal 4.6.8, 2006-06-01
1438
------------------------
1439
- Fixed critical upload issue, see SA-2006-007
1440
- Fixed taxonomy XSS issue, see SA-2006-008
1441

    
1442
Drupal 4.6.7, 2006-05-24
1443
------------------------
1444
- Fixed critical SQL issue, see SA-2006-005
1445

    
1446
Drupal 4.6.6, 2006-03-13
1447
------------------------
1448
- Fixed bugs, including 4 security vulnerabilities.
1449

    
1450
Drupal 4.6.5, 2005-12-12
1451
------------------------
1452
- Fixed bugs: no critical bugs were identified.
1453

    
1454
Drupal 4.6.4, 2005-11-30
1455
------------------------
1456
- Fixed bugs, including 3 security vulnerabilities.
1457

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

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

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

    
1470
Drupal 4.6.0, 2005-04-15
1471
------------------------
1472
- PHP5 compliance
1473
- Search:
1474
    * Added UTF-8 support to make it work with all languages.
1475
    * Improved search indexing algorithm.
1476
    * Improved search output.
1477
    * Impose a throttle on indexing of large sites.
1478
    * Added search block.
1479
- Syndication:
1480
    * Made the ping module ping pingomatic.com which, in turn, will ping all the major ping services.
1481
    * Made Drupal generate RSS 2.0 feeds.
1482
    * Made RSS feeds extensible.
1483
    * Added categories to RSS feeds.
1484
    * Added enclosures to RSS feeds.
1485
- Flood control mechanism:
1486
    * Added a mechanism to throttle certain operations.
1487
- Usability:
1488
    * Refactored the block configuration pages.
1489
    * Refactored the statistics pages.
1490
    * Refactored the watchdog pages.
1491
    * Refactored the throttle module configuration.
1492
    * Refactored the access rules page.
1493
    * Refactored the content administration page.
1494
    * Introduced forum configuration pages.
1495
    * Added a 'add child page' link to book pages.
1496
- Contact module:
1497
    * Added a simple contact module that allows users to contact each other using e-mail.
1498
- Multi-site configuration:
1499
    * Made it possible to run multiple sites from a single code base.
1500
- Added an image API: enables better image handling.
1501
- Block system:
1502
    * Extended the block visibility settings.
1503
- Theme system:
1504
    * Added new theme functions.
1505
- Database backend:
1506
    * The PEAR database backend is no longer supported.
1507
- Performance:
1508
    * Improved performance of the forum topics block.
1509
    * Improved performance of the tracker module.
1510
    * Improved performance of the node pages.
1511
- Documentation:
1512
    * Improved and extended PHPDoc/Doxygen comments.
1513

    
1514
Drupal 4.5.8, 2006-03-13
1515
------------------------
1516
- Fixed bugs, including 3 security vulnerabilities.
1517

    
1518
Drupal 4.5.7, 2005-12-12
1519
------------------------
1520
- Fixed bugs: no critical bugs were identified.
1521

    
1522
Drupal 4.5.6, 2005-11-30
1523
------------------------
1524
- Fixed bugs, including 3 security vulnerabilities.
1525

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

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

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

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

    
1542
Drupal 4.5.1, 2004-12-01
1543
------------------------
1544
- Fixed bugs: no critical bugs were identified.
1545

    
1546
Drupal 4.5.0, 2004-10-18
1547
------------------------
1548
- Navigation:
1549
    * Made it possible to add, delete, rename and move menu items.
1550
    * Introduced tabs and subtabs for local tasks.
1551
    * Reorganized the navigation menus.
1552
- User management:
1553
    * Added support for multiple roles per user.
1554
    * Made it possible to add custom profile fields.
1555
    * Made it possible to browse user profiles by field.
1556
- Node system:
1557
    * Added support for node-level permissions.
1558
- Comment module:
1559
    * Made it possible to leave contact information without having to register.
1560
- Upload module:
1561
    * Added support for uploading documents (includes images).
1562
- Forum module:
1563
    * Added support for sticky forum topics.
1564
    * Made it possible to track forum topics.
1565
- Syndication:
1566
    * Added support for RSS ping-notifications of http://technorati.com/.
1567
    * Refactored the categorization of syndicated news items.
1568
    * Added an URL alias for 'rss.xml'.
1569
    * Improved date parsing.
1570
- Database backend:
1571
    * Added support for multiple database connections.
1572
    * The PostgreSQL backend does no longer require PEAR.
1573
- Theme system:
1574
    * Changed all GIFs to PNGs.
1575
    * Reorganised the handling of themes, template engines, templates and styles.
1576
    * Unified and extended the available theme settings.
1577
    * Added theme screenshots.
1578
- Blocks:
1579
    * Added 'recent comments' block.
1580
    * Added 'categories' block.
1581
- Blogger API:
1582
    * Added support for auto-discovery of blogger API via RSD.
1583
- Performance:
1584
    * Added support for sending gzip compressed pages.
1585
    * Improved performance of the forum module.
1586
- Accessibility:
1587
    * Improved the accessibility of the archive module's calendar.
1588
    * Improved form handling and error reporting.
1589
    * Added HTTP redirects to prevent submitting twice when refreshing right after a form submission.
1590
- Refactored 403 (forbidden) handling and added support for custom 403 pages.
1591
- Documentation:
1592
    * Added PHPDoc/Doxygen comments.
1593
- Filter system:
1594
    * Added support for using multiple input formats on the site
1595
    * Expanded the embedded PHP-code feature so it can be used everywhere
1596
    * Added support for role-dependent filtering, through input formats
1597
- UI translation:
1598
    * Managing translations is now completely done through the administration interface
1599
    * Added support for importing/exporting gettext .po files
1600

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

    
1605
Drupal 4.4.2, 2004-07-04
1606
------------------------
1607
- Fixed bugs: no critical bugs were identified.
1608

    
1609
Drupal 4.4.1, 2004-05-01
1610
------------------------
1611
- Fixed bugs: no critical bugs were identified.
1612

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

    
1653
Drupal 4.3.2, 2004-01-01
1654
------------------------
1655
- Fixed bugs: no critical bugs were identified.
1656

    
1657
Drupal 4.3.1, 2003-12-01
1658
------------------------
1659
- Fixed bugs: no critical bugs were identified.
1660

    
1661
Drupal 4.3.0, 2003-11-01
1662
------------------------
1663
- Added support for configurable URLs.
1664
- Added support for sortable table columns.
1665
- Database backend:
1666
    * Added support for selective database table prefixing.
1667
- Performance:
1668
    * Optimized many SQL queries for speed by converting left joins to inner joins.
1669
- Comment module:
1670
    * Rewrote the comment housekeeping code to be much more efficient and scalable.
1671
    * Changed the comment module to use the standard pager.
1672
- User module:
1673
    * Added support for multiple sessions per user.
1674
    * Added support for anonymous user sessions.
1675
- Forum module:
1676
    * Improved the forum views and the themability thereof.
1677
- Book module:
1678
    * Improved integration of non-book nodes in the book outline.
1679
- Usability:
1680
    * Added support for "mass node operations" to ease repetitive tasks.
1681
    * Added support for breadcrumb navigation to several modules' user pages.
1682
    * Integrated the administration pages with the normal user pages.
1683

    
1684
Drupal 4.2.0, 2003-08-01
1685
------------------------
1686
- Added support for clean URLs.
1687
- Added textarea hook and support for onload attributes: enables integration of WYSIWYG editors.
1688
- Rewrote the RSS/RDF parser:
1689
    * It will now use PHP's built-in XML parser to parse news feeds.
1690
- Rewrote the administration pages:
1691
    * Improved the navigational elements and added breadcrumb navigation.
1692
    * Improved the look and feel.
1693
    * Added context-sensitive help.
1694
- Database backend:
1695
    * Fixed numerous SQL queries to make Drupal ANSI compliant.
1696
    * Added MSSQL database scheme.
1697
- Search module:
1698
    * Changed the search module to use implicit AND'ing instead of implicit OR'ing.
1699
- Node system:
1700
    * Replaced the "post content" permission by more fine-grained permissions.
1701
    * Improved content submission:
1702
        + 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.
1703
        + Added the ability to preview both the short and the full version of your posts.
1704
    * Extended the node API which allows for better integration.
1705
    * Added default node settings to control the behavior for promotion, moderation and other options.
1706
- Themes:
1707
    * Replaced theme "Goofy" by "Xtemplate", a template driven theme.
1708
- Removed the 'register_globals = on' requirement.
1709
- Added better installation instructions.
1710

    
1711
Drupal 4.1.0, 2003-02-01
1712
------------------------
1713
- Collaboratively revised and expanded the Drupal documentation.
1714
- Rewrote comment.module:
1715
    * Reintroduced comment rating/moderation.
1716
    * Added support for comment paging.
1717
    * Performance improvements: improved comment caching, faster SQL queries, etc.
1718
- Rewrote block.module:
1719
    * Performance improvements: blocks are no longer rendered when not displayed.
1720
- Rewrote forum.module:
1721
    * 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.
1722
- Rewrote statistics.module:
1723
    * Collects access counts for each node, referrer logs, number of users/guests.
1724
    * 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.
1725
- Added throttle.module:
1726
    * Auto-throttle congestion control mechanism: Drupal can adapt itself based on the server load.
1727
- Added profile.module:
1728
    * Enables to extend the user and registration page.
1729
- Added pager support to the main page.
1730
- Replaced weblogs.module by ping.module:
1731
    * Added support for normal and RSS notifications of http://blo.gs/.
1732
    * Added support for RSS ping-notifications of http://weblogs.com/.
1733
- Removed the rating module
1734
- Themes:
1735
    * Removed a significant portion of hard-coded mark-up.
1736

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

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

    
1796
Drupal 3.0.0, 2001-09-15
1797
------------------------
1798
- Major overhaul of the entire underlying design:
1799
    * 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.
1800
- Rewrote submission/moderation queue and renamed it to queue.module.
1801
- Removed FAQ and documentation module and merged them into a "book module".
1802
- Removed ban module and integrated it into account.module as "access control":
1803
    * Access control is based on much more powerful regular expressions (regex) now rather than on MySQL pattern matching.
1804
- Rewrote watchdog and submission throttle:
1805
    * Improved watchdog messages and added watchdog filter.
1806
- Rewrote headline code and renamed it to import.module and export.module:
1807
    * Added various improvements, including a better parser, bundles and better control over individual feeds.
1808
- Rewrote section code and renamed it to meta.module:
1809
    * Supports unlimited amount of nested topics. Topics can be nested to create a multi-level hierarchy.
1810
- Rewrote configuration file resolving:
1811
    * 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.
1812
- Added caching support which makes Drupal extremely scalable.
1813
- Added access.module:
1814
    * Allows you to set up 'roles' (groups) and to bind a set of permissions to each group.
1815
- Added blog.module.
1816
- Added poll.module.
1817
- Added system.module:
1818
    * Moved most of the configuration options from hostname.conf to the new administration section.
1819
    * Added support for custom "filters".
1820
- Added statistics.module
1821
- Added moderate.module:
1822
    * Allows to assign users editorial/moderator rights to certain nodes or topics.
1823
- Added page.module:
1824
    * Allows creation of static (and dynamic) pages through the administration interface.
1825
- Added help.module:
1826
    * Groups all available module documentation on a single page.
1827
- Added forum.module:
1828
    * Added an integrated forum.
1829
- Added cvs.module and cvs-to-sql.pl:
1830
    * Allows to display and mail CVS log messages as daily digests.
1831
- Added book.module:
1832
    * Allows collaborative handbook writing: primary used for Drupal documentation.
1833
- Removed cron.module and integrated it into conf.module.
1834
- Removed module.module as it was no longer needed.
1835
- Various updates:
1836
    * Added "auto-post new submissions" feature versus "moderate new submissions".
1837
    * Introduced links/Drupal tags: [[link]]
1838
    * Added preview functionality when submitting new content (such as a story) from the administration pages.
1839
    * Made the administration section only show those links a user has access to.
1840
    * Made all modules use specific form_* functions to guarantee a rock-solid forms and more consistent layout.
1841
    * Improved scheduler:
1842
        + Content can be scheduled to be 'posted', 'queued' and 'hidden'.
1843
    * Improved account module:
1844
        + Added "access control" to allow/deny certain usernames/e-mail addresses/hostnames.
1845
    * Improved locale module:
1846
        + Added new overview to easy the translation process.
1847
    * Improved comment module:
1848
        + Made it possible to permanently delete comments.
1849
    * Improved rating module
1850
    * Improved story module:
1851
        + Added preview functionality for administrators.
1852
        + Made it possible to permanently delete stories.
1853
    * Improved themes:
1854
        + W3C validation on a best effort basis.
1855
        + Removed $theme->control() from themes.
1856
        + Added theme "goofy".
1857
- Collaboratively revised and expanded the Drupal documentation.
1858

    
1859
Drupal 2.0.0, 2001-03-15
1860
------------------------
1861
- Rewrote the comment/discussion code:
1862
    * Comment navigation should be less confusing now.
1863
    * Additional/alternative display and order methods have been added.
1864
    * Modules can be extended with a "comment system": modules can embed the existing comment system without having to write their own, duplicate comment system.
1865
- Added sections and section manager:
1866
    * Story sections can be maintained from the administration pages.
1867
    * 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.
1868
- Multiple vhosts + multiple directories:
1869
    * You can set up multiple Drupal sites on top of the same physical source tree either by using vhosts or sub-directories.
1870
- Added "user ratings" similar to SlashCode's Karma or Scoop's Mojo:
1871
    * All rating logic is packed into a module to ease experimenting with different rating heuristics/algorithms.
1872
- Added "search infrastructure":
1873
    * Improved search page and integrated search functionality in the administration pages.
1874
- Added translation / localization / internationalization support:
1875
    * 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.
1876
- Added fine-grained user permission (or group) system:
1877
    * 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.
1878
- Added FAQ module
1879
- Changed the "open submission queue" into a (optional) module.
1880
- Various updates:
1881
    * Improved account module:
1882
        + User accounts can be deleted.
1883
        + Added fine-grained permission support.
1884
    * Improved block module
1885
    * Improved diary module:
1886
        + Diary entries can be deleted
1887
    * Improved headline module:
1888
        + Improved parser to support more "generic" RDF/RSS/XML backend.
1889
    * Improved module module
1890
    * Improved watchdog module
1891
    * Improved database abstraction layer
1892
    * Improved themes:
1893
        + W3C validation on a best effort basis
1894
        + Added theme "example" (alias "Stone Age")
1895
    * Added new scripts to directory "scripts"
1896
    * Added directory "misc"
1897
    * Added CREDITS file
1898
- Revised documentation
1899

    
1900
Drupal 1.0.0, 2001-01-15
1901
------------------------
1902
- Initial release