Projet

Général

Profil

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

root / drupal7 / CHANGELOG.txt @ bd30cf47

1

    
2
Drupal 7.44, 2016-06-15
3
-----------------------
4
- Fixed security issues (privilege escalation). See SA-CORE-2016-002.
5

    
6
Drupal 7.43, 2016-02-24
7
-----------------------
8
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2016-001.
9

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

    
38
Drupal 7.41, 2015-10-21
39
-----------------------
40
- Fixed security issues (open redirect). See SA-CORE-2015-004.
41

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

    
103
Drupal 7.39, 2015-08-19
104
-----------------------
105
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-003.
106

    
107
Drupal 7.38, 2015-06-17
108
-----------------------
109
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-002.
110

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

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

    
189
Drupal 7.35, 2015-03-18
190
-----------------------
191
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-001.
192

    
193
Drupal 7.34, 2014-11-19
194
-----------------------
195
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-006.
196

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

    
262
Drupal 7.32, 2014-10-15
263
-----------------------
264
- Fixed security issues (SQL injection). See SA-CORE-2014-005.
265

    
266
Drupal 7.31, 2014-08-06
267
-----------------------
268
- Fixed security issues (denial of service). See SA-CORE-2014-004.
269

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

    
281
Drupal 7.29, 2014-07-16
282
-----------------------
283
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-003.
284

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

    
327
Drupal 7.27, 2014-04-16
328
-----------------------
329
- Fixed security issues (information disclosure). See SA-CORE-2014-002.
330

    
331
Drupal 7.26, 2014-01-15
332
-----------------------
333
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-001.
334

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

    
397
Drupal 7.24, 2013-11-20
398
-----------------------
399
- Fixed security issues (multiple vulnerabilities), see SA-CORE-2013-003.
400

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

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

    
516
Drupal 7.21, 2013-03-06
517
-----------------------
518
- Allowed sites using the 'image_allow_insecure_derivatives' variable to still
519
  have partial protection from the security issues fixed in Drupal 7.20.
520

    
521
Drupal 7.20, 2013-02-20
522
-----------------------
523
- Fixed security issues (denial of service). See SA-CORE-2013-002.
524

    
525
Drupal 7.19, 2013-01-16
526
-----------------------
527
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2013-001.
528

    
529
Drupal 7.18, 2012-12-19
530
-----------------------
531
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2012-004.
532

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

    
596
Drupal 7.16, 2012-10-17
597
-----------------------
598
- Fixed security issues (Arbitrary PHP code execution and information
599
  disclosure). See SA-CORE-2012-003.
600

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

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

    
701
Drupal 7.13, 2012-05-02
702
-----------------------
703
- Fixed security issues (Multiple vulnerabilities), see SA-CORE-2012-002.
704

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

    
739
Drupal 7.11, 2012-02-01
740
-----------------------
741
- Fixed security issues (Multiple vulnerabilities), see SA-CORE-2012-001.
742

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

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

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

    
819
Drupal 7.7, 2011-07-27
820
----------------------
821
- Fixed VERSION string.
822

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

    
838
Drupal 7.5, 2011-07-27
839
----------------------
840
- Fixed security issue (Access bypass), see SA-CORE-2011-003.
841

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

    
855
Drupal 7.3, 2011-06-29
856
----------------------
857
- Fixed security issue (Access bypass), see SA-CORE-2011-002.
858

    
859
Drupal 7.2, 2011-05-25
860
----------------------
861
- Added a default .gitignore file.
862
- Improved PostgreSQL and SQLite support.
863
- Numerous critical performance improvements.
864
- Numerous critical fixes to the upgrade path.
865
- Numerous fixes to language and translation systems.
866
- Numerous fixes to AJAX and #states systems.
867
- Improvements to the locking system.
868
- Numerous documentation fixes.
869
- Numerous styling and theme system fixes.
870
- Numerous fixes for schema mis-matches between Drupal 6 and 7.
871
- Minor internal API clean-ups.
872

    
873
Drupal 7.1, 2011-05-25
874
----------------------
875
- Fixed security issues (Cross site scripting, File access bypass), see SA-CORE-2011-001.
876

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

    
1096
Drupal 6.23-dev, xxxx-xx-xx (development release)
1097
---------------------------
1098

    
1099
Drupal 6.22, 2011-05-25
1100
-----------------------
1101
- Made Drupal 6 work better with IIS and Internet Explorer.
1102
- Fixed .po file imports to work better with custom textgroups.
1103
- Improved code documentation at various places.
1104
- Fixed a variety of other bugs.
1105

    
1106
Drupal 6.21, 2011-05-25
1107
-----------------------
1108
- Fixed security issues (Cross site scripting), see SA-CORE-2011-001.
1109

    
1110
Drupal 6.20, 2010-12-15
1111
-----------------------
1112
- Fixed a variety of small bugs, improved code documentation.
1113

    
1114
Drupal 6.19, 2010-08-11
1115
-----------------------
1116
- Fixed a variety of small bugs, improved code documentation.
1117

    
1118
Drupal 6.18, 2010-08-11
1119
-----------------------
1120
- Fixed security issues (OpenID authentication bypass, File download access
1121
  bypass, Comment unpublishing bypass, Actions cross site scripting),
