Projet

Général

Profil

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

root / drupal7 / CHANGELOG.txt @ 30d5b9c5

1

    
2
Drupal 7.42, 2016-02-03
3
-----------------------
4
- Stopped invoking hook_flush_caches() on every cron run, since some modules
5
  use that hook for expensive operations that are only needed on cache clears.
6
- Changed the default .htaccess and web.config to block Composer-related files.
7
- Added static caching to module_load_include() to improve performance.
8
- Fixed double-encoding bugs in select field widgets provided by the Options
9
  module. The fix deprecates the 'strip_tags' property on option widgets and
10
  replaces it with a new 'strip_tags_and_unescape' property (minor data
11
  structure change).
12
- Improved MySQL 5.7 support by changing the MySQL database driver to stop
13
  using the ANSI SQL mode alias, which has different meanings for different
14
  MySQL versions.
15
- Fixed a regression introduced in Drupal 7.39 which prevented autocomplete
16
  functionality from working on servers that are not configured to
17
  automatically recognize index.php.
18
- Updated the Archive_Tar PEAR package to the latest 1.4.0 release, to fix bugs
19
  with tar file handling on various operating systems.
20
- Fixed fatal errors on node preview when a field is displayed in the node
21
  teaser but hidden in the full node view. The fix removes a
22
  field_attach_prepare_view() call from the node_preview() function since it is
23
  redundant with one in the node preview theme layer.
24
- Improved the description of the "Trimmed" format option on text fields
25
  (translatable string change, and minor UI and data structure change).
26
- Numerous small bug fixes.
27
- Numerous API documentation improvements.
28
- Additional automated test coverage.
29

    
30
Drupal 7.41, 2015-10-21
31
-----------------------
32
- Fixed security issues (open redirect). See SA-CORE-2015-004.
33

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

    
95
Drupal 7.39, 2015-08-19
96
-----------------------
97
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-003.
98

    
99
Drupal 7.38, 2015-06-17
100
-----------------------
101
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-002.
102

    
103
Drupal 7.37, 2015-05-07
104
-----------------------
105
- Fixed a regression in Drupal 7.36 which caused certain kinds of content types
106
  to become disabled if they were defined by a no-longer-enabled module.
107
- Removed a confusing description regarding automatic time zone detection from
108
  the user account form (minor UI and data structure change).
109
- Allowed custom HTML tags with a dash in the name to pass through filter_xss()
110
  when specified in the list of allowed tags.
111
- Allowed hook_field_schema() implementations to specify indexes for fields
112
  based on a fixed-length column prefix (rather than the entire column), as was
113
  already allowed in hook_schema() implementations.
114
- Fixed PDO exceptions on PostgreSQL when accessing invalid entity URLs.
115
- Added a sites/all/libraries folder to the codebase, with instructions for
116
  using it.
117
- Added a description to the "Administer text formats and filters" permission
118
  on the Permissions page (string change).
119
- Numerous small bug fixes.
120
- Numerous API documentation improvements.
121
- Additional automated test coverage.
122

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

    
181
Drupal 7.35, 2015-03-18
182
-----------------------
183
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-001.
184

    
185
Drupal 7.34, 2014-11-19
186
-----------------------
187
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-006.
188

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

    
254
Drupal 7.32, 2014-10-15
255
-----------------------
256
- Fixed security issues (SQL injection). See SA-CORE-2014-005.
257

    
258
Drupal 7.31, 2014-08-06
259
-----------------------
260
- Fixed security issues (denial of service). See SA-CORE-2014-004.
261

    
262
Drupal 7.30, 2014-07-24
263
-----------------------
264
- Fixed a regression introduced in Drupal 7.29 that caused files or images
265
  attached to taxonomy terms to be deleted when the taxonomy term was edited
266
  and resaved (and other related bugs with contributed and custom modules).
267
- Added a warning on the permissions page to recommend restricting access to
268
  the "View site reports" permission to trusted administrators. See
269
  DRUPAL-PSA-2014-002.
270
- Numerous API documentation improvements.
271
- Additional automated test coverage.
272

    
273
Drupal 7.29, 2014-07-16
274
-----------------------
275
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-003.
276

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

    
319
Drupal 7.27, 2014-04-16
320
-----------------------
321
- Fixed security issues (information disclosure). See SA-CORE-2014-002.
322

    
323
Drupal 7.26, 2014-01-15
324
-----------------------
325
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-001.
326

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

    
389
Drupal 7.24, 2013-11-20
390
-----------------------
391
- Fixed security issues (multiple vulnerabilities), see SA-CORE-2013-003.
392

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

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

    
508
Drupal 7.21, 2013-03-06
509
-----------------------
510
- Allowed sites using the 'image_allow_insecure_derivatives' variable to still
511
  have partial protection from the security issues fixed in Drupal 7.20.
512

    
513
Drupal 7.20, 2013-02-20
514
-----------------------
515
- Fixed security issues (denial of service). See SA-CORE-2013-002.
516

    
517
Drupal 7.19, 2013-01-16
518
-----------------------
519
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2013-001.
520

    
521
Drupal 7.18, 2012-12-19
522
-----------------------
523
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2012-004.
524

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

    
588
Drupal 7.16, 2012-10-17
589
-----------------------
590
- Fixed security issues (Arbitrary PHP code execution and information
591
  disclosure). See SA-CORE-2012-003.
