Projet

Général

Profil

Paste
Télécharger (99,9 ko) Statistiques
| Branche: | Révision:

root / drupal7 / CHANGELOG.txt @ 582db59d

1

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
779
Drupal 7.7, 2011-07-27
780
----------------------
781
- Fixed VERSION string.
782

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

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

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

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

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

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

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

    
1056
Drupal 6.23-dev, xxxx-xx-xx (development release)
1057
---------------------------
1058

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
1400
Drupal 5.7, 2008-01-28
1401
----------------------
1402
- fixed the input format configuration page.
1403
- fixed a variety of small bugs.
1404

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

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

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

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

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

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

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

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

    
1526
Drupal 4.7.10, 2007-12-06
1527
-------------------------
1528
- fixed taxonomy feed bug introduced by SA-2007-031
1529

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

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

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

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

    
1548
Drupal 4.7.5, 2007-01-05
1549
------------------------
1550
- Fixed security issue (XSS), see SA-2007-001
1551
- Fixed security issue (DoS), see SA-2007-002
1552

    
1553
Drupal 4.7.4, 2006-10-18
1554
------------------------
1555
- Fixed security issue (XSS), see SA-2006-024
1556
- Fixed security issue (CSRF), see SA-2006-025
1557
- Fixed security issue (Form action attribute injection), see SA-2006-026
1558

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

    
1563
Drupal 4.7.2, 2006-06-01
1564
------------------------
1565
- Fixed critical upload issue, see SA-2006-007
1566
- Fixed taxonomy XSS issue, see SA-2006-008
1567
- Fixed a variety of small bugs.
1568

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

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

    
1642
Drupal 4.6.11, 2007-01-05
1643
-------------------------
1644
- Fixed security issue (XSS), see SA-2007-001
1645
- Fixed security issue (DoS), see SA-2007-002
1646

    
1647
Drupal 4.6.10, 2006-10-18
1648
-------------------------
1649
- Fixed security issue (XSS), see SA-2006-024
1650
- Fixed security issue (CSRF), see SA-2006-025
1651
- Fixed security issue (Form action attribute injection), see SA-2006-026
1652

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

    
1657
Drupal 4.6.8, 2006-06-01
1658
------------------------
1659
- Fixed critical upload issue, see SA-2006-007
1660
- Fixed taxonomy XSS issue, see SA-2006-008
1661

    
1662
Drupal 4.6.7, 2006-05-24
1663
------------------------
1664
- Fixed critical SQL issue, see SA-2006-005
1665

    
1666
Drupal 4.6.6, 2006-03-13
1667
------------------------
1668
- Fixed bugs, including 4 security vulnerabilities.
1669

    
1670
Drupal 4.6.5, 2005-12-12
1671
------------------------
1672
- Fixed bugs: no critical bugs were identified.
1673

    
1674
Drupal 4.6.4, 2005-11-30
1675
------------------------
1676
- Fixed bugs, including 3 security vulnerabilities.
1677

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

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

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

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

    
1734
Drupal 4.5.8, 2006-03-13
1735
------------------------
1736
- Fixed bugs, including 3 security vulnerabilities.
1737

    
1738
Drupal 4.5.7, 2005-12-12
1739
------------------------
1740
- Fixed bugs: no critical bugs were identified.
1741

    
1742
Drupal 4.5.6, 2005-11-30
1743
------------------------
1744
- Fixed bugs, including 3 security vulnerabilities.
1745

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

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

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

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

    
1762
Drupal 4.5.1, 2004-12-01
1763
------------------------
1764
- Fixed bugs: no critical bugs were identified.
1765

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

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

    
1825
Drupal 4.4.2, 2004-07-04
1826
------------------------
1827
- Fixed bugs: no critical bugs were identified.
1828

    
1829
Drupal 4.4.1, 2004-05-01
1830
------------------------
1831
- Fixed bugs: no critical bugs were identified.
1832

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

    
1873
Drupal 4.3.2, 2004-01-01
1874
------------------------
1875
- Fixed bugs: no critical bugs were identified.
1876

    
1877
Drupal 4.3.1, 2003-12-01
1878
------------------------
1879
- Fixed bugs: no critical bugs were identified.
1880

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

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

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

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

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

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

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

    
2120
Drupal 1.0.0, 2001-01-15
2121
------------------------
2122
- Initial release