1122
  see SA-CORE-2010-002.
1123

    
1124
Drupal 6.17, 2010-06-02
1125
-----------------------
1126
- Improved PostgreSQL compatibility
1127
- Better PHP 5.3 and PHP 4 compatibility
1128
- Better browser compatibility of CSS and JS aggregation
1129
- Improved logging for login failures
1130
- Fixed an incompatibility with some contributed modules and the locking system
1131
- Fixed a variety of other bugs.
1132

    
1133
Drupal 6.16, 2010-03-03
1134
-----------------------
1135
- Fixed security issues (Installation cross site scripting, Open redirection,
1136
  Locale module cross site scripting, Blocked user session regeneration),
1137
  see SA-CORE-2010-001.
1138
- Better support for updated jQuery versions.
1139
- Reduced resource usage of update.module.
1140
- Fixed several issues relating to support of installation profiles and
1141
  distributions.
1142
- Added a locking framework to avoid data corruption on long operations.
1143
- Fixed a variety of other bugs.
1144

    
1145
Drupal 6.15, 2009-12-16
1146
-----------------------
1147
- Fixed security issues (Cross site scripting), see SA-CORE-2009-009.
1148
- Fixed a variety of other bugs.
1149

    
1150
Drupal 6.14, 2009-09-16
1151
-----------------------
1152
- Fixed security issues (OpenID association cross site request forgeries,
1153
  OpenID impersonation and File upload), see SA-CORE-2009-008.
1154
- Changed the system modules page to not run all cache rebuilds; use the
1155
  button on the performance settings page to achieve the same effect.
1156
- Added support for PHP 5.3.0 out of the box.
1157
- Fixed a variety of small bugs.
1158

    
1159
Drupal 6.13, 2009-07-01
1160
-----------------------
1161
- Fixed security issues (Cross site scripting, Input format access bypass and
1162
  Password leakage in URL), see SA-CORE-2009-007.
1163
- Fixed a variety of small bugs.
1164

    
1165
Drupal 6.12, 2009-05-13
1166
-----------------------
1167
- Fixed security issues (Cross site scripting), see SA-CORE-2009-006.
1168
- Fixed a variety of small bugs.
1169

    
1170
Drupal 6.11, 2009-04-29
1171
-----------------------
1172
- Fixed security issues (Cross site scripting and limited information
1173
  disclosure), see SA-CORE-2009-005
1174
- Fixed performance issues with the menu router cache, the update
1175
  status cache and improved cache invalidation
1176
- Fixed a variety of small bugs.
1177

    
1178
Drupal 6.10, 2009-02-25
1179
-----------------------
1180
- Fixed a security issue, (Local file inclusion on Windows),
1181
  see SA-CORE-2009-003
1182
- Fixed node_feed() so custom fields can show up in RSS feeds.
1183
- Improved PostgreSQL compatibility.
1184
- Fixed a variety of small bugs.
1185

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

    
1197
Drupal 6.8, 2008-12-11
1198
----------------------
1199
- Removed a previous change incompatible with PHP 5.1.x and lower.
1200

    
1201
Drupal 6.7, 2008-12-10
1202
----------------------
1203
- Fixed security issues, (Cross site request forgery and Cross site scripting), see SA-2008-073
1204
- Updated robots.txt and .htaccess to match current file use.
1205
- Fixed a variety of small bugs.
1206

    
1207
Drupal 6.6, 2008-10-22
1208
----------------------
1209
- Fixed security issues, (File inclusion, Cross site scripting), see SA-2008-067
1210
- Fixed a variety of small bugs.
1211

    
1212
Drupal 6.5, 2008-10-08
1213
----------------------
1214
- Fixed security issues, (File upload access bypass, Access rules bypass,
1215
  BlogAPI access bypass), see SA-2008-060.
