Projet

Général

Profil

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

root / drupal7 / CHANGELOG.txt @ fc457866

1

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
726
Drupal 7.9, 2011-10-26
727
----------------------
728
- Critical fixes to OpenID to spec violations that could allow for
729
  impersonation in certain scenarios. Existing OpenID users should see
730
  http://drupal.org/node/1120290#comment-5092796 for more information on
731
  transitioning.
732
- Fixed files getting lost when adding multiple files to multiple file fields
733
  at the same time.
734
- Improved usability of the clean URL test screens.
735
- Restored height/width attributes on images run through the theme system.
736
- Fixed usability bug with first password field being pre-filled by certain
737
  browser plugins.
738
- Fixed file_usage_list() so that it can return more than one result.
739
- Fixed bug preventing preview of private images on node form.
740
- Fixed PDO error when inserting an aggregator title longer than 255 characters.
741
- Spelled out what TRADITIONAL means in MySQL sql_mode.
742
- Deprecated "!=" operator for DBTNG; should be "<>".
743
- Added two new API functions (menu_tree_set_path()/menu_tree_get_path()) were
744
  added in order to enable setting the active menu trail for dynamically
745
  generated menu paths.
746
- Added new "fast 404" capability in settings.php to bypass Drupal bootstrap
747
  when serving 404 pages for certain file types.
748
- Added format_string() function which can perform string munging ala the t()
749
  function without the overhead of the translation system.
750
- Numerous #states system fixes.
751
- Numerous EntityFieldQuery, DBTNG, and SQLite fixes.
752
- Numerous Shortcut module fixes.
753
- Numerous language system fixes.
754
- Numerous token fixes.
755
- Numerous CSS fixes.
756
- Numerous upgrade path fixes.
757
- Numerous minor string fixes.
758
- Numerous notice fixes.
759

    
760
Drupal 7.8, 2011-08-31
761
----------------------
762
- Fixed critical upgrade path issue with multilingual sites, leading to lost
763
  content.
764
- Numerous fixes to upgrade path, preventing fatal errors due to incorrect
765
  dependencies.
766
- Fixed issue with saving files on hosts with open_basedir restrictions.
767
- Fixed Update manger error when used with Overlay.
768
- Fixed RTL support in Seven administration theme and Overlay.
769
- Fixes to nested transaction support.
770
- Introduced performance pattern to reduce Drupal core's RAM usage.
771
- Added support for HTML 5 tags to filter_xss_admin().
772
- Added exception handling to cron.
773
- Added new hook hook_field_widget_form_alter() for contribtued modules.
774
- element_validate_*() functions now available to contrib.
775
- Added new maintainers for several subsystems.
776
- Numerous testing system improvements.
777
- Numerous markup and CSS fixes.
778
- Numerous poll module fixes.
779
- Numerous notice/warning fixes.
780
- Numerous documentation fixes.
781
- Numerous token fixes.
782

    
783
Drupal 7.7, 2011-07-27
784
----------------------
785
- Fixed VERSION string.
786

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

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

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

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

    
823
Drupal 7.2, 2011-05-25
824
----------------------
825
- Added a default .gitignore file.
826
- Improved PostgreSQL and SQLite support.
827
- Numerous critical performance improvements.
828
- Numerous critical fixes to the upgrade path.
829
- Numerous fixes to language and translation systems.
830
- Numerous fixes to AJAX and #states systems.
831
- Improvements to the locking system.
832
- Numerous documentation fixes.
833
- Numerous styling and theme system fixes.
834
- Numerous fixes for schema mis-matches between Drupal 6 and 7.
835
- Minor internal API clean-ups.
836

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

    
841
Drupal 7.0, 2011-01-05 
842
----------------------
843
- Database:
844
    * Fully rewritten database layer utilizing PHP 5's PDO abstraction layer.
845
    * Drupal now requires MySQL >= 5.0.15 or PostgreSQL >= 8.3.
846
    * Added query builders for INSERT, UPDATE, DELETE, MERGE, and SELECT queries.
847
    * Support for master/slave replication, transactions, multi-insert queries,
848
      and other features.
849
    * Added support for the SQLite database engine.
850
    * Default to InnoDB engine, rather than MyISAM, on MySQL when available.
851
      This offers increased scalability and data integrity.
852
- Security:
853
    * Protected cron.php -- cron will only run if the proper key is provided.
854
    * Implemented a pluggable password system and much stronger password hashes
855
      that are compatible with the Portable PHP password hashing framework.
856
    * Rate limited login attempts to prevent brute-force password guessing, and
857
      improved the flood control API to allow variable time windows and
858
      identifiers for limiting user access to resources.
859
    * Transformed the "Update status" module into the "Update manager" which
860
      can securely install or update modules and themes via a web interface.
861
- Usability:
862
    * Added contextual links (a.k.a. local tasks) to page elements, such as
863
      blocks, nodes, or comments, which allows to perform the most common tasks
864
      with a single click only.
865
    * Improved installer requirements check.
866
    * Improved support for integration of WYSIWYG editors.
867
    * Implemented drag-and-drop positioning for input format listings.
868
    * Implemented drag-and-drop positioning for language listing.
869
    * Implemented drag-and-drop positioning for poll options.
870
    * Provided descriptions and human-readable names for user permissions.
871
    * Removed comment controls for users.
872
    * Removed display order settings for comment module. Comment display
873
      order can now be customized using the Views module.
