Projet

Général

Profil

Paste
Télécharger (84 ko) Statistiques
| Branche: | Révision:

root / htmltest / CHANGELOG.txt @ 6d91f38e

1

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
429
Drupal 7.9, 2011-10-26
430
----------------------
431
- Critical fixes to OpenID to spec violations that could allow for
432
  impersonation in certain scenarios. Existing OpenID users should see
433
  http://drupal.org/node/1120290#comment-5092796 for more information on
434
  transitioning.
435
- Fixed files getting lost when adding multiple files to multiple file fields
436
  at the same time.
437
- Improved usability of the clean URL test screens.
438
- Restored height/width attributes on images run through the theme system.
439
- Fixed usability bug with first password field being pre-filled by certain
440
  browser plugins.
441
- Fixed file_usage_list() so that it can return more than one result.
442
- Fixed bug preventing preview of private images on node form.
443
- Fixed PDO error when inserting an aggregator title longer than 255 characters.
444
- Spelled out what TRADITIONAL means in MySQL sql_mode.
445
- Deprecated "!=" operator for DBTNG; should be "<>".
446
- Added two new API functions (menu_tree_set_path()/menu_tree_get_path()) were
447
  added in order to enable setting the active menu trail for dynamically
448
  generated menu paths.
449
- Added new "fast 404" capability in settings.php to bypass Drupal bootstrap
450
  when serving 404 pages for certain file types.
451
- Added format_string() function which can perform string munging ala the t()
452
  function without the overhead of the translation system.
453
- Numerous #states system fixes.
454
- Numerous EntityFieldQuery, DBTNG, and SQLite fixes.
455
- Numerous Shortcut module fixes.
456
- Numerous language system fixes.
457
- Numerous token fixes.
458
- Numerous CSS fixes.
459
- Numerous upgrade path fixes.
460
- Numerous minor string fixes.
461
- Numerous notice fixes.
462

    
463
Drupal 7.8, 2011-08-31
464
----------------------
465
- Fixed critical upgrade path issue with multilingual sites, leading to lost
466
  content.
467
- Numerous fixes to upgrade path, preventing fatal errors due to incorrect
468
  dependencies.
469
- Fixed issue with saving files on hosts with open_basedir restrictions.
470
- Fixed Update manger error when used with Overlay.
471
- Fixed RTL support in Seven administration theme and Overlay.
472
- Fixes to nested transaction support.
473
- Introduced performance pattern to reduce Drupal core's RAM usage.
474
- Added support for HTML 5 tags to filter_xss_admin().
475
- Added exception handling to cron.
476
- Added new hook hook_field_widget_form_alter() for contribtued modules.
477
- element_validate_*() functions now available to contrib.
478
- Added new maintainers for several subsystems.
479
- Numerous testing system improvements.
480
- Numerous markup and CSS fixes.
481
- Numerous poll module fixes.
482
- Numerous notice/warning fixes.
483
- Numerous documentation fixes.
484
- Numerous token fixes.
485

    
486
Drupal 7.7, 2011-07-27
487
----------------------
488
- Fixed VERSION string.
489

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

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

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

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

    
526
Drupal 7.2, 2011-05-25
527
----------------------
528
- Added a default .gitignore file.
529
- Improved PostgreSQL and SQLite support.
530
- Numerous critical performance improvements.
531
- Numerous critical fixes to the upgrade path.
532
- Numerous fixes to language and translation systems.
533
- Numerous fixes to AJAX and #states systems.
534
- Improvements to the locking system.
535
- Numerous documentation fixes.
536
- Numerous styling and theme system fixes.
537
- Numerous fixes for schema mis-matches between Drupal 6 and 7.
538
- Minor internal API clean-ups.
539

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

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

    
763
Drupal 6.23-dev, xxxx-xx-xx (development release)
764
-----------------------
765

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
916
Drupal 6.0, 2008-02-13
917
----------------------
918
- New, faster and better menu system.
919
- New watchdog as a hook functionality.
920
   * New hook_watchdog that can be implemented by any module to route log