592

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

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

    
693
Drupal 7.13, 2012-05-02
694
-----------------------
695
- Fixed security issues (Multiple vulnerabilities), see SA-CORE-2012-002.
696

    
697
Drupal 7.12, 2012-02-01
698
-----------------------
699
- Fixed bug preventing custom menus from receiving an active trail.
700
- Fixed hook_field_delete() no longer invoked during field_purge_data().
701
- Fixed bug causing entity info cache to not be cleared with the rest of caches.
702
- Fixed file_unmanaged_copy() fails with Drupal 7.7+ and safe_mode() or
703
  open_basedir().
704
- Fixed Nested transactions throw exceptions when they got out of scope.
705
- Fixed bugs with the Return-Path when sending mail on both Windows and
706
  non-Windows systems.
707
- Fixed bug with DrupalCacheArray property visibility preventing others from
708
  extending it (API change: http://drupal.org/node/1422264).
709
- Fixed bug with handling of non-ASCII characters in file names (API change:
710
  http://drupal.org/node/1424840).
711
- Reconciled field maximum length with database column size in image and
712
  aggregator modules.
713
- Fixes to various core JavaScript files to allow for minification and
714
  aggregation.
715
- Fixed Prevent tests from deleting main installation's tables when
716
  parent::setUp() is not called.
717
- Fixed several Poll module bugs.
718
- Fixed several Shortcut module bugs.
719
- Added new hook_system_theme_info() to provide ability for contributed modules
720
  to test theme functionality.
721
- Added ability to cancel mail sending from hook_mail_alter().
722
- Added support for configurable PDO connection options, enabling master-master
723
  database replication.
724
- Numerous improvements to tests and test runner to pave the way for faster test
725
  runs.
726
- Expanded test coverage.
727
- Numerous API documentation improvements.
728
- Numerous performance improvements, including token replacement and render
729
  cache.
730

    
731
Drupal 7.11, 2012-02-01
732
-----------------------
733
- Fixed security issues (Multiple vulnerabilities), see SA-CORE-2012-001.
734

    
735
Drupal 7.10, 2011-12-05
736
-----------------------
737
- Fixed Content-Language HTTP header to not cause issues with Drush 5.x.
738
- Reduce memory usage of theme registry (performance).
739
- Fixed PECL upload progress bar for FileField
740
- Fixed running update.php doesn't always clear the cache.
741
- Fixed PDO exceptions on long titles.
742
- Fixed Overlay redirect does not include query string.
743
- Fixed D6 modules satisfy D7 module dependencies.
744
- Fixed the ordering of module hooks when using module_implements_alter().
745
- Fixed "floating" submit buttons during AJAX requests.
746
- Fixed timezone selected on install not propogating to admin account.
747
- Added msgctx context to JS translation functions, for feature parity with t().
748
- Profiles' .install files now available during hook_install_tasks().
749
- Added test coverage of 7.0 -> 7.x upgrade path.
750
- Numerous notice fixes.
751
- Numerous documentation improvements.
752
- Additional automated test coverage.
753

    
754
Drupal 7.9, 2011-10-26
755
----------------------
756
- Critical fixes to OpenID to spec violations that could allow for
757
  impersonation in certain scenarios. Existing OpenID users should see
758
  http://drupal.org/node/1120290#comment-5092796 for more information on
759
  transitioning.
760
- Fixed files getting lost when adding multiple files to multiple file fields
761
  at the same time.
762
- Improved usability of the clean URL test screens.
763
- Restored height/width attributes on images run through the theme system.
764
- Fixed usability bug with first password field being pre-filled by certain
765
  browser plugins.
766
- Fixed file_usage_list() so that it can return more than one result.
767
- Fixed bug preventing preview of private images on node form.
768
- Fixed PDO error when inserting an aggregator title longer than 255 characters.
769
- Spelled out what TRADITIONAL means in MySQL sql_mode.
770
- Deprecated "!=" operator for DBTNG; should be "<>".
771
- Added two new API functions (menu_tree_set_path()/menu_tree_get_path()) were
772
  added in order to enable setting the active menu trail for dynamically
773
  generated menu paths.
774
- Added new "fast 404" capability in settings.php to bypass Drupal bootstrap
775
  when serving 404 pages for certain file types.
776
- Added format_string() function which can perform string munging ala the t()
777
  function without the overhead of the translation system.
778
- Numerous #states system fixes.
779
- Numerous EntityFieldQuery, DBTNG, and SQLite fixes.
780
- Numerous Shortcut module fixes.
781
- Numerous language system fixes.
782
- Numerous token fixes.
783
- Numerous CSS fixes.
784
- Numerous upgrade path fixes.
785
- Numerous minor string fixes.
786
- Numerous notice fixes.
787

    
788
Drupal 7.8, 2011-08-31
789
----------------------
790
- Fixed critical upgrade path issue with multilingual sites, leading to lost
791
  content.
792
- Numerous fixes to upgrade path, preventing fatal errors due to incorrect
793
  dependencies.
794
- Fixed issue with saving files on hosts with open_basedir restrictions.
795
- Fixed Update manger error when used with Overlay.
796
- Fixed RTL support in Seven administration theme and Overlay.
797
- Fixes to nested transaction support.
798
- Introduced performance pattern to reduce Drupal core's RAM usage.
799
- Added support for HTML 5 tags to filter_xss_admin().
800
- Added exception handling to cron.
801
- Added new hook hook_field_widget_form_alter() for contribtued modules.
802
- element_validate_*() functions now available to contrib.
803
- Added new maintainers for several subsystems.
804
- Numerous testing system improvements.
805
- Numerous markup and CSS fixes.
806
- Numerous poll module fixes.
807
- Numerous notice/warning fixes.
808
- Numerous documentation fixes.
809
- Numerous token fixes.
810

    
811
Drupal 7.7, 2011-07-27
812
----------------------
813
- Fixed VERSION string.
814

    
815
Drupal 7.6, 2011-07-27
816
----------------------
817
- Fixed support for remote streamwrappers.
818
- AJAX now binds to 'click' instead of 'mousedown'.
819
- 'Translatable' flag on fields created in UI now defaults to FALSE, to match those created via the API.
820
- Performance enhancement to permissions page on large numbers of permissions.
821
- More secure password generation.
822
- Fix for temporary directory on Windows servers.
823
- run-tests.sh now uses proc_open() instead of pcntl_fork() for better Windows support.
824
- Numerous upgrade path fixes.
825
- Numerous documentation fixes.
826
- Numerous notice fixes.
827
- Numerous fixes to improve PHP 5.4 support.
828
- Numerous RTL improvements.
829

    
830
Drupal 7.5, 2011-07-27
831
----------------------
832
- Fixed security issue (Access bypass), see SA-CORE-2011-003.
833

    
834
Drupal 7.4, 2011-06-29
835
----------------------
836
- Rolled back patch that caused fatal errors in CTools, Feeds, and other modules using the class registry.
837
- Fixed critical bug with saving default images.
838
- Fixed fatal errors when uninstalling some modules.
839
- Added workaround for MySQL transaction support breaking on DDL statments.
840
- Improved page caching with external caching systems.
841
- Fix to Batch API, which was terminating too early.
842
- Numerous upgrade path fixes.
843
- Performance fixes.
844
- Additional test coverage.
845
- Numerous documentation fixes.
846

    
847
Drupal 7.3, 2011-06-29
848
----------------------
849
- Fixed security issue (Access bypass), see SA-CORE-2011-002.
850

    
851
Drupal 7.2, 2011-05-25
852
----------------------
853
- Added a default .gitignore file.
854
- Improved PostgreSQL and SQLite support.
855
- Numerous critical performance improvements.
856
- Numerous critical fixes to the upgrade path.
857
- Numerous fixes to language and translation systems.
858
- Numerous fixes to AJAX and #states systems.
859
- Improvements to the locking system.
860
- Numerous documentation fixes.
861
- Numerous styling and theme system fixes.
862
- Numerous fixes for schema mis-matches between Drupal 6 and 7.
863
- Minor internal API clean-ups.
864

    
865
Drupal 7.1, 2011-05-25
866
----------------------
867
- Fixed security issues (Cross site scripting, File access bypass), see SA-CORE-2011-001.
868

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

    
1088
Drupal 6.23-dev, xxxx-xx-xx (development release)
1089
---------------------------
1090

    
1091
Drupal 6.22, 2011-05-25
1092
-----------------------
1093
- Made Drupal 6 work better with IIS and Internet Explorer.
1094
- Fixed .po file imports to work better with custom textgroups.
1095
- Improved code documentation at various places.
1096
- Fixed a variety of other bugs.
1097

    
1098
Drupal 6.21, 2011-05-25
1099
-----------------------
1100
- Fixed security issues (Cross site scripting), see SA-CORE-2011-001.
1101

    
1102
Drupal 6.20, 2010-12-15
1103
-----------------------
1104
- Fixed a variety of small bugs, improved code documentation.
1105

    
1106
Drupal 6.19, 2010-08-11
1107
-----------------------
1108
- Fixed a variety of small bugs, improved code documentation.
1109

    
1110
Drupal 6.18, 2010-08-11
1111
-----------------------
1112
- Fixed security issues (OpenID authentication bypass, File download access
1113
  bypass, Comment unpublishing bypass, Actions cross site scripting),
1114
  see SA-CORE-2010-002.
1115

    
1116
Drupal 6.17, 2010-06-02
1117
-----------------------
1118
- Improved PostgreSQL compatibility
1119
- Better PHP 5.3 and PHP 4 compatibility
1120
- Better browser compatibility of CSS and JS aggregation
1121
- Improved logging for login failures
1122
- Fixed an incompatibility with some contributed modules and the locking system
1123
- Fixed a variety of other bugs.
1124

    
1125
Drupal 6.16, 2010-03-03
1126
-----------------------
1127
- Fixed security issues (Installation cross site scripting, Open redirection,
1128
  Locale module cross site scripting, Blocked user session regeneration),
1129
  see SA-CORE-2010-001.
1130
- Better support for updated jQuery versions.
1131
- Reduced resource usage of update.module.
1132
- Fixed several issues relating to support of installation profiles and
1133
  distributions.
1134
- Added a locking framework to avoid data corruption on long operations.
1135
- Fixed a variety of other bugs.
1136

    
1137
Drupal 6.15, 2009-12-16
1138
-----------------------
1139
- Fixed security issues (Cross site scripting), see SA-CORE-2009-009.
1140
- Fixed a variety of other bugs.
1141

    
1142
Drupal 6.14, 2009-09-16
1143
-----------------------
1144
- Fixed security issues (OpenID association cross site request forgeries,
1145
  OpenID impersonation and File upload), see SA-CORE-2009-008.
1146
- Changed the system modules page to not run all cache rebuilds; use the
1147
  button on the performance settings page to achieve the same effect.
1148
- Added support for PHP 5.3.0 out of the box.
1149
- Fixed a variety of small bugs.
1150

    
1151
Drupal 6.13, 2009-07-01
1152
-----------------------
1153
- Fixed security issues (Cross site scripting, Input format access bypass and
1154
  Password leakage in URL), see SA-CORE-2009-007.
1155
- Fixed a variety of small bugs.
1156

    
1157
Drupal 6.12, 2009-05-13
1158
-----------------------
1159
- Fixed security issues (Cross site scripting), see SA-CORE-2009-006.
1160
- Fixed a variety of small bugs.
1161

    
1162
Drupal 6.11, 2009-04-29
1163
-----------------------
1164
- Fixed security issues (Cross site scripting and limited information
1165
  disclosure), see SA-CORE-2009-005
1166
- Fixed performance issues with the menu router cache, the update
1167
  status cache and improved cache invalidation
1168
- Fixed a variety of small bugs.
1169

    
1170
Drupal 6.10, 2009-02-25
1171
-----------------------
1172
- Fixed a security issue, (Local file inclusion on Windows),
1173
  see SA-CORE-2009-003
1174
- Fixed node_feed() so custom fields can show up in RSS feeds.
1175
- Improved PostgreSQL compatibility.
1176
- Fixed a variety of small bugs.
1177

    
1178
Drupal 6.9, 2009-01-14
1179
----------------------
1180
- Fixed security issues, (Access Bypass, Validation Bypass and Hardening
1181
  against SQL injection), see SA-CORE-2009-001
1182
- Made HTTP request checking more robust and informative.
1183
- Fixed HTTP_HOST checking to work again with HTTP 1.0 clients and
1184
  basic shell scripts.
1185
- Removed t() calls from all schema documentation. Suggested best practice
1186
  changed for contributed modules, see http://drupal.org/node/322731.
1187
- Fixed a variety of small bugs.
1188

    
1189
Drupal 6.8, 2008-12-11
1190
----------------------
1191
- Removed a previous change incompatible with PHP 5.1.x and lower.
1192

    
1193
Drupal 6.7, 2008-12-10
1194
----------------------
1195
- Fixed security issues, (Cross site request forgery and Cross site scripting), see SA-2008-073
1196
- Updated robots.txt and .htaccess to match current file use.
1197
- Fixed a variety of small bugs.
1198

    
1199
Drupal 6.6, 2008-10-22
1200
----------------------
1201
- Fixed security issues, (File inclusion, Cross site scripting), see SA-2008-067
1202
- Fixed a variety of small bugs.
1203

    
1204
Drupal 6.5, 2008-10-08
1205
----------------------
1206
- Fixed security issues, (File upload access bypass, Access rules bypass,
1207
  BlogAPI access bypass), see SA-2008-060.
1208
- Fixed a variety of small bugs.
1209

    
1210
Drupal 6.4, 2008-08-13
1211
----------------------
1212
- Fixed a security issue (Cross site scripting, Arbitrary file uploads via
1213
  BlogAPI, Cross site request forgeries and Various Upload module
1214
  vulnerabilities), see SA-2008-047.
1215
- Improved error messages during installation.
1216
- Fixed a bug that prevented AHAH handlers to be attached to radios widgets.
1217
- Fixed a variety of small bugs.
1218

    
1219
Drupal 6.3, 2008-07-09
1220
----------------------
1221
- Fixed security issues, (Cross site scripting, cross site request forgery,
1222
  session fixation and SQL injection), see SA-2008-044.
1223
- Slightly modified installation process to prevent file ownership issues on
1224
  shared hosts.
1225
- Improved PostgreSQL compatibility (rewritten queries; custom blocks).
1226
- Upgraded to jQuery 1.2.6.
1227
- Performance improvements to search, menu handling and form API caches.
1228
- Fixed Views compatibility issues (Views for Drupal 6 requires Drupal 6.3+).
1229
- Fixed a variety of small bugs.
1230

    
1231
Drupal 6.2, 2008-04-09
1232
----------------------
1233
- Fixed a variety of small bugs.
1234
- Fixed a security issue (Access bypasses), see SA-2008-026.
1235

    
1236
Drupal 6.1, 2008-02-27
1237
----------------------
1238
- Fixed a variety of small bugs.
1239
- Fixed a security issue (Cross site scripting), see SA-2008-018.
1240

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

    
1343
Drupal 5.23, 2010-08-11
1344
-----------------------
1345
- Fixed security issues (File download access bypass, Comment unpublishing
1346
  bypass), see SA-CORE-2010-002.
1347

    
1348
Drupal 5.22, 2010-03-03
1349
-----------------------
1350
- Fixed security issues (Open redirection, Locale module cross site scripting,
1351
  Blocked user session regeneration), see SA-CORE-2010-001.
1352

    
1353
Drupal 5.21, 2009-12-16
1354
-----------------------
1355
- Fixed a security issue (Cross site scripting), see SA-CORE-2009-009.
1356
- Fixed a variety of small bugs.
1357

    
1358
Drupal 5.20, 2009-09-16
1359
-----------------------
1360
- Avoid security problems resulting from writing Drupal 6-style menu
1361
  declarations.
1362
- Fixed security issues (session fixation), see SA-CORE-2009-008.
1363
- Fixed a variety of small bugs.
1364

    
1365
Drupal 5.19, 2009-07-01
1366
-----------------------
1367
- Fixed security issues (Cross site scripting and Password leakage in URL), see
1368
  SA-CORE-2009-007.          
1369
- Fixed a variety of small bugs.
1370

    
1371
Drupal 5.18, 2009-05-13
1372
-----------------------
1373
- Fixed security issues (Cross site scripting), see SA-CORE-2009-006.
1374
- Fixed a variety of small bugs.
1375

    
1376
Drupal 5.17, 2009-04-29
1377
-----------------------
1378
- Fixed security issues (Cross site scripting and limited information
1379
  disclosure) see SA-CORE-2009-005.
1380
- Fixed a variety of small bugs.
1381

    
1382
Drupal 5.16, 2009-02-25
1383
-----------------------
1384
- Fixed a security issue, (Local file inclusion on Windows), see SA-CORE-2009-004.
1385
- Fixed a variety of small bugs.
1386

    
1387
Drupal 5.15, 2009-01-14
1388
-----------------------
1389
- Fixed security issues, (Hardening against SQL injection), see
1390
  SA-CORE-2009-001
1391
- Fixed HTTP_HOST checking to work again with HTTP 1.0 clients and basic shell
1392
  scripts.
1393
- Fixed a variety of small bugs.
1394

    
1395
Drupal 5.14, 2008-12-11
1396
-----------------------
1397
- removed a previous change incompatible with PHP 5.1.x and lower.
1398

    
1399
Drupal 5.13, 2008-12-10
1400
-----------------------
1401
- fixed a variety of small bugs.
1402
- fixed security issues, (Cross site request forgery and Cross site scripting), see SA-2008-073
1403
- updated robots.txt and .htaccess to match current file use.
1404

    
1405
Drupal 5.12, 2008-10-22
1406
-----------------------
1407
- fixed security issues, (File inclusion), see SA-2008-067
1408

    
1409
Drupal 5.11, 2008-10-08
1410
-----------------------
1411
- fixed a variety of small bugs.
1412
- fixed security issues, (File upload access bypass, Access rules bypass,
1413
  BlogAPI access bypass, Node validation bypass), see SA-2008-060
1414

    
1415
Drupal 5.10, 2008-08-13
1416
-----------------------
1417
- fixed a variety of small bugs.
1418
- fixed security issues, (Cross site scripting, Arbitrary file uploads via
1419
  BlogAPI and Cross site request forgery), see SA-2008-047
1420

    
1421
Drupal 5.9, 2008-07-23
1422
----------------------
1423
- fixed a variety of small bugs.
1424
- fixed security issues, (Session fixation), see SA-2008-046
1425

    
1426
Drupal 5.8, 2008-07-09
1427
----------------------
1428
- fixed a variety of small bugs.
1429
- fixed security issues, (Cross site scripting, cross site request forgery, and
1430
  session fixation), see SA-2008-044
1431

    
1432
Drupal 5.7, 2008-01-28
1433
----------------------
1434
- fixed the input format configuration page.
1435
- fixed a variety of small bugs.
1436

    
1437
Drupal 5.6, 2008-01-10
1438
----------------------
1439
- fixed a variety of small bugs.
1440
- fixed a security issue (Cross site request forgery), see SA-2008-005
1441
- fixed a security issue (Cross site scripting, UTF8), see SA-2008-006
1442
- fixed a security issue (Cross site scripting, register_globals), see SA-2008-007
1443

    
1444
Drupal 5.5, 2007-12-06
1445
----------------------
1446
- fixed missing missing brackets in a query in the user module.
1447
- fixed taxonomy feed bug introduced by SA-2007-031
1448

    
1449
Drupal 5.4, 2007-12-05
1450
----------------------
1451
- fixed a variety of small bugs.
1452
- fixed a security issue (SQL injection), see SA-2007-031
1453

    
1454
Drupal 5.3, 2007-10-17
1455
----------------------
1456
- fixed a variety of small bugs.
1457
- fixed a security issue (HTTP response splitting), see SA-2007-024
1458
- fixed a security issue (Arbitrary code execution via installer), see SA-2007-025
1459
- fixed a security issue (Cross site scripting via uploads), see SA-2007-026
1460
- fixed a security issue (User deletion cross site request forgery), see SA-2007-029
1461
- fixed a security issue (API handling of unpublished comment), see SA-2007-030
1462

    
1463
Drupal 5.2, 2007-07-26
1464
----------------------
1465
- changed hook_link() $teaser argument to match documentation.
1466
- fixed a variety of small bugs.
1467
- fixed a security issue (cross-site request forgery), see SA-2007-017
1468
- fixed a security issue (cross-site scripting), see SA-2007-018
1469

    
1470
Drupal 5.1, 2007-01-29
1471
----------------------
1472
- fixed security issue (code execution), see SA-2007-005
1473
- fixed a variety of small bugs.
1474

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

    
1552
Drupal 4.7.11, 2008-01-10
1553
-------------------------
1554
- fixed a security issue (Cross site request forgery), see SA-2008-005
1555
- fixed a security issue (Cross site scripting, UTF8), see SA-2008-006
1556
- fixed a security issue (Cross site scripting, register_globals), see SA-2008-007
1557

    
1558
Drupal 4.7.10, 2007-12-06
1559
-------------------------
1560
- fixed taxonomy feed bug introduced by SA-2007-031
1561

    
1562
Drupal 4.7.9, 2007-12-05
1563
------------------------
1564
- fixed a security issue (SQL injection), see SA-2007-031
1565

    
1566
Drupal 4.7.8, 2007-10-17
1567
------------------------
1568
- fixed a security issue (HTTP response splitting), see SA-2007-024
1569
- fixed a security issue (Cross site scripting via uploads), see SA-2007-026
1570
- fixed a security issue (API handling of unpublished comment), see SA-2007-030
1571

    
1572
Drupal 4.7.7, 2007-07-26
1573
------------------------
1574
- fixed security issue (XSS), see SA-2007-018
1575

    
1576
Drupal 4.7.6, 2007-01-29
1577
------------------------
1578
- fixed security issue (code execution), see SA-2007-005
1579

    
1580
Drupal 4.7.5, 2007-01-05
1581
------------------------
1582
- Fixed security issue (XSS), see SA-2007-001
1583
- Fixed security issue (DoS), see SA-2007-002
1584

    
1585
Drupal 4.7.4, 2006-10-18
1586
------------------------
1587
- Fixed security issue (XSS), see SA-2006-024
1588
- Fixed security issue (CSRF), see SA-2006-025
1589
- Fixed security issue (Form action attribute injection), see SA-2006-026
1590

    
1591
Drupal 4.7.3, 2006-08-02
1592
------------------------
1593
- Fixed security issue (XSS), see SA-2006-011
1594

    
1595
Drupal 4.7.2, 2006-06-01
1596
------------------------
1597
- Fixed critical upload issue, see SA-2006-007
1598
- Fixed taxonomy XSS issue, see SA-2006-008
1599
- Fixed a variety of small bugs.
1600

    
1601
Drupal 4.7.1, 2006-05-24
1602
------------------------
1603
- Fixed critical SQL issue, see SA-2006-005
1604
- Fixed a serious upgrade related bug.
1605
- Fixed a variety of small bugs.
1606

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

    
1674
Drupal 4.6.11, 2007-01-05
1675
-------------------------
1676
- Fixed security issue (XSS), see SA-2007-001
1677
- Fixed security issue (DoS), see SA-2007-002
1678

    
1679
Drupal 4.6.10, 2006-10-18
1680
-------------------------
1681
- Fixed security issue (XSS), see SA-2006-024
1682
- Fixed security issue (CSRF), see SA-2006-025
1683
- Fixed security issue (Form action attribute injection), see SA-2006-026
1684

    
1685
Drupal 4.6.9, 2006-08-02
1686
------------------------
1687
- Fixed security issue (XSS), see SA-2006-011
1688

    
1689
Drupal 4.6.8, 2006-06-01
1690
------------------------
1691
- Fixed critical upload issue, see SA-2006-007
1692
- Fixed taxonomy XSS issue, see SA-2006-008
1693

    
1694
Drupal 4.6.7, 2006-05-24
1695
------------------------
1696
- Fixed critical SQL issue, see SA-2006-005
1697

    
1698
Drupal 4.6.6, 2006-03-13
1699
------------------------
1700
- Fixed bugs, including 4 security vulnerabilities.
1701

    
1702
Drupal 4.6.5, 2005-12-12
1703
------------------------
1704
- Fixed bugs: no critical bugs were identified.
1705

    
1706
Drupal 4.6.4, 2005-11-30
1707
------------------------
1708
- Fixed bugs, including 3 security vulnerabilities.
1709

    
1710
Drupal 4.6.3, 2005-08-15
1711
------------------------
1712
- Fixed bugs, including a critical "arbitrary PHP code execution" bug.
1713

    
1714
Drupal 4.6.2, 2005-06-29
1715
------------------------
1716
- Fixed bugs, including two critical "arbitrary PHP code execution" bugs.
1717

    
1718
Drupal 4.6.1, 2005-06-01
1719
------------------------
1720
- Fixed bugs, including a critical input validation bug.
1721

    
1722
Drupal 4.6.0, 2005-04-15
1723
------------------------
1724
- PHP5 compliance
1725
- Search:
1726
    * Added UTF-8 support to make it work with all languages.
1727
    * Improved search indexing algorithm.
1728
    * Improved search output.
1729
    * Impose a throttle on indexing of large sites.
1730
    * Added search block.
1731
- Syndication:
1732
    * Made the ping module ping pingomatic.com which, in turn, will ping all the major ping services.
1733
    * Made Drupal generate RSS 2.0 feeds.
1734
    * Made RSS feeds extensible.
1735
    * Added categories to RSS feeds.
1736
    * Added enclosures to RSS feeds.
1737
- Flood control mechanism:
1738
    * Added a mechanism to throttle certain operations.
1739
- Usability:
1740
    * Refactored the block configuration pages.
1741
    * Refactored the statistics pages.
1742
    * Refactored the watchdog pages.
1743
    * Refactored the throttle module configuration.
1744
    * Refactored the access rules page.
1745
    * Refactored the content administration page.
1746
    * Introduced forum configuration pages.
1747
    * Added a 'add child page' link to book pages.
1748
- Contact module:
1749
    * Added a simple contact module that allows users to contact each other using e-mail.
1750
- Multi-site configuration:
1751
    * Made it possible to run multiple sites from a single code base.
1752
- Added an image API: enables better image handling.
1753
- Block system:
1754
    * Extended the block visibility settings.
1755
- Theme system:
1756
    * Added new theme functions.
1757
- Database backend:
1758
    * The PEAR database backend is no longer supported.
1759
- Performance:
1760
    * Improved performance of the forum topics block.
1761
    * Improved performance of the tracker module.
1762
    * Improved performance of the node pages.
1763
- Documentation:
1764
    * Improved and extended PHPDoc/Doxygen comments.
1765

    
1766
Drupal 4.5.8, 2006-03-13
1767
------------------------
1768
- Fixed bugs, including 3 security vulnerabilities.
1769

    
1770
Drupal 4.5.7, 2005-12-12
1771
------------------------
1772
- Fixed bugs: no critical bugs were identified.
1773

    
1774
Drupal 4.5.6, 2005-11-30
1775
------------------------
1776
- Fixed bugs, including 3 security vulnerabilities.
1777

    
1778
Drupal 4.5.5, 2005-08-15
1779
------------------------
1780
- Fixed bugs, including a critical "arbitrary PHP code execution" bug.
1781

    
1782
Drupal 4.5.4, 2005-06-29
1783
------------------------
1784
- Fixed bugs, including two critical "arbitrary PHP code execution" bugs.
1785

    
1786
Drupal 4.5.3, 2005-06-01
1787
------------------------
1788
- Fixed bugs, including a critical input validation bug.
1789

    
1790
Drupal 4.5.2, 2005-01-15
1791
------------------------
1792
- Fixed bugs: a cross-site scripting (XSS) vulnerability has been fixed.
1793

    
1794
Drupal 4.5.1, 2004-12-01
1795
------------------------
1796
- Fixed bugs: no critical bugs were identified.
1797

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

    
1853
Drupal 4.4.3, 2005-06-01
1854
------------------------
1855
- Fixed bugs, including a critical input validation bug.
1856

    
1857
Drupal 4.4.2, 2004-07-04
1858
------------------------
1859
- Fixed bugs: no critical bugs were identified.
1860

    
1861
Drupal 4.4.1, 2004-05-01
1862
------------------------
1863
- Fixed bugs: no critical bugs were identified.
1864

    
1865
Drupal 4.4.0, 2004-04-01
1866
------------------------
1867
- Added support for the MetaWeblog API and MovableType extensions.
1868
- Added a file API: enables better document management.
1869
- Improved the watchdog and search module to log search keys.
1870
- News aggregator:
1871
    * Added support for conditional GET.
1872
    * Added OPML feed subscription list.
1873
    * Added support for <image>, <pubDate>, <dc:date>, <dcterms:created>, <dcterms:issued> and <dcterms:modified>.
1874
- Comment module:
1875
    * Made it possible to disable the "comment viewing controls".
1876
- Performance:
1877
    * Improved module loading when serving cached pages.
1878
    * Made it possible to automatically disable modules when under heavy load.
1879
    * Made it possible to automatically disable blocks when under heavy load.
1880
    * Improved performance and memory footprint of the locale module.
1881
- Theme system:
1882
    * Made all theme functions start with 'theme_'.
1883
    * Made all theme functions return their output.
1884
    * Migrated away from using the BaseTheme class.
1885
    * Added many new theme functions and refactored existing theme functions.
1886
    * Added avatar support to 'Xtemplate'.
1887
    * Replaced theme 'UnConeD' by 'Chameleon'.
1888
    * Replaced theme 'Marvin' by 'Pushbutton'.
1889
- Usability:
1890
    * Added breadcrumb navigation to all pages.
1891
    * Made it possible to add context-sensitive help to all pages.
1892
    * Replaced drop-down menus by radio buttons where appropriate.
1893
    * Removed the 'magic_quotes_gpc = 0' requirement.
1894
    * Added a 'book navigation' block.
1895
- Accessibility:
1896
    * Made themes degrade gracefully in absence of CSS.
1897
    * Grouped form elements using '<fieldset>' and '<legend>' tags.
1898
    * Added '<label>' tags to form elements.
1899
- Refactored 404 (file not found) handling and added support for custom 404 pages.
1900
- Improved the filter system to prevent conflicts between filters:
1901
    * Made it possible to change the order in which filters are applied.
1902
- Documentation:
1903
    * Added PHPDoc/Doxygen comments.
1904

    
1905
Drupal 4.3.2, 2004-01-01
1906
------------------------
1907
- Fixed bugs: no critical bugs were identified.
1908

    
1909
Drupal 4.3.1, 2003-12-01
1910
------------------------
1911
- Fixed bugs: no critical bugs were identified.
1912

    
1913
Drupal 4.3.0, 2003-11-01
1914
------------------------
1915
- Added support for configurable URLs.
1916
- Added support for sortable table columns.
1917
- Database backend:
1918
    * Added support for selective database table prefixing.
1919
- Performance:
1920
    * Optimized many SQL queries for speed by converting left joins to inner joins.
1921
- Comment module:
1922
    * Rewrote the comment housekeeping code to be much more efficient and scalable.
1923
    * Changed the comment module to use the standard pager.
1924
- User module:
1925
    * Added support for multiple sessions per user.
1926
    * Added support for anonymous user sessions.
1927
- Forum module:
1928
    * Improved the forum views and the themability thereof.
1929
- Book module:
1930
    * Improved integration of non-book nodes in the book outline.
1931
- Usability:
1932
    * Added support for "mass node operations" to ease repetitive tasks.
1933
    * Added support for breadcrumb navigation to several modules' user pages.
1934
    * Integrated the administration pages with the normal user pages.
1935

    
1936
Drupal 4.2.0, 2003-08-01
1937
------------------------
1938
- Added support for clean URLs.
1939
- Added textarea hook and support for onload attributes: enables integration of WYSIWYG editors.
1940
- Rewrote the RSS/RDF parser:
1941
    * It will now use PHP's built-in XML parser to parse news feeds.
1942
- Rewrote the administration pages:
1943
    * Improved the navigational elements and added breadcrumb navigation.
1944
    * Improved the look and feel.
1945
    * Added context-sensitive help.
1946
- Database backend:
1947
    * Fixed numerous SQL queries to make Drupal ANSI compliant.
1948
    * Added MSSQL database scheme.
1949
- Search module:
1950
    * Changed the search module to use implicit AND'ing instead of implicit OR'ing.
1951
- Node system:
1952
    * Replaced the "post content" permission by more fine-grained permissions.
1953
    * Improved content submission:
1954
        + 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.
1955
        + Added the ability to preview both the short and the full version of your posts.
1956
    * Extended the node API which allows for better integration.
1957
    * Added default node settings to control the behavior for promotion, moderation and other options.
1958
- Themes:
1959
    * Replaced theme "Goofy" by "Xtemplate", a template driven theme.
1960
- Removed the 'register_globals = on' requirement.
1961
- Added better installation instructions.
1962

    
1963
Drupal 4.1.0, 2003-02-01
1964
------------------------
1965
- Collaboratively revised and expanded the Drupal documentation.
1966
- Rewrote comment.module:
1967
    * Reintroduced comment rating/moderation.
1968
    * Added support for comment paging.
1969
    * Performance improvements: improved comment caching, faster SQL queries, etc.
1970
- Rewrote block.module:
1971
    * Performance improvements: blocks are no longer rendered when not displayed.
1972
- Rewrote forum.module:
1973
    * 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.
1974
- Rewrote statistics.module:
1975
    * Collects access counts for each node, referrer logs, number of users/guests.
1976
    * 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.
1977
- Added throttle.module:
1978
    * Auto-throttle congestion control mechanism: Drupal can adapt itself based on the server load.
1979
- Added profile.module:
1980
    * Enables to extend the user and registration page.
1981
- Added pager support to the main page.
1982
- Replaced weblogs.module by ping.module:
1983
    * Added support for normal and RSS notifications of http://blo.gs/.
1984
    * Added support for RSS ping-notifications of http://weblogs.com/.
1985
- Removed the rating module
1986
- Themes:
1987
    * Removed a significant portion of hard-coded mark-up.
1988

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

    
2042
Drupal 3.0.1, 2001-10-15
2043
------------------------
2044
- Various updates:
2045
    * Added missing translations
2046
    * Updated the themes: tidied up some HTML code and added new Drupal logos.
2047

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

    
2111
Drupal 2.0.0, 2001-03-15
2112
------------------------
2113
- Rewrote the comment/discussion code:
2114
    * Comment navigation should be less confusing now.
2115
    * Additional/alternative display and order methods have been added.
2116
    * Modules can be extended with a "comment system": modules can embed the existing comment system without having to write their own, duplicate comment system.
2117
- Added sections and section manager:
2118
    * Story sections can be maintained from the administration pages.
2119
    * 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.
2120
- Multiple vhosts + multiple directories:
2121
    * You can set up multiple Drupal sites on top of the same physical source tree either by using vhosts or sub-directories.
2122
- Added "user ratings" similar to SlashCode's Karma or Scoop's Mojo:
2123
    * All rating logic is packed into a module to ease experimenting with different rating heuristics/algorithms.
2124
- Added "search infrastructure":
2125
    * Improved search page and integrated search functionality in the administration pages.
2126
- Added translation / localization / internationalization support:
2127
    * 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.
2128
- Added fine-grained user permission (or group) system:
2129
    * 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.
2130
- Added FAQ module
2131
- Changed the "open submission queue" into a (optional) module.
2132
- Various updates:
2133
    * Improved account module:
2134
        + User accounts can be deleted.
2135
        + Added fine-grained permission support.
2136
    * Improved block module
2137
    * Improved diary module:
2138
        + Diary entries can be deleted
2139
    * Improved headline module:
2140
        + Improved parser to support more "generic" RDF/RSS/XML backend.
2141
    * Improved module module
2142
    * Improved watchdog module
2143
    * Improved database abstraction layer
2144
    * Improved themes:
2145
        + W3C validation on a best effort basis
2146
        + Added theme "example" (alias "Stone Age")
2147
    * Added new scripts to directory "scripts"
2148
    * Added directory "misc"
2149
    * Added CREDITS file
2150
- Revised documentation
2151

    
2152
Drupal 1.0.0, 2001-01-15
2153
------------------------
2154
- Initial release