874
    * Removed the 'related terms' feature from taxonomy module since this can
875
      now be achieved with Field API.
876
    * Added additional features to the default installation profile, and
877
      implemented a "slimmed down" profile designed for developers.
878
    * Added a built-in, automated cron run feature, which is triggered by site
879
      visitors.
880
    * Added an administrator role which is assigned all permissions for
881
      installed modules automatically.
882
    * Image toolkits are now provided by modules (rather than requiring a
883
      manual file copy to the includes directory).
884
    * Added an edit tab to taxonomy term pages.
885
    * Redesigned password strength validator.
886
    * Redesigned the add content type screen.
887
    * Highlight duplicate URL aliases.
888
    * Renamed "input formats" to "text formats".
889
    * Moved text format permissions to the main permissions page.
890
    * Added configurable ability for users to cancel their own accounts.
891
    * Added "vertical tabs", a reusable interface component that features
892
      automatic summaries and increases usability.
893
    * Replaced fieldsets on node edit and add pages with vertical tabs.
894
- Performance:
895
    * Improved performance on uncached page views by loading multiple core
896
      objects in a single database query.
897
    * Improved performance for logged-in users by reducing queries for path
898
      alias lookups.
899
    * Improved support for HTTP proxies (including reverse proxies), allowing
900
      anonymous page views to be served entirely from the proxy.
901
- Documentation:
902
    * Hook API documentation now included in Drupal core.
903
- News aggregator:
904
    * Added OPML import functionality for RSS feeds.
905
    * Optionally, RSS feeds may be configured to not automatically generate feed blocks.
906
- Search:
907
    * Added support for language-aware searches.
908
- Aggregator:
909
    * Introduced architecture that allows pluggable parsers and processors for
910
      syndicating RSS and Atom feeds.
911
    * Added options to suspend updating specific feeds and never discard feeds
912
      items.
913
- Testing:
914
    * Added test framework and tests.
915
- Improved time zone support:
916
    * Drupal now uses PHP's time zone database when rendering dates in local
917
      time. Site-wide and user-configured time zone offsets have been converted
918
      to time zone names, e.g. Africa/Abidjan.
919
    * In some cases the upgrade and install scripts do not choose the preferred
920
      site default time zone. The automatically-selected time zone can be
921
      corrected at admin/config/regional/settings.
922
    * If your site is being upgraded from Drupal 6 and you do not have the
923
      contributed date or event modules installed, user time zone settings will
924
      fallback to the system time zone and will have to be reconfigured by each user.
925
    * User-configured time zones now serve as the default time zone for PHP
926
      date/time functions.
927
- Filter system:
928
    * Revamped the filter API and text format storage.
929
    * Added support for default text formats to be assigned on a per-role basis.
930
    * Refactored the HTML corrector to take advantage of PHP 5 features.
931
- User system:
932
    * Added clean API functions for creating, loading, updating, and deleting
933
      user roles and permissions.
934
    * Refactored the "access rules" component of user module: The user module
935
      now provides a simple interface for blocking single IP addresses. The
936
      previous functionality in the user module for restricting certain e-mail
937
      addresses and usernames is now available as a contributed module. Further,
938
      IP address range blocking is no longer supported and should be implemented
939
      at the operating system level.
940
    * Removed per-user themes: Contributed modules with similar functionality
941
      are available.
942
- OpenID:
943
    * Added support for Gmail and Google Apps for Domain identifiers. Users can
944
      now login with their user@example.com identifier when example.com is powered
945
      by Google.
946
    * Made the OpenID module more pluggable.
947
- Added code registry:
948
    * Using the registry, modules declare their includable files via their .info file,
949
      allowing Drupal to lazy-load classes and interfaces as needed.
950
- Theme system:
951
    * Removed the Bluemarine, Chameleon and Pushbutton themes. These themes live