921
     messages to various destinations.
922
   * Expands the severity levels from 3 (Error, Warning, Notice) to the 8
923
     levels defined in RFC 3164.
924
   * The watchdog module is now called dblog, and is optional, but enabled by
925
     default in the default installation profile.
926
   * Extended the database log module so log messages can be filtered.
927
   * Added syslog module: useful for monitoring large Drupal installations.
928
- Added optional e-mail notifications when users are approved, blocked, or
929
  deleted.
930
- Drupal works with error reporting set to E_ALL.
931
- Added scripts/drupal.sh to execute Drupal code from the command line. Useful
932
  to use Drupal as a framework to build command-line tools.
933
- Made signature support optional and made it possible to theme signatures.
934
- Made it possible to filter the URL aliases on the URL alias administration
935
  screen.
936
- Language system improvements:
937
    * Support for right to left languages.
938
    * Language detection based on parts of the URL.
939
    * Browser based language detection.
940
    * Made it possible to specify a node's language.
941
    * Support for translating posts on the site to different languages.
942
    * Language dependent path aliases.
943
    * Automatically import translations when adding a new language.
944
    * JavaScript interface translation.
945
    * Automatically import a module's translation upon enabling that module.
946
- Moved "PHP input filter" to a standalone module so it can be deleted for
947
  security reasons.
948
- Usability:
949
    * Improved handling of teasers in posts.
950
    * Added sticky table headers.
951
    * Check for clean URL support automatically with JavaScript.
952
    * Removed default/settings.php. Instead the installer will create it from
953
      default.settings.php.
954
    * Made it possible to configure your own date formats.
955
    * Remember anonymous comment posters.
956
    * Only allow modules and themes to be enabled that have explicitly been
957
      ported to the correct core API version.
958
    * Can now specify the minimum PHP version required for a module within the
959
      .info file.
960
    * Drupal core no longer requires CREATE TEMPORARY TABLES or LOCK TABLES
961
      database rights.
962
    * Dynamically check password strength and confirmation.
963
    * Refactored poll administration.
964
    * Implemented drag-and-drop positioning for blocks, menu items, taxonomy
965
      vocabularies and terms, forums, profile fields, and input format filters.
966
- Theme system:
967
    * Added .info files to themes and made it easier to specify regions and
968
      features.
969
    * Added theme registry: modules can directly provide .tpl.php files for
970
      their themes without having to create theme_ functions.
971
    * Used the Garland theme for the installation and maintenance pages.
972
    * Added theme preprocess functions for themes that are templates.
973
    * Added support for themeable functions in JavaScript.
974
- Refactored update.php to a generic batch API to be able to run time-consuming
975
  operations in multiple subsequent HTTP requests.
976
- Installer:
977
    * Themed the installer with the Garland theme.
978
    * Added form to provide initial site information during installation.
979
    * Added ability to provide extra installation steps programmatically.
980
    * Made it possible to import interface translations during installation.
981
- Added the HTML corrector filter:
982
    * Fixes faulty and chopped off HTML in postings.
983
    * Tags are now automatically closed at the end of the teaser.
984
- Performance:
985
    * Made it easier to conditionally load .include files and split up many core
986
      modules.
987
    * Added a JavaScript aggregator.
988
    * Added block-level caching, improving performance for both authenticated
989
      and anonymous users.
990
    * Made Drupal work correctly when running behind a reverse proxy like
991
      Squid or Pound.
992
- File handling improvements:
993
    * Entries in the files table are now keyed to a user instead of a node.
994
    * Added reusable validation functions to check for uploaded file sizes,
995
      extensions, and image resolution.
996
    * Added ability to create and remove temporary files during a cron job.
997
- Forum improvements:
998
    * Any node type may now be posted in a forum.
999
- Taxonomy improvements:
1000
    * Descriptions for terms are now shown on taxonomy/term pages as well
1001
      as RSS feeds.
1002
    * Added versioning support to categories by associating them with node
1003
      revisions.