1216
- Fixed a variety of small bugs.
1217

    
1218
Drupal 6.4, 2008-08-13
1219
----------------------
1220
- Fixed a security issue (Cross site scripting, Arbitrary file uploads via
1221
  BlogAPI, Cross site request forgeries and Various Upload module
1222
  vulnerabilities), see SA-2008-047.
1223
- Improved error messages during installation.
1224
- Fixed a bug that prevented AHAH handlers to be attached to radios widgets.
1225
- Fixed a variety of small bugs.
1226

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

    
1239
Drupal 6.2, 2008-04-09
1240
----------------------
1241
- Fixed a variety of small bugs.
1242
- Fixed a security issue (Access bypasses), see SA-2008-026.
1243

    
1244
Drupal 6.1, 2008-02-27
1245
----------------------
1246
- Fixed a variety of small bugs.
1247
- Fixed a security issue (Cross site scripting), see SA-2008-018.
1248

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

    
1351
Drupal 5.23, 2010-08-11
1352
-----------------------
1353
- Fixed security issues (File download access bypass, Comment unpublishing
1354
  bypass), see SA-CORE-2010-002.
1355

    
1356
Drupal 5.22, 2010-03-03
1357
-----------------------
1358
- Fixed security issues (Open redirection, Locale module cross site scripting,
1359
  Blocked user session regeneration), see SA-CORE-2010-001.
1360

    
1361
Drupal 5.21, 2009-12-16
1362
-----------------------
1363
- Fixed a security issue (Cross site scripting), see SA-CORE-2009-009.
1364
- Fixed a variety of small bugs.
1365

    
1366
Drupal 5.20, 2009-09-16
1367
-----------------------
1368
- Avoid security problems resulting from writing Drupal 6-style menu
1369
  declarations.
1370
- Fixed security issues (session fixation), see SA-CORE-2009-008.
1371
- Fixed a variety of small bugs.
1372

    
1373
Drupal 5.19, 2009-07-01
1374
-----------------------
1375
- Fixed security issues (Cross site scripting and Password leakage in URL), see
1376
  SA-CORE-2009-007.          
1377
- Fixed a variety of small bugs.
1378

    
1379
Drupal 5.18, 2009-05-13
1380
-----------------------
1381
- Fixed security issues (Cross site scripting), see SA-CORE-2009-006.
1382
- Fixed a variety of small bugs.
1383

    
1384
Drupal 5.17, 2009-04-29
1385
-----------------------
1386
- Fixed security issues (Cross site scripting and limited information
1387
  disclosure) see SA-CORE-2009-005.
1388
- Fixed a variety of small bugs.
1389

    
1390
Drupal 5.16, 2009-02-25
1391
-----------------------
1392
- Fixed a security issue, (Local file inclusion on Windows), see SA-CORE-2009-004.
1393
- Fixed a variety of small bugs.
1394

    
1395
Drupal 5.15, 2009-01-14
1396
-----------------------
1397
- Fixed security issues, (Hardening against SQL injection), see
1398
  SA-CORE-2009-001
1399
- Fixed HTTP_HOST checking to work again with HTTP 1.0 clients and basic shell
1400
  scripts.
1401
- Fixed a variety of small bugs.
1402

    
1403
Drupal 5.14, 2008-12-11
1404
-----------------------
1405
- removed a previous change incompatible with PHP 5.1.x and lower.
1406

    
1407
Drupal 5.13, 2008-12-10
1408
-----------------------
1409
- fixed a variety of small bugs.
1410
- fixed security issues, (Cross site request forgery and Cross site scripting), see SA-2008-073
1411
- updated robots.txt and .htaccess to match current file use.
1412

    
1413
Drupal 5.12, 2008-10-22
1414
-----------------------
1415
- fixed security issues, (File inclusion), see SA-2008-067
1416

    
1417
Drupal 5.11, 2008-10-08
1418
-----------------------
1419
- fixed a variety of small bugs.
1420
- fixed security issues, (File upload access bypass, Access rules bypass,
1421
  BlogAPI access bypass, Node validation bypass), see SA-2008-060
1422

    
1423
Drupal 5.10, 2008-08-13
1424
-----------------------
1425
- fixed a variety of small bugs.
1426
- fixed security issues, (Cross site scripting, Arbitrary file uploads via
1427
  BlogAPI and Cross site request forgery), see SA-2008-047