952
      on as contributed themes (http://drupal.org/project/bluemarine,
953
      http://drupal.org/project/chameleon and http://drupal.org/project/pushbutton).
954
    * Added Stark theme to make analyzing Drupal's default HTML and CSS easier.
955
    * Added Seven as the default administration theme.
956
    * Variable preprocessing of theme hooks prior to template rendering now goes
957
      through two phases: a 'preprocess' phase and a new 'process' phase. See
958
      http://api.drupal.org/api/function/theme/7 for details.
959
    * Theme hooks implemented as functions (rather than as templates) can now
960
      also have preprocess (and process) functions. See
961
      http://api.drupal.org/api/function/theme/7 for details.
962
    * Added Bartik as the default theme.
963
- File handling:
964
    * Files are now first class Drupal objects with file_load(), file_save(),
965
      and file_validate() functions and corresponding hooks.
966
    * The file_move(), file_copy() and file_delete() functions now operate on
967
      file objects and invoke file hooks so that modules are notified and can
968
      respond to changes.
969
    * For the occasions when only basic file manipulation are needed--such as
970
      uploading a site logo--that don't require the overhead of databases and
971
      hooks, the current unmanaged copy, move and delete operations have been
972
      preserved but renamed to file_unmanaged_*().
973
    * Rewrote file handling to use PHP stream wrappers to enable support for
974
      both public and private files and to support pluggable storage mechanisms
975
      and access to remote resources (e.g. S3 storage or Flickr photos).
976
    * The mime_extension_mapping variable has been removed. Modules that need to
977
      alter the default MIME type extension mappings should implement
978
      hook_file_mimetype_mapping_alter().
979
    * Added the hook_file_url_alter() hook, which makes it possible to serve
980
      files from a CDN.
981
    * Added a field specifically for uploading files, previously provided by
982
      the contributed module FileField.
983
- Image handling:
984
    * Improved image handling, including better support for add-on image
985
      libraries.
986
    * Added API and interface for creating advanced image thumbnails.
987
    * Inclusion of additional effects such as rotate and desaturate.
988
    * Added a field specifically for uploading images, previously provided by
989
      the contributed module ImageField.
990
- Added aliased multi-site support:
991
    * Added support for mapping domain names to sites directories.
992
- Added RDF support:
993
    * Modules can declare RDF namespaces which are serialized in the <html> tag
994
      for RDFa support.
995
    * Modules can specify how their data structure maps to RDF.
996
    * Added support for RDFa export of nodes, comments, terms, users, etc. and
997
      their fields.
998
- Search engine optimization and web linking:
999
    * Added a rel="canonical" link on node and comment pages to prevent
1000
      duplicate content indexing by search engines.
1001
    * Added a default rel="shortlink" link on node and comment pages that
1002
      advertises a short link as an alternative URL to third-party services.
1003
    * Meta information is now alterable by all modules before rendering.
1004
- Field API:
1005
    * Custom data fields may be attached to nodes, users, comments and taxonomy
1006
      terms.
1007
    * Node bodies and teasers are now Field API fields instead of
1008
      being a hard-coded property of node objects.
1009
    * In addition, any other object type may register with Field API
1010
      and allow custom data fields to be attached to itself.
1011
    * Provides most of the features of the former Content Construction
1012
      Kit (CCK) module.
1013
    * Taxonomy terms are now Field API fields that can be added to any fieldable
1014
      object.
1015
- Installer:
1016
    * Refactored the installer into an API that allows Drupal to be installed
1017
      via a command line script.
1018
- Page organization
1019
    * Made the help text area a full featured region with blocks.
1020
    * Site mission is replaced with the highlighted content block region and
1021
      separate RSS feed description settings.
1022
    * The footer message setting was removed in favor of custom blocks.
1023
    * Made the main page content a block which can be moved and ordered
1024
      with other blocks in the same region.
1025
    * Blocks can now return structured arrays for later rendering just
1026
      like page callbacks.
1027
- Translation system
1028
    * The translation system now supports message context (msgctxt).
1029
    * Added support for translatable fields to Field API.
1030
- JavaScript changes
1031
    * Upgraded the core JavaScript library to jQuery version 1.4.4.
1032
    * Upgraded the jQuery Forms library to 2.52.
1033
    * Added jQuery UI 1.8.7, which allows improvements to Drupal's user
1034
      experience.
1035
- Better module version support
1036
    * Modules now can specify which version of another module they depend on.
1037
- Removed modules from core
1038
    * The following modules have been removed from core, because contributed
1039
      modules with similar functionality are available:
1040
      * Blog API module
1041
      * Ping module
1042
      * Throttle module
1043
- Improved node access control system.
1044
    * All modules may now influence the access to a node at runtime, not just
1045
      the module that defined a node.
1046
    * Users may now be allowed to bypass node access restrictions without giving
1047
      them complete access to the site.
1048
    * Access control affects both published and unpublished nodes.
1049
    * Numerous other improvements to the node access system.
1050
- Actions system
1051
    * Simplified definitions of actions and triggers.
1052
    * Removed dependency on the combination of hooks and operations. Triggers
1053
      now directly map to module hooks.
1054
- Task handling
1055
    * Added a queue API to process many or long-running tasks.
1056
    * Added queue API support to cron API.
1057
    * Added a locking framework to coordinate long-running operations across
1058
      requests.
1059

    
1060
Drupal 6.23-dev, xxxx-xx-xx (development release)
1061
---------------------------
1062

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
1213
Drupal 6.0, 2008-02-13
1214
----------------------
1215
- New, faster and better menu system.
1216
- New watchdog as a hook functionality.
1217
   * New hook_watchdog that can be implemented by any module to route log
1218
     messages to various destinations.
1219
   * Expands the severity levels from 3 (Error, Warning, Notice) to the 8
1220
     levels defined in RFC 3164.
1221
   * The watchdog module is now called dblog, and is optional, but enabled by
1222
     default in the default installation profile.
1223
   * Extended the database log module so log messages can be filtered.
1224
   * Added syslog module: useful for monitoring large Drupal installations.
1225
- Added optional e-mail notifications when users are approved, blocked, or
1226
  deleted.
1227
- Drupal works with error reporting set to E_ALL.
1228
- Added scripts/drupal.sh to execute Drupal code from the command line. Useful
1229
  to use Drupal as a framework to build command-line tools.
1230
- Made signature support optional and made it possible to theme signatures.
1231
- Made it possible to filter the URL aliases on the URL alias administration
1232
  screen.
1233
- Language system improvements:
1234
    * Support for right to left languages.
1235
    * Language detection based on parts of the URL.
1236
    * Browser based language detection.
1237
    * Made it possible to specify a node's language.
1238
    * Support for translating posts on the site to different languages.
1239
    * Language dependent path aliases.
1240
    * Automatically import translations when adding a new language.
1241
    * JavaScript interface translation.
1242
    * Automatically import a module's translation upon enabling that module.
1243
- Moved "PHP input filter" to a standalone module so it can be deleted for
1244
  security reasons.
1245
- Usability:
1246
    * Improved handling of teasers in posts.
1247
    * Added sticky table headers.
1248
    * Check for clean URL support automatically with JavaScript.
1249
    * Removed default/settings.php. Instead the installer will create it from
1250
      default.settings.php.
1251
    * Made it possible to configure your own date formats.
1252
    * Remember anonymous comment posters.
1253
    * Only allow modules and themes to be enabled that have explicitly been
1254
      ported to the correct core API version.
1255
    * Can now specify the minimum PHP version required for a module within the
1256
      .info file.
1257
    * Drupal core no longer requires CREATE TEMPORARY TABLES or LOCK TABLES
1258
      database rights.
1259
    * Dynamically check password strength and confirmation.
1260
    * Refactored poll administration.
1261
    * Implemented drag-and-drop positioning for blocks, menu items, taxonomy
1262
      vocabularies and terms, forums, profile fields, and input format filters.
1263
- Theme system:
1264
    * Added .info files to themes and made it easier to specify regions and
1265
      features.
1266
    * Added theme registry: modules can directly provide .tpl.php files for
1267
      their themes without having to create theme_ functions.
1268
    * Used the Garland theme for the installation and maintenance pages.
1269
    * Added theme preprocess functions for themes that are templates.
1270
    * Added support for themeable functions in JavaScript.
1271
- Refactored update.php to a generic batch API to be able to run time-consuming
1272
  operations in multiple subsequent HTTP requests.
1273
- Installer:
1274
    * Themed the installer with the Garland theme.
1275
    * Added form to provide initial site information during installation.
1276
    * Added ability to provide extra installation steps programmatically.
1277
    * Made it possible to import interface translations during installation.
1278
- Added the HTML corrector filter:
1279
    * Fixes faulty and chopped off HTML in postings.
1280
    * Tags are now automatically closed at the end of the teaser.
1281
- Performance:
1282
    * Made it easier to conditionally load .include files and split up many core
1283
      modules.
1284
    * Added a JavaScript aggregator.
1285
    * Added block-level caching, improving performance for both authenticated
1286
      and anonymous users.
1287
    * Made Drupal work correctly when running behind a reverse proxy like
1288
      Squid or Pound.
1289
- File handling improvements:
1290
    * Entries in the files table are now keyed to a user instead of a node.
1291
    * Added reusable validation functions to check for uploaded file sizes,
1292
      extensions, and image resolution.
1293
    * Added ability to create and remove temporary files during a cron job.
1294
- Forum improvements:
1295
    * Any node type may now be posted in a forum.
1296
- Taxonomy improvements:
1297
    * Descriptions for terms are now shown on taxonomy/term pages as well
1298
      as RSS feeds.
1299
    * Added versioning support to categories by associating them with node
1300
      revisions.
1301
- Added support for OpenID.
1302
- Added support for triggering configurable actions.
1303
- Added the Update status module to automatically check for available updates
1304
  and warn sites if they are missing security updates or newer versions.
1305
  Sites deploying from CVS should use http://drupal.org/project/cvs_deploy.
1306
  Advanced settings provided by http://drupal.org/project/update_advanced.
1307
- Upgraded the core JavaScript library to jQuery version 1.2.3.
1308
- Added a new Schema API, which provides built-in support for core and
1309
  contributed modules to work with databases other than MySQL.
1310
- Removed drupal.module. The functionality lives on as the Site network
1311
  contributed module (http://drupal.org/project/site_network).
1312
- Removed old system updates. Updates from Drupal versions prior to 5.x will
1313
  require upgrading to 5.x before upgrading to 6.x.
1314

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
1404
Drupal 5.7, 2008-01-28
1405
----------------------
1406
- fixed the input format configuration page.
1407
- fixed a variety of small bugs.
1408

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

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

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

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

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

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

    
1447
Drupal 5.0, 2007-01-15
1448
----------------------
1449
- Completely retooled the administration page
1450
    * /Admin now contains an administration page which may be themed
1451
    * Reorganised administration menu items by task and by module
1452
    * Added a status report page with detailed PHP/MySQL/Drupal information
1453
- Added web-based installer which can:
1454
    * Check installation and run-time requirements
1455
    * Automatically generate the database configuration file
1456
    * Install pre-made installation profiles or distributions
1457
    * Import the database structure with automatic table prefixing
1458
    * Be localized
1459
- Added new default Garland theme
1460
- Added color module to change some themes' color schemes
1461
- Included the jQuery JavaScript library 1.0.4 and converted all core JavaScript to use it
1462
- Introduced the ability to alter mail sent from system
1463
- Module system:
1464
    * Added .info files for module meta-data
1465
    * Added support for module dependencies
1466
    * Improved module installation screen
1467
    * Moved core modules to their own directories
1468
    * Added support for module uninstalling
1469
- Added support for different cache backends
1470
- Added support for a generic "sites/all" directory.
1471
- Usability:
1472
    * Added support for auto-complete forms (AJAX) to user profiles.
1473
    * Made it possible to instantly assign roles to newly created user accounts.
1474
    * Improved configurability of the contact forms.
1475
    * Reorganized the settings pages.
1476
    * Made it easy to investigate popular search terms.
1477
    * Added a 'select all' checkbox and a range select feature to administration tables.
1478
    * Simplified the 'break' tag to split teasers from body.
1479
    * Use proper capitalization for titles, menu items and operations.
1480
- Integrated urlfilter.module into filter.module
1481
- Block system:
1482
    * Extended the block visibility settings with a role specific setting.
1483
    * Made it possible to customize all block titles.
1484
- Poll module:
1485
    * Optionally allow people to inspect all votes.
1486
    * Optionally allow people to cancel their vote.
1487
- Distributed authentication:
1488
    * Added default server option.
1489
- Added default robots.txt to control crawlers.
1490
- Database API:
1491
    * Added db_table_exists().
1492
- Blogapi module:
1493
    * 'Blogapi new' and 'blogapi edit' nodeapi operations.
1494
- User module:
1495
    * Added hook_profile_alter().
1496
    * E-mail verification is made optional.
1497
    * Added mass editing and filtering on admin/user/user.
1498
- PHP Template engine:
1499
    * Add the ability to look for a series of suggested templates.
1500
    * Look for page templates based upon the path.
1501
    * Look for block templates based upon the region, module, and delta.
1502
- Content system:
1503
    * Made it easier for node access modules to work well with each other.
1504
    * Added configurable content types.
1505
    * Changed node rendering to work with structured arrays.
1506
- Performance:
1507
    * Improved session handling: reduces database overhead.
1508
    * Improved access checking: reduces database overhead.
1509
    * Made it possible to do memcached based session management.
1510
    * Omit sidebars when serving a '404 - Page not found': saves CPU cycles and bandwidth.
1511
    * Added an 'aggressive' caching policy.
1512
    * Added a CSS aggregator and compressor (up to 40% faster page loads).
1513
- Removed the archive module.
1514
- Upgrade system:
1515
    * Created space for update branches.
1516
- Form API:
1517
    * Made it possible to programmatically submit forms.
1518
    * Improved api for multistep forms.
1519
- Theme system:
1520
    * Split up and removed drupal.css.
1521
    * Added nested lists generation.
1522
    * Added a self-clearing block class.
1523

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

    
1530
Drupal 4.7.10, 2007-12-06
1531
-------------------------
1532
- fixed taxonomy feed bug introduced by SA-2007-031
1533

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

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

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

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

    
1552
Drupal 4.7.5, 2007-01-05
1553
------------------------
1554
- Fixed security issue (XSS), see SA-2007-001
1555
- Fixed security issue (DoS), see SA-2007-002
1556

    
1557
Drupal 4.7.4, 2006-10-18
1558
------------------------
1559
- Fixed security issue (XSS), see SA-2006-024
1560
- Fixed security issue (CSRF), see SA-2006-025
1561
- Fixed security issue (Form action attribute injection), see SA-2006-026
1562

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

    
1567
Drupal 4.7.2, 2006-06-01
1568
------------------------
1569
- Fixed critical upload issue, see SA-2006-007
1570
- Fixed taxonomy XSS issue, see SA-2006-008
1571
- Fixed a variety of small bugs.
1572

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

    
1579
Drupal 4.7.0, 2006-05-01
1580
------------------------
1581
- Added free tagging support.
1582
- Added a site-wide contact form.
1583
- Theme system:
1584
    * Added the PHPTemplate theme engine and removed the Xtemplate engine.
1585
    * Converted the bluemarine theme from XTemplate to PHPTemplate.
1586
    * Converted the pushbutton theme from XTemplate to PHPTemplate.
1587
- Usability:
1588
    * Reworked the 'request new password' functionality.
1589
    * Reworked the node and comment edit forms.
1590
    * Made it easy to add nodes to the navigation menu.
1591
    * Added site 'offline for maintenance' feature.
1592
    * Added support for auto-complete forms (AJAX).
1593
    * Added support for collapsible page sections (JS).
1594
    * Added support for resizable text fields (JS).
1595
    * Improved file upload functionality (AJAX).
1596
    * Reorganized some settings pages.
1597
    * Added friendly database error screens.
1598
    * Improved styling of update.php.
1599
- Refactored the forms API.
1600
    * Made it possible to alter, extend or theme forms.
1601
- Comment system:
1602
    * Added support for "mass comment operations" to ease repetitive tasks.
1603
    * Comment moderation has been removed.
1604
- Node system:
1605
    * Reworked the revision functionality.
1606
    * Removed the bookmarklet code. Third-party modules can now handle
1607
      This.
1608
- Upgrade system:
1609
    * Allows contributed modules to plug into the upgrade system.
1610
- Profiles:
1611
    * Added a block to display author information along with posts.
1612
    * Added support for private profile fields.
1613
- Statistics module:
1614
    * Added the ability to track page generation times.
1615
    * Made it possible to block certain IPs/hostnames.
1616
- Block system:
1617
    * Added support for theme-specific block regions.
1618
- Syndication:
1619
    * Made the aggregator module parse Atom feeds.
1620
    * Made the aggregator generate RSS feeds.
1621
    * Added RSS feed settings.
1622
- XML-RPC:
1623
    * Replaced the XML-RPC library by a better one.
1624
- Performance:
1625
    * Added 'loose caching' option for high-traffic sites.
1626
    * Improved performance of path aliasing.
1627
    * Added the ability to track page generation times.
1628
- Internationalization:
1629
    * Improved Unicode string handling API.
1630
    * Added support for PHP's multibyte string module.
1631
- Added support for PHP5's 'mysqli' extension.
1632
- Search module:
1633
    * Made indexer smarter and more robust.
1634
    * Added advanced search operators (e.g. phrase, node type, ...).
1635
    * Added customizable result ranking.
1636
- PostgreSQL support:
1637
    * Removed dependency on PL/pgSQL procedural language.
1638
- Menu system:
1639
    * Added support for external URLs.
1640
- Queue module:
1641
    * Removed from core.
1642
- HTTP handling:
1643
    * Added support for a tolerant Base URL.
1644
    * Output URIs relative to the root, without a base tag.
1645

    
1646
Drupal 4.6.11, 2007-01-05
1647
-------------------------
1648
- Fixed security issue (XSS), see SA-2007-001
1649
- Fixed security issue (DoS), see SA-2007-002
1650

    
1651
Drupal 4.6.10, 2006-10-18
1652
-------------------------
1653
- Fixed security issue (XSS), see SA-2006-024
1654
- Fixed security issue (CSRF), see SA-2006-025
1655
- Fixed security issue (Form action attribute injection), see SA-2006-026
1656

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

    
1661
Drupal 4.6.8, 2006-06-01
1662
------------------------
1663
- Fixed critical upload issue, see SA-2006-007
1664
- Fixed taxonomy XSS issue, see SA-2006-008
1665

    
1666
Drupal 4.6.7, 2006-05-24
1667
------------------------
1668
- Fixed critical SQL issue, see SA-2006-005
1669

    
1670
Drupal 4.6.6, 2006-03-13
1671
------------------------
1672
- Fixed bugs, including 4 security vulnerabilities.
1673

    
1674
Drupal 4.6.5, 2005-12-12
1675
------------------------
1676
- Fixed bugs: no critical bugs were identified.
1677

    
1678
Drupal 4.6.4, 2005-11-30
1679
------------------------
1680
- Fixed bugs, including 3 security vulnerabilities.
1681

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

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

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

    
1694
Drupal 4.6.0, 2005-04-15
1695
------------------------
1696
- PHP5 compliance
1697
- Search:
1698
    * Added UTF-8 support to make it work with all languages.
1699
    * Improved search indexing algorithm.
1700
    * Improved search output.
1701
    * Impose a throttle on indexing of large sites.
1702
    * Added search block.
1703
- Syndication:
1704
    * Made the ping module ping pingomatic.com which, in turn, will ping all the major ping services.
1705
    * Made Drupal generate RSS 2.0 feeds.
1706
    * Made RSS feeds extensible.
1707
    * Added categories to RSS feeds.
1708
    * Added enclosures to RSS feeds.
1709
- Flood control mechanism:
1710
    * Added a mechanism to throttle certain operations.
1711
- Usability:
1712
    * Refactored the block configuration pages.
1713
    * Refactored the statistics pages.
1714
    * Refactored the watchdog pages.
1715
    * Refactored the throttle module configuration.
1716
    * Refactored the access rules page.
1717
    * Refactored the content administration page.
1718
    * Introduced forum configuration pages.
1719
    * Added a 'add child page' link to book pages.
1720
- Contact module:
1721
    * Added a simple contact module that allows users to contact each other using e-mail.
1722
- Multi-site configuration:
1723
    * Made it possible to run multiple sites from a single code base.
1724
- Added an image API: enables better image handling.
1725
- Block system:
1726
    * Extended the block visibility settings.
1727
- Theme system:
1728
    * Added new theme functions.
1729
- Database backend:
1730
    * The PEAR database backend is no longer supported.
1731
- Performance:
1732
    * Improved performance of the forum topics block.
1733
    * Improved performance of the tracker module.
1734
    * Improved performance of the node pages.
1735
- Documentation:
1736
    * Improved and extended PHPDoc/Doxygen comments.
1737

    
1738
Drupal 4.5.8, 2006-03-13
1739
------------------------
1740
- Fixed bugs, including 3 security vulnerabilities.
1741

    
1742
Drupal 4.5.7, 2005-12-12
1743
------------------------
1744
- Fixed bugs: no critical bugs were identified.
1745

    
1746
Drupal 4.5.6, 2005-11-30
1747
------------------------
1748
- Fixed bugs, including 3 security vulnerabilities.
1749

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

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

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

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

    
1766
Drupal 4.5.1, 2004-12-01
1767
------------------------
1768
- Fixed bugs: no critical bugs were identified.
1769

    
1770
Drupal 4.5.0, 2004-10-18
1771
------------------------
1772
- Navigation:
1773
    * Made it possible to add, delete, rename and move menu items.
1774
    * Introduced tabs and subtabs for local tasks.
1775
    * Reorganized the navigation menus.
1776
- User management:
1777
    * Added support for multiple roles per user.
1778
    * Made it possible to add custom profile fields.
1779
    * Made it possible to browse user profiles by field.
1780
- Node system:
1781
    * Added support for node-level permissions.
1782
- Comment module:
1783
    * Made it possible to leave contact information without having to register.
1784
- Upload module:
1785
    * Added support for uploading documents (includes images).
1786
- Forum module:
1787
    * Added support for sticky forum topics.
1788
    * Made it possible to track forum topics.
1789
- Syndication:
1790
    * Added support for RSS ping-notifications of http://technorati.com/.
1791
    * Refactored the categorization of syndicated news items.
1792
    * Added an URL alias for 'rss.xml'.
1793
    * Improved date parsing.
1794
- Database backend:
1795
    * Added support for multiple database connections.
1796
    * The PostgreSQL backend does no longer require PEAR.
1797
- Theme system:
1798
    * Changed all GIFs to PNGs.
1799
    * Reorganised the handling of themes, template engines, templates and styles.
1800
    * Unified and extended the available theme settings.
1801
    * Added theme screenshots.
1802
- Blocks:
1803
    * Added 'recent comments' block.
1804
    * Added 'categories' block.
1805
- Blogger API:
1806
    * Added support for auto-discovery of blogger API via RSD.
1807
- Performance:
1808
    * Added support for sending gzip compressed pages.
1809
    * Improved performance of the forum module.
1810
- Accessibility:
1811
    * Improved the accessibility of the archive module's calendar.
1812
    * Improved form handling and error reporting.
1813
    * Added HTTP redirects to prevent submitting twice when refreshing right after a form submission.
1814
- Refactored 403 (forbidden) handling and added support for custom 403 pages.
1815
- Documentation:
1816
    * Added PHPDoc/Doxygen comments.
1817
- Filter system:
1818
    * Added support for using multiple input formats on the site
1819
    * Expanded the embedded PHP-code feature so it can be used everywhere
1820
    * Added support for role-dependent filtering, through input formats
1821
- UI translation:
1822
    * Managing translations is now completely done through the administration interface
1823
    * Added support for importing/exporting gettext .po files
1824

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

    
1829
Drupal 4.4.2, 2004-07-04
1830
------------------------
1831
- Fixed bugs: no critical bugs were identified.
1832

    
1833
Drupal 4.4.1, 2004-05-01
1834
------------------------
1835
- Fixed bugs: no critical bugs were identified.
1836

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

    
1877
Drupal 4.3.2, 2004-01-01
1878
------------------------
1879
- Fixed bugs: no critical bugs were identified.
1880

    
1881
Drupal 4.3.1, 2003-12-01
1882
------------------------
1883
- Fixed bugs: no critical bugs were identified.
1884

    
1885
Drupal 4.3.0, 2003-11-01
1886
------------------------
1887
- Added support for configurable URLs.
1888
- Added support for sortable table columns.
1889
- Database backend:
1890
    * Added support for selective database table prefixing.
1891
- Performance:
1892
    * Optimized many SQL queries for speed by converting left joins to inner joins.
1893
- Comment module:
1894
    * Rewrote the comment housekeeping code to be much more efficient and scalable.
1895
    * Changed the comment module to use the standard pager.
1896
- User module:
1897
    * Added support for multiple sessions per user.
1898
    * Added support for anonymous user sessions.
1899
- Forum module:
1900
    * Improved the forum views and the themability thereof.
1901
- Book module:
1902
    * Improved integration of non-book nodes in the book outline.
1903
- Usability:
1904
    * Added support for "mass node operations" to ease repetitive tasks.
1905
    * Added support for breadcrumb navigation to several modules' user pages.
1906
    * Integrated the administration pages with the normal user pages.
1907

    
1908
Drupal 4.2.0, 2003-08-01
1909
------------------------
1910
- Added support for clean URLs.
1911
- Added textarea hook and support for onload attributes: enables integration of WYSIWYG editors.
1912
- Rewrote the RSS/RDF parser:
1913
    * It will now use PHP's built-in XML parser to parse news feeds.
1914
- Rewrote the administration pages:
1915
    * Improved the navigational elements and added breadcrumb navigation.
1916
    * Improved the look and feel.
1917
    * Added context-sensitive help.
1918
- Database backend:
1919
    * Fixed numerous SQL queries to make Drupal ANSI compliant.
1920
    * Added MSSQL database scheme.
1921
- Search module:
1922
    * Changed the search module to use implicit AND'ing instead of implicit OR'ing.
1923
- Node system:
1924
    * Replaced the "post content" permission by more fine-grained permissions.
1925
    * Improved content submission:
1926
        + 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.
1927
        + Added the ability to preview both the short and the full version of your posts.
1928
    * Extended the node API which allows for better integration.
1929
    * Added default node settings to control the behavior for promotion, moderation and other options.
1930
- Themes:
1931
    * Replaced theme "Goofy" by "Xtemplate", a template driven theme.
1932
- Removed the 'register_globals = on' requirement.
1933
- Added better installation instructions.
1934

    
1935
Drupal 4.1.0, 2003-02-01
1936
------------------------
1937
- Collaboratively revised and expanded the Drupal documentation.
1938
- Rewrote comment.module:
1939
    * Reintroduced comment rating/moderation.
1940
    * Added support for comment paging.
1941
    * Performance improvements: improved comment caching, faster SQL queries, etc.
1942
- Rewrote block.module:
1943
    * Performance improvements: blocks are no longer rendered when not displayed.
1944
- Rewrote forum.module:
1945
    * 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.
1946
- Rewrote statistics.module:
1947
    * Collects access counts for each node, referrer logs, number of users/guests.
1948
    * 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.
1949
- Added throttle.module:
1950
    * Auto-throttle congestion control mechanism: Drupal can adapt itself based on the server load.
1951
- Added profile.module:
1952
    * Enables to extend the user and registration page.
1953
- Added pager support to the main page.
1954
- Replaced weblogs.module by ping.module:
1955
    * Added support for normal and RSS notifications of http://blo.gs/.
1956
    * Added support for RSS ping-notifications of http://weblogs.com/.
1957
- Removed the rating module
1958
- Themes:
1959
    * Removed a significant portion of hard-coded mark-up.
1960

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

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

    
2020
Drupal 3.0.0, 2001-09-15
2021
------------------------
2022
- Major overhaul of the entire underlying design:
2023
    * 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.
2024
- Rewrote submission/moderation queue and renamed it to queue.module.
2025
- Removed FAQ and documentation module and merged them into a "book module".
2026
- Removed ban module and integrated it into account.module as "access control":
2027
    * Access control is based on much more powerful regular expressions (regex) now rather than on MySQL pattern matching.
2028
- Rewrote watchdog and submission throttle:
2029
    * Improved watchdog messages and added watchdog filter.
2030
- Rewrote headline code and renamed it to import.module and export.module:
2031
    * Added various improvements, including a better parser, bundles and better control over individual feeds.
2032
- Rewrote section code and renamed it to meta.module:
2033
    * Supports unlimited amount of nested topics. Topics can be nested to create a multi-level hierarchy.
2034
- Rewrote configuration file resolving:
2035
    * 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.
2036
- Added caching support which makes Drupal extremely scalable.
2037
- Added access.module:
2038
    * Allows you to set up 'roles' (groups) and to bind a set of permissions to each group.
2039
- Added blog.module.
2040
- Added poll.module.
2041
- Added system.module:
2042
    * Moved most of the configuration options from hostname.conf to the new administration section.
2043
    * Added support for custom "filters".
2044
- Added statistics.module
2045
- Added moderate.module:
2046
    * Allows to assign users editorial/moderator rights to certain nodes or topics.
2047
- Added page.module:
2048
    * Allows creation of static (and dynamic) pages through the administration interface.
2049
- Added help.module:
2050
    * Groups all available module documentation on a single page.
2051
- Added forum.module:
2052
    * Added an integrated forum.
2053
- Added cvs.module and cvs-to-sql.pl:
2054
    * Allows to display and mail CVS log messages as daily digests.
2055
- Added book.module:
2056
    * Allows collaborative handbook writing: primary used for Drupal documentation.
2057
- Removed cron.module and integrated it into conf.module.
2058
- Removed module.module as it was no longer needed.
2059
- Various updates:
2060
    * Added "auto-post new submissions" feature versus "moderate new submissions".
2061
    * Introduced links/Drupal tags: [[link]]
2062
    * Added preview functionality when submitting new content (such as a story) from the administration pages.
2063
    * Made the administration section only show those links a user has access to.
2064
    * Made all modules use specific form_* functions to guarantee a rock-solid forms and more consistent layout.
2065
    * Improved scheduler:
2066
        + Content can be scheduled to be 'posted', 'queued' and 'hidden'.
2067
    * Improved account module:
2068
        + Added "access control" to allow/deny certain usernames/e-mail addresses/hostnames.
2069
    * Improved locale module:
2070
        + Added new overview to easy the translation process.
2071
    * Improved comment module:
2072
        + Made it possible to permanently delete comments.
2073
    * Improved rating module
2074
    * Improved story module:
2075
        + Added preview functionality for administrators.
2076
        + Made it possible to permanently delete stories.
2077
    * Improved themes:
2078
        + W3C validation on a best effort basis.
2079
        + Removed $theme->control() from themes.
2080
        + Added theme "goofy".
2081
- Collaboratively revised and expanded the Drupal documentation.
2082

    
2083
Drupal 2.0.0, 2001-03-15
2084
------------------------
2085
- Rewrote the comment/discussion code:
2086
    * Comment navigation should be less confusing now.
2087
    * Additional/alternative display and order methods have been added.
2088
    * Modules can be extended with a "comment system": modules can embed the existing comment system without having to write their own, duplicate comment system.
2089
- Added sections and section manager:
2090
    * Story sections can be maintained from the administration pages.
2091
    * 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.
2092
- Multiple vhosts + multiple directories:
2093
    * You can set up multiple Drupal sites on top of the same physical source tree either by using vhosts or sub-directories.
2094
- Added "user ratings" similar to SlashCode's Karma or Scoop's Mojo:
2095
    * All rating logic is packed into a module to ease experimenting with different rating heuristics/algorithms.
2096
- Added "search infrastructure":
2097
    * Improved search page and integrated search functionality in the administration pages.
2098
- Added translation / localization / internationalization support:
2099
    * 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.
2100
- Added fine-grained user permission (or group) system:
2101
    * 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.
2102
- Added FAQ module
2103
- Changed the "open submission queue" into a (optional) module.
2104
- Various updates:
2105
    * Improved account module:
2106
        + User accounts can be deleted.
2107
        + Added fine-grained permission support.
2108
    * Improved block module
2109
    * Improved diary module:
2110
        + Diary entries can be deleted
2111
    * Improved headline module:
2112
        + Improved parser to support more "generic" RDF/RSS/XML backend.
2113
    * Improved module module
2114
    * Improved watchdog module
2115
    * Improved database abstraction layer
2116
    * Improved themes:
2117
        + W3C validation on a best effort basis
2118
        + Added theme "example" (alias "Stone Age")
2119
    * Added new scripts to directory "scripts"
2120
    * Added directory "misc"
2121
    * Added CREDITS file
2122
- Revised documentation
2123

    
2124
Drupal 1.0.0, 2001-01-15
2125
------------------------
2126
- Initial release