1004
- Added support for OpenID.
1005
- Added support for triggering configurable actions.
1006
- Added the Update status module to automatically check for available updates
1007
  and warn sites if they are missing security updates or newer versions.
1008
  Sites deploying from CVS should use http://drupal.org/project/cvs_deploy.
1009
  Advanced settings provided by http://drupal.org/project/update_advanced.
1010
- Upgraded the core JavaScript library to jQuery version 1.2.3.
1011
- Added a new Schema API, which provides built-in support for core and
1012
  contributed modules to work with databases other than MySQL.
1013
- Removed drupal.module. The functionality lives on as the Site network
1014
  contributed module (http://drupal.org/project/site_network).
1015
- Removed old system updates. Updates from Drupal versions prior to 5.x will
1016
  require upgrading to 5.x before upgrading to 6.x.
1017

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
1107
Drupal 5.7, 2008-01-28
1108
----------------------
1109
- fixed the input format configuration page.
1110
- fixed a variety of small bugs.
1111

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

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

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

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

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

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

    
1150
Drupal 5.0, 2007-01-15
1151
----------------------
1152
- Completely retooled the administration page
1153
    * /Admin now contains an administration page which may be themed
1154
    * Reorganised administration menu items by task and by module
1155
    * Added a status report page with detailed PHP/MySQL/Drupal information
1156
- Added web-based installer which can:
1157
    * Check installation and run-time requirements
1158
    * Automatically generate the database configuration file
1159
    * Install pre-made installation profiles or distributions
1160
    * Import the database structure with automatic table prefixing
1161
    * Be localized
1162
- Added new default Garland theme
1163
- Added color module to change some themes' color schemes
1164
- Included the jQuery JavaScript library 1.0.4 and converted all core JavaScript to use it
1165
- Introduced the ability to alter mail sent from system
1166
- Module system:
1167
    * Added .info files for module meta-data
1168
    * Added support for module dependencies
1169
    * Improved module installation screen
1170
    * Moved core modules to their own directories
1171
    * Added support for module uninstalling
1172
- Added support for different cache backends
1173
- Added support for a generic "sites/all" directory.
1174
- Usability:
1175
    * Added support for auto-complete forms (AJAX) to user profiles.
1176
    * Made it possible to instantly assign roles to newly created user accounts.
1177
    * Improved configurability of the contact forms.
1178
    * Reorganized the settings pages.
1179
    * Made it easy to investigate popular search terms.
1180
    * Added a 'select all' checkbox and a range select feature to administration tables.
1181
    * Simplified the 'break' tag to split teasers from body.
1182
    * Use proper capitalization for titles, menu items and operations.
1183
- Integrated urlfilter.module into filter.module
1184
- Block system:
1185
    * Extended the block visibility settings with a role specific setting.
1186
    * Made it possible to customize all block titles.
1187
- Poll module:
1188
    * Optionally allow people to inspect all votes.
1189
    * Optionally allow people to cancel their vote.
1190
- Distributed authentication:
1191
    * Added default server option.
1192
- Added default robots.txt to control crawlers.
1193
- Database API:
1194
    * Added db_table_exists().
1195
- Blogapi module:
1196
    * 'Blogapi new' and 'blogapi edit' nodeapi operations.
1197
- User module:
1198
    * Added hook_profile_alter().
1199
    * E-mail verification is made optional.
1200
    * Added mass editing and filtering on admin/user/user.
1201
- PHP Template engine:
1202
    * Add the ability to look for a series of suggested templates.
1203
    * Look for page templates based upon the path.
1204
    * Look for block templates based upon the region, module, and delta.
1205
- Content system:
1206
    * Made it easier for node access modules to work well with each other.
1207
    * Added configurable content types.
1208
    * Changed node rendering to work with structured arrays.
1209
- Performance:
1210
    * Improved session handling: reduces database overhead.
1211
    * Improved access checking: reduces database overhead.
1212
    * Made it possible to do memcached based session management.
1213
    * Omit sidebars when serving a '404 - Page not found': saves CPU cycles and bandwidth.
1214
    * Added an 'aggressive' caching policy.
1215
    * Added a CSS aggregator and compressor (up to 40% faster page loads).
1216
- Removed the archive module.
1217
- Upgrade system:
1218
    * Created space for update branches.
1219
- Form API:
1220
    * Made it possible to programmatically submit forms.
1221
    * Improved api for multistep forms.
1222
- Theme system:
1223
    * Split up and removed drupal.css.
1224
    * Added nested lists generation.
1225
    * Added a self-clearing block class.
1226

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

    
1233
Drupal 4.7.10, 2007-12-06
1234
-------------------------
1235
- fixed taxonomy feed bug introduced by SA-2007-031
1236

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

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

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

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

    
1255
Drupal 4.7.5, 2007-01-05
1256
------------------------
1257
- Fixed security issue (XSS), see SA-2007-001
1258
- Fixed security issue (DoS), see SA-2007-002
1259

    
1260
Drupal 4.7.4, 2006-10-18
1261
------------------------
1262
- Fixed security issue (XSS), see SA-2006-024
1263
- Fixed security issue (CSRF), see SA-2006-025
1264
- Fixed security issue (Form action attribute injection), see SA-2006-026
1265

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

    
1270
Drupal 4.7.2, 2006-06-01
1271
------------------------
1272
- Fixed critical upload issue, see SA-2006-007
1273
- Fixed taxonomy XSS issue, see SA-2006-008
1274
- Fixed a variety of small bugs.
1275

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

    
1282
Drupal 4.7.0, 2006-05-01
1283
------------------------
1284
- Added free tagging support.
1285
- Added a site-wide contact form.
1286
- Theme system:
1287
    * Added the PHPTemplate theme engine and removed the Xtemplate engine.
1288
    * Converted the bluemarine theme from XTemplate to PHPTemplate.
1289
    * Converted the pushbutton theme from XTemplate to PHPTemplate.
1290
- Usability:
1291
    * Reworked the 'request new password' functionality.
1292
    * Reworked the node and comment edit forms.
1293
    * Made it easy to add nodes to the navigation menu.
1294
    * Added site 'offline for maintenance' feature.
1295
    * Added support for auto-complete forms (AJAX).
1296
    * Added support for collapsible page sections (JS).
1297
    * Added support for resizable text fields (JS).
1298
    * Improved file upload functionality (AJAX).
1299
    * Reorganized some settings pages.
1300
    * Added friendly database error screens.
1301
    * Improved styling of update.php.
1302
- Refactored the forms API.
1303
    * Made it possible to alter, extend or theme forms.
1304
- Comment system:
1305
    * Added support for "mass comment operations" to ease repetitive tasks.
1306
    * Comment moderation has been removed.
1307
- Node system:
1308
    * Reworked the revision functionality.
1309
    * Removed the bookmarklet code. Third-party modules can now handle
1310
      This.
1311
- Upgrade system:
1312
    * Allows contributed modules to plug into the upgrade system.
1313
- Profiles:
1314
    * Added a block to display author information along with posts.
1315
    * Added support for private profile fields.
1316
- Statistics module:
1317
    * Added the ability to track page generation times.
1318
    * Made it possible to block certain IPs/hostnames.
1319
- Block system:
1320
    * Added support for theme-specific block regions.
1321
- Syndication:
1322
    * Made the aggregator module parse Atom feeds.
1323
    * Made the aggregator generate RSS feeds.
1324
    * Added RSS feed settings.
1325
- XML-RPC:
1326
    * Replaced the XML-RPC library by a better one.
1327
- Performance:
1328
    * Added 'loose caching' option for high-traffic sites.
1329
    * Improved performance of path aliasing.
1330
    * Added the ability to track page generation times.
1331
- Internationalization:
1332
    * Improved Unicode string handling API.
1333
    * Added support for PHP's multibyte string module.
1334
- Added support for PHP5's 'mysqli' extension.
1335
- Search module:
1336
    * Made indexer smarter and more robust.
1337
    * Added advanced search operators (e.g. phrase, node type, ...).
1338
    * Added customizable result ranking.
1339
- PostgreSQL support:
1340
    * Removed dependency on PL/pgSQL procedural language.
1341
- Menu system:
1342
    * Added support for external URLs.
1343
- Queue module:
1344
    * Removed from core.
1345
- HTTP handling:
1346
    * Added support for a tolerant Base URL.
1347
    * Output URIs relative to the root, without a base tag.
1348

    
1349
Drupal 4.6.11, 2007-01-05
1350
-------------------------
1351
- Fixed security issue (XSS), see SA-2007-001
1352
- Fixed security issue (DoS), see SA-2007-002
1353

    
1354
Drupal 4.6.10, 2006-10-18
1355
------------------------
1356
- Fixed security issue (XSS), see SA-2006-024
1357
- Fixed security issue (CSRF), see SA-2006-025
1358
- Fixed security issue (Form action attribute injection), see SA-2006-026
1359

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

    
1364
Drupal 4.6.8, 2006-06-01
1365
------------------------
1366
- Fixed critical upload issue, see SA-2006-007
1367
- Fixed taxonomy XSS issue, see SA-2006-008
1368

    
1369
Drupal 4.6.7, 2006-05-24
1370
------------------------
1371
- Fixed critical SQL issue, see SA-2006-005
1372

    
1373
Drupal 4.6.6, 2006-03-13
1374
------------------------
1375
- Fixed bugs, including 4 security vulnerabilities.
1376

    
1377
Drupal 4.6.5, 2005-12-12
1378
------------------------
1379
- Fixed bugs: no critical bugs were identified.
1380

    
1381
Drupal 4.6.4, 2005-11-30
1382
------------------------
1383
- Fixed bugs, including 3 security vulnerabilities.
1384

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

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

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

    
1397
Drupal 4.6.0, 2005-04-15
1398
------------------------
1399
- PHP5 compliance
1400
- Search:
1401
    * Added UTF-8 support to make it work with all languages.
1402
    * Improved search indexing algorithm.
1403
    * Improved search output.
1404
    * Impose a throttle on indexing of large sites.
1405
    * Added search block.
1406
- Syndication:
1407
    * Made the ping module ping pingomatic.com which, in turn, will ping all the major ping services.
1408
    * Made Drupal generate RSS 2.0 feeds.
1409
    * Made RSS feeds extensible.
1410
    * Added categories to RSS feeds.
1411
    * Added enclosures to RSS feeds.
1412
- Flood control mechanism:
1413
    * Added a mechanism to throttle certain operations.
1414
- Usability:
1415
    * Refactored the block configuration pages.
1416
    * Refactored the statistics pages.
1417
    * Refactored the watchdog pages.
1418
    * Refactored the throttle module configuration.
1419
    * Refactored the access rules page.
1420
    * Refactored the content administration page.
1421
    * Introduced forum configuration pages.
1422
    * Added a 'add child page' link to book pages.
1423
- Contact module:
1424
    * Added a simple contact module that allows users to contact each other using e-mail.
1425
- Multi-site configuration:
1426
    * Made it possible to run multiple sites from a single code base.
1427
- Added an image API: enables better image handling.
1428
- Block system:
1429
    * Extended the block visibility settings.
1430
- Theme system:
1431
    * Added new theme functions.
1432
- Database backend:
1433
    * The PEAR database backend is no longer supported.
1434
- Performance:
1435
    * Improved performance of the forum topics block.
1436
    * Improved performance of the tracker module.
1437
    * Improved performance of the node pages.
1438
- Documentation:
1439
    * Improved and extended PHPDoc/Doxygen comments.
1440

    
1441
Drupal 4.5.8, 2006-03-13
1442
------------------------
1443
- Fixed bugs, including 3 security vulnerabilities.
1444

    
1445
Drupal 4.5.7, 2005-12-12
1446
------------------------
1447
- Fixed bugs: no critical bugs were identified.
1448

    
1449
Drupal 4.5.6, 2005-11-30
1450
------------------------
1451
- Fixed bugs, including 3 security vulnerabilities.
1452

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

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

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

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

    
1469
Drupal 4.5.1, 2004-12-01
1470
------------------------
1471
- Fixed bugs: no critical bugs were identified.
1472

    
1473
Drupal 4.5.0, 2004-10-18
1474
------------------------
1475
- Navigation:
1476
    * Made it possible to add, delete, rename and move menu items.
1477
    * Introduced tabs and subtabs for local tasks.
1478
    * Reorganized the navigation menus.
1479
- User management:
1480
    * Added support for multiple roles per user.
1481
    * Made it possible to add custom profile fields.
1482
    * Made it possible to browse user profiles by field.
1483
- Node system:
1484
    * Added support for node-level permissions.
1485
- Comment module:
1486
    * Made it possible to leave contact information without having to register.
1487
- Upload module:
1488
    * Added support for uploading documents (includes images).
1489
- Forum module:
1490
    * Added support for sticky forum topics.
1491
    * Made it possible to track forum topics.
1492
- Syndication:
1493
    * Added support for RSS ping-notifications of http://technorati.com/.
1494
    * Refactored the categorization of syndicated news items.
1495
    * Added an URL alias for 'rss.xml'.
1496
    * Improved date parsing.
1497
- Database backend:
1498
    * Added support for multiple database connections.
1499
    * The PostgreSQL backend does no longer require PEAR.
1500
- Theme system:
1501
    * Changed all GIFs to PNGs.
1502
    * Reorganised the handling of themes, template engines, templates and styles.
1503
    * Unified and extended the available theme settings.
1504
    * Added theme screenshots.
1505
- Blocks:
1506
    * Added 'recent comments' block.
1507
    * Added 'categories' block.
1508
- Blogger API:
1509
    * Added support for auto-discovery of blogger API via RSD.
1510
- Performance:
1511
    * Added support for sending gzip compressed pages.
1512
    * Improved performance of the forum module.
1513
- Accessibility:
1514
    * Improved the accessibility of the archive module's calendar.
1515
    * Improved form handling and error reporting.
1516
    * Added HTTP redirects to prevent submitting twice when refreshing right after a form submission.
1517
- Refactored 403 (forbidden) handling and added support for custom 403 pages.
1518
- Documentation:
1519
    * Added PHPDoc/Doxygen comments.
1520
- Filter system:
1521
    * Added support for using multiple input formats on the site
1522
    * Expanded the embedded PHP-code feature so it can be used everywhere
1523
    * Added support for role-dependent filtering, through input formats
1524
- UI translation:
1525
    * Managing translations is now completely done through the administration interface
1526
    * Added support for importing/exporting gettext .po files
1527

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

    
1532
Drupal 4.4.2, 2004-07-04
1533
------------------------
1534
- Fixed bugs: no critical bugs were identified.
1535

    
1536
Drupal 4.4.1, 2004-05-01
1537
------------------------
1538
- Fixed bugs: no critical bugs were identified.
1539

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

    
1580
Drupal 4.3.2, 2004-01-01
1581
------------------------
1582
- Fixed bugs: no critical bugs were identified.
1583

    
1584
Drupal 4.3.1, 2003-12-01
1585
------------------------
1586
- Fixed bugs: no critical bugs were identified.
1587

    
1588
Drupal 4.3.0, 2003-11-01
1589
------------------------
1590
- Added support for configurable URLs.
1591
- Added support for sortable table columns.
1592
- Database backend:
1593
    * Added support for selective database table prefixing.
1594
- Performance:
1595
    * Optimized many SQL queries for speed by converting left joins to inner joins.
1596
- Comment module:
1597
    * Rewrote the comment housekeeping code to be much more efficient and scalable.
1598
    * Changed the comment module to use the standard pager.
1599
- User module:
1600
    * Added support for multiple sessions per user.
1601
    * Added support for anonymous user sessions.
1602
- Forum module:
1603
    * Improved the forum views and the themability thereof.
1604
- Book module:
1605
    * Improved integration of non-book nodes in the book outline.
1606
- Usability:
1607
    * Added support for "mass node operations" to ease repetitive tasks.
1608
    * Added support for breadcrumb navigation to several modules' user pages.
1609
    * Integrated the administration pages with the normal user pages.
1610

    
1611
Drupal 4.2.0, 2003-08-01
1612
------------------------
1613
- Added support for clean URLs.
1614
- Added textarea hook and support for onload attributes: enables integration of WYSIWYG editors.
1615
- Rewrote the RSS/RDF parser:
1616
    * It will now use PHP's built-in XML parser to parse news feeds.
1617
- Rewrote the administration pages:
1618
    * Improved the navigational elements and added breadcrumb navigation.
1619
    * Improved the look and feel.
1620
    * Added context-sensitive help.
1621
- Database backend:
1622
    * Fixed numerous SQL queries to make Drupal ANSI compliant.
1623
    * Added MSSQL database scheme.
1624
- Search module:
1625
    * Changed the search module to use implicit AND'ing instead of implicit OR'ing.
1626
- Node system:
1627
    * Replaced the "post content" permission by more fine-grained permissions.
1628
    * Improved content submission:
1629
        + 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.
1630
        + Added the ability to preview both the short and the full version of your posts.
1631
    * Extended the node API which allows for better integration.
1632
    * Added default node settings to control the behavior for promotion, moderation and other options.
1633
- Themes:
1634
    * Replaced theme "Goofy" by "Xtemplate", a template driven theme.
1635
- Removed the 'register_globals = on' requirement.
1636
- Added better installation instructions.
1637

    
1638
Drupal 4.1.0, 2003-02-01
1639
------------------------
1640
- Collaboratively revised and expanded the Drupal documentation.
1641
- Rewrote comment.module:
1642
    * Reintroduced comment rating/moderation.
1643
    * Added support for comment paging.
1644
    * Performance improvements: improved comment caching, faster SQL queries, etc.
1645
- Rewrote block.module:
1646
    * Performance improvements: blocks are no longer rendered when not displayed.
1647
- Rewrote forum.module:
1648
    * 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.
1649
- Rewrote statistics.module:
1650
    * Collects access counts for each node, referrer logs, number of users/guests.
1651
    * 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.
1652
- Added throttle.module:
1653
    * Auto-throttle congestion control mechanism: Drupal can adapt itself based on the server load.
1654
- Added profile.module:
1655
    * Enables to extend the user and registration page.
1656
- Added pager support to the main page.
1657
- Replaced weblogs.module by ping.module:
1658
    * Added support for normal and RSS notifications of http://blo.gs/.
1659
    * Added support for RSS ping-notifications of http://weblogs.com/.
1660
- Removed the rating module
1661
- Themes:
1662
    * Removed a significant portion of hard-coded mark-up.
1663

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

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

    
1723
Drupal 3.0.0, 2001-09-15
1724
------------------------
1725
- Major overhaul of the entire underlying design:
1726
    * 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.
1727
- Rewrote submission/moderation queue and renamed it to queue.module.
1728
- Removed FAQ and documentation module and merged them into a "book module".
1729
- Removed ban module and integrated it into account.module as "access control":
1730
    * Access control is based on much more powerful regular expressions (regex) now rather than on MySQL pattern matching.
1731
- Rewrote watchdog and submission throttle:
1732
    * Improved watchdog messages and added watchdog filter.
1733
- Rewrote headline code and renamed it to import.module and export.module:
1734
    * Added various improvements, including a better parser, bundles and better control over individual feeds.
1735
- Rewrote section code and renamed it to meta.module:
1736
    * Supports unlimited amount of nested topics. Topics can be nested to create a multi-level hierarchy.
1737
- Rewrote configuration file resolving:
1738
    * 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.
1739
- Added caching support which makes Drupal extremely scalable.
1740
- Added access.module:
1741
    * Allows you to set up 'roles' (groups) and to bind a set of permissions to each group.
1742
- Added blog.module.
1743
- Added poll.module.
1744
- Added system.module:
1745
    * Moved most of the configuration options from hostname.conf to the new administration section.
1746
    * Added support for custom "filters".
1747
- Added statistics.module
1748
- Added moderate.module:
1749
    * Allows to assign users editorial/moderator rights to certain nodes or topics.
1750
- Added page.module:
1751
    * Allows creation of static (and dynamic) pages through the administration interface.
1752
- Added help.module:
1753
    * Groups all available module documentation on a single page.
1754
- Added forum.module:
1755
    * Added an integrated forum.
1756
- Added cvs.module and cvs-to-sql.pl:
1757
    * Allows to display and mail CVS log messages as daily digests.
1758
- Added book.module:
1759
    * Allows collaborative handbook writing: primary used for Drupal documentation.
1760
- Removed cron.module and integrated it into conf.module.
1761
- Removed module.module as it was no longer needed.
1762
- Various updates:
1763
    * Added "auto-post new submissions" feature versus "moderate new submissions".
1764
    * Introduced links/Drupal tags: [[link]]
1765
    * Added preview functionality when submitting new content (such as a story) from the administration pages.
1766
    * Made the administration section only show those links a user has access to.
1767
    * Made all modules use specific form_* functions to guarantee a rock-solid forms and more consistent layout.
1768
    * Improved scheduler:
1769
        + Content can be scheduled to be 'posted', 'queued' and 'hidden'.
1770
    * Improved account module:
1771
        + Added "access control" to allow/deny certain usernames/e-mail addresses/hostnames.
1772
    * Improved locale module:
1773
        + Added new overview to easy the translation process.
1774
    * Improved comment module:
1775
        + Made it possible to permanently delete comments.
1776
    * Improved rating module
1777
    * Improved story module:
1778
        + Added preview functionality for administrators.
1779
        + Made it possible to permanently delete stories.
1780
    * Improved themes:
1781
        + W3C validation on a best effort basis.
1782
        + Removed $theme->control() from themes.
1783
        + Added theme "goofy".
1784
- Collaboratively revised and expanded the Drupal documentation.
1785

    
1786
Drupal 2.0.0, 2001-03-15
1787
------------------------
1788
- Rewrote the comment/discussion code:
1789
    * Comment navigation should be less confusing now.
1790
    * Additional/alternative display and order methods have been added.
1791
    * Modules can be extended with a "comment system": modules can embed the existing comment system without having to write their own, duplicate comment system.
1792
- Added sections and section manager:
1793
    * Story sections can be maintained from the administration pages.
1794
    * 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.
1795
- Multiple vhosts + multiple directories:
1796
    * You can set up multiple Drupal sites on top of the same physical source tree either by using vhosts or sub-directories.
1797
- Added "user ratings" similar to SlashCode's Karma or Scoop's Mojo:
1798
    * All rating logic is packed into a module to ease experimenting with different rating heuristics/algorithms.
1799
- Added "search infrastructure":
1800
    * Improved search page and integrated search functionality in the administration pages.
1801
- Added translation / localization / internationalization support:
1802
    * 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.
1803
- Added fine-grained user permission (or group) system:
1804
    * 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.
1805
- Added FAQ module
1806
- Changed the "open submission queue" into a (optional) module.
1807
- Various updates:
1808
    * Improved account module:
1809
        + User accounts can be deleted.
1810
        + Added fine-grained permission support.
1811
    * Improved block module
1812
    * Improved diary module:
1813
        + Diary entries can be deleted
1814
    * Improved headline module:
1815
        + Improved parser to support more "generic" RDF/RSS/XML backend.
1816
    * Improved module module
1817
    * Improved watchdog module
1818
    * Improved database abstraction layer
1819
    * Improved themes:
1820
        + W3C validation on a best effort basis
1821
        + Added theme "example" (alias "Stone Age")
1822
    * Added new scripts to directory "scripts"
1823
    * Added directory "misc"
1824
    * Added CREDITS file
1825
- Revised documentation
1826

    
1827
Drupal 1.0.0, 2001-01-15
1828
------------------------
1829
- Initial release