1428

    
1429
Drupal 5.9, 2008-07-23
1430
----------------------
1431
- fixed a variety of small bugs.
1432
- fixed security issues, (Session fixation), see SA-2008-046
1433

    
1434
Drupal 5.8, 2008-07-09
1435
----------------------
1436
- fixed a variety of small bugs.
1437
- fixed security issues, (Cross site scripting, cross site request forgery, and
1438
  session fixation), see SA-2008-044
1439

    
1440
Drupal 5.7, 2008-01-28
1441
----------------------
1442
- fixed the input format configuration page.
1443
- fixed a variety of small bugs.
1444

    
1445
Drupal 5.6, 2008-01-10
1446
----------------------
1447
- fixed a variety of small bugs.
1448
- fixed a security issue (Cross site request forgery), see SA-2008-005
1449
- fixed a security issue (Cross site scripting, UTF8), see SA-2008-006
1450
- fixed a security issue (Cross site scripting, register_globals), see SA-2008-007
1451

    
1452
Drupal 5.5, 2007-12-06
1453
----------------------
1454
- fixed missing missing brackets in a query in the user module.
1455
- fixed taxonomy feed bug introduced by SA-2007-031
1456

    
1457
Drupal 5.4, 2007-12-05
1458
----------------------
1459
- fixed a variety of small bugs.
1460
- fixed a security issue (SQL injection), see SA-2007-031
1461

    
1462
Drupal 5.3, 2007-10-17
1463
----------------------
1464
- fixed a variety of small bugs.
1465
- fixed a security issue (HTTP response splitting), see SA-2007-024
1466
- fixed a security issue (Arbitrary code execution via installer), see SA-2007-025
1467
- fixed a security issue (Cross site scripting via uploads), see SA-2007-026
1468
- fixed a security issue (User deletion cross site request forgery), see SA-2007-029
1469
- fixed a security issue (API handling of unpublished comment), see SA-2007-030
1470

    
1471
Drupal 5.2, 2007-07-26
1472
----------------------
1473
- changed hook_link() $teaser argument to match documentation.
1474
- fixed a variety of small bugs.
1475
- fixed a security issue (cross-site request forgery), see SA-2007-017
1476
- fixed a security issue (cross-site scripting), see SA-2007-018
1477

    
1478
Drupal 5.1, 2007-01-29
1479
----------------------
1480
- fixed security issue (code execution), see SA-2007-005
1481
- fixed a variety of small bugs.
1482

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

    
1560
Drupal 4.7.11, 2008-01-10
1561
-------------------------
1562
- fixed a security issue (Cross site request forgery), see SA-2008-005
1563
- fixed a security issue (Cross site scripting, UTF8), see SA-2008-006
1564
- fixed a security issue (Cross site scripting, register_globals), see SA-2008-007
1565

    
1566
Drupal 4.7.10, 2007-12-06
1567
-------------------------
1568
- fixed taxonomy feed bug introduced by SA-2007-031
1569

    
1570
Drupal 4.7.9, 2007-12-05
1571
------------------------
1572
- fixed a security issue (SQL injection), see SA-2007-031
1573

    
1574
Drupal 4.7.8, 2007-10-17
1575
------------------------
1576
- fixed a security issue (HTTP response splitting), see SA-2007-024
1577
- fixed a security issue (Cross site scripting via uploads), see SA-2007-026
1578
- fixed a security issue (API handling of unpublished comment), see SA-2007-030
1579

    
1580
Drupal 4.7.7, 2007-07-26
1581
------------------------
1582
- fixed security issue (XSS), see SA-2007-018
1583

    
1584
Drupal 4.7.6, 2007-01-29
1585
------------------------
1586
- fixed security issue (code execution), see SA-2007-005
1587

    
1588
Drupal 4.7.5, 2007-01-05
1589
------------------------
1590
- Fixed security issue (XSS), see SA-2007-001
1591
- Fixed security issue (DoS), see SA-2007-002
1592

    
1593
Drupal 4.7.4, 2006-10-18
1594
------------------------
1595
- Fixed security issue (XSS), see SA-2006-024
1596
- Fixed security issue (CSRF), see SA-2006-025
1597
- Fixed security issue (Form action attribute injection), see SA-2006-026
1598

    
1599
Drupal 4.7.3, 2006-08-02
1600
------------------------
1601
- Fixed security issue (XSS), see SA-2006-011
1602

    
1603
Drupal 4.7.2, 2006-06-01
1604
------------------------
1605
- Fixed critical upload issue, see SA-2006-007
1606
- Fixed taxonomy XSS issue, see SA-2006-008
1607
- Fixed a variety of small bugs.
1608

    
1609
Drupal 4.7.1, 2006-05-24
1610
------------------------
1611
- Fixed critical SQL issue, see SA-2006-005
1612
- Fixed a serious upgrade related bug.
1613
- Fixed a variety of small bugs.
1614

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

    
1682
Drupal 4.6.11, 2007-01-05
1683
-------------------------
1684
- Fixed security issue (XSS), see SA-2007-001
1685
- Fixed security issue (DoS), see SA-2007-002
1686

    
1687
Drupal 4.6.10, 2006-10-18
1688
-------------------------
1689
- Fixed security issue (XSS), see SA-2006-024
1690
- Fixed security issue (CSRF), see SA-2006-025
1691
- Fixed security issue (Form action attribute injection), see SA-2006-026
1692

    
1693
Drupal 4.6.9, 2006-08-02
1694
------------------------
1695
- Fixed security issue (XSS), see SA-2006-011
1696

    
1697
Drupal 4.6.8, 2006-06-01
1698
------------------------
1699
- Fixed critical upload issue, see SA-2006-007
1700
- Fixed taxonomy XSS issue, see SA-2006-008
1701

    
1702
Drupal 4.6.7, 2006-05-24
1703
------------------------
1704
- Fixed critical SQL issue, see SA-2006-005
1705

    
1706
Drupal 4.6.6, 2006-03-13
1707
------------------------
1708
- Fixed bugs, including 4 security vulnerabilities.
1709

    
1710
Drupal 4.6.5, 2005-12-12
1711
------------------------
1712
- Fixed bugs: no critical bugs were identified.
1713

    
1714
Drupal 4.6.4, 2005-11-30
1715
------------------------
1716
- Fixed bugs, including 3 security vulnerabilities.
1717

    
1718
Drupal 4.6.3, 2005-08-15
1719
------------------------
1720
- Fixed bugs, including a critical "arbitrary PHP code execution" bug.
1721

    
1722
Drupal 4.6.2, 2005-06-29
1723
------------------------
1724
- Fixed bugs, including two critical "arbitrary PHP code execution" bugs.
1725

    
1726
Drupal 4.6.1, 2005-06-01
1727
------------------------
1728
- Fixed bugs, including a critical input validation bug.
1729

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

    
1774
Drupal 4.5.8, 2006-03-13
1775
------------------------
1776
- Fixed bugs, including 3 security vulnerabilities.
1777

    
1778
Drupal 4.5.7, 2005-12-12
1779
------------------------
1780
- Fixed bugs: no critical bugs were identified.
1781

    
1782
Drupal 4.5.6, 2005-11-30
1783
------------------------
1784
- Fixed bugs, including 3 security vulnerabilities.
1785

    
1786
Drupal 4.5.5, 2005-08-15
1787
------------------------
1788
- Fixed bugs, including a critical "arbitrary PHP code execution" bug.
1789

    
1790
Drupal 4.5.4, 2005-06-29
1791
------------------------
1792
- Fixed bugs, including two critical "arbitrary PHP code execution" bugs.
1793

    
1794
Drupal 4.5.3, 2005-06-01
1795
------------------------
1796
- Fixed bugs, including a critical input validation bug.
1797

    
1798
Drupal 4.5.2, 2005-01-15
1799
------------------------
1800
- Fixed bugs: a cross-site scripting (XSS) vulnerability has been fixed.
1801

    
1802
Drupal 4.5.1, 2004-12-01
1803
------------------------
1804
- Fixed bugs: no critical bugs were identified.
1805

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

    
1861
Drupal 4.4.3, 2005-06-01
1862
------------------------
1863
- Fixed bugs, including a critical input validation bug.
1864

    
1865
Drupal 4.4.2, 2004-07-04
1866
------------------------
1867
- Fixed bugs: no critical bugs were identified.
1868

    
1869
Drupal 4.4.1, 2004-05-01
1870
------------------------
1871
- Fixed bugs: no critical bugs were identified.
1872

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

    
1913
Drupal 4.3.2, 2004-01-01
1914
------------------------
1915
- Fixed bugs: no critical bugs were identified.
1916

    
1917
Drupal 4.3.1, 2003-12-01
1918
------------------------
1919
- Fixed bugs: no critical bugs were identified.
1920

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

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

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

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

    
2050
Drupal 3.0.1, 2001-10-15
2051
------------------------
2052
- Various updates:
2053
    * Added missing translations
2054
    * Updated the themes: tidied up some HTML code and added new Drupal logos.
2055

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

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

    
2160
Drupal 1.0.0, 2001-01-15
2161
------------------------
2162
- Initial release