CHANGELOG.txt 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409
  1. Drupal 7.72, 2020-06-17
  2. -----------------------
  3. - Fixed security issues:
  4. - SA-CORE-2020-004
  5. Drupal 7.71, 2020-06-03
  6. -----------------------
  7. - Fix for jQuery Form bug in Chromium-based browsers
  8. - Full support for PHP 7.4
  9. Drupal 7.70, 2020-05-19
  10. -----------------------
  11. - Fixed security issues:
  12. - SA-CORE-2020-002
  13. - SA-CORE-2020-003
  14. Drupal 7.69, 2019-12-18
  15. -----------------------
  16. - Fixed security issues:
  17. - SA-CORE-2019-012
  18. Drupal 7.68, 2019-12-04
  19. -----------------------
  20. - Fixed: Hide toolbar when printing
  21. - Fixed: Settings returned via ajax are not run through hook_js_alter()
  22. - Fixed: Use drupal_http_build_query() in drupal_http_request()
  23. - Fixed: DrupalRequestSanitizer not found fatal error when bootstrap phase order is changed
  24. - Fixed: Block web.config in .htaccess (and vice-versa)
  25. - Fixed: Create "scripts" element to align rendering workflow to how "styles" are handled
  26. - PHP 7.3: Fixed 'Cannot change session id when session is active'
  27. - PHP 7.1: Fixed 'A non-numeric value encountered in theme_pager()'
  28. - PHP 7.x: Fixed file.inc generated .htaccess does not cover PHP 7
  29. - PHP 5.3: Fixed check_plain() 'Invalid multibyte sequence in argument' test failures
  30. - Fixed: Allow passing data as array to drupal_http_request()
  31. - Fixed: Skip module_invoke/module_hook in calling hook_watchdog (excessive function_exist)
  32. - Fixed: HTTP status 200 returned for 'Additional uncaught exception thrown while handling exception'
  33. - Fixed: theme_table() should take an optional footer variable and produce <tfoot>
  34. - Fixed: 'uasort() expects parameter 1 to be array, null given in node_view_multiple()'
  35. - [regression] Fix default.settings.php permission
  36. Drupal 7.67, 2019-05-08
  37. -----------------------
  38. - Fixed security issues:
  39. - SA-CORE-2019-007
  40. Drupal 7.66, 2019-04-17
  41. -----------------------
  42. - Fixed security issues:
  43. - SA-CORE-2019-006
  44. Drupal 7.65, 2019-03-20
  45. -----------------------
  46. - Fixed security issues:
  47. - SA-CORE-2019-004
  48. Drupal 7.64, 2019-02-06
  49. -----------------------
  50. - [regression] Unset the 'host' header in drupal_http_request() during redirect
  51. - Fixed: 7.x does not have Phar protection and Phar tests are failing on Drupal 7
  52. - Fixed: Notice: Undefined index: display_field in file_field_widget_value() (line 582 of /module/file/file.field.inc)
  53. - Performance improvement: Registry rebuild should not parse the same file twice in the same request
  54. - Fixed _registry_update() to clear caches after transaction is committed
  55. Drupal 7.63, 2019-01-16
  56. -----------------------
  57. - Fixed a fatal error for some Drush users introduced by SA-CORE-2019-002.
  58. Drupal 7.62, 2019-01-15
  59. -----------------------
  60. - Fixed security issues:
  61. - SA-CORE-2019-001
  62. - SA-CORE-2019-002
  63. Drupal 7.61, 2018-11-07
  64. -----------------------
  65. - File upload validation functions and hook_file_validate() implementations are
  66. now always passed the correct file URI.
  67. - The default form cache expiration of 6 hours is now configurable (API
  68. addition: https://www.drupal.org/node/2857751).
  69. - Allowed callers of drupal_http_request() to optionally specify an explicit
  70. Host header.
  71. - Allowed the + character to appear in usernames.
  72. - PHP 7.2: Fixed Archive_Tar incompatibility.
  73. - PHP 7.2: Removed deprecated function each().
  74. - PHP 7.2: Avoid count() calls on uncountable variables.
  75. - PHP 7.2: Removed deprecated create_function() call.
  76. - PHP 7.2: Make sure variables are arrays in theme_links().
  77. - Fixed theme-settings.php not being loaded on cached forms
  78. - Fixed problem with IE11 & Chrome(PointerEvents enabled) & some Firefox scroll to the top of the page after dragging the bottom item with jquery 1.5 <-> 1.11
  79. Drupal 7.60, 2018-10-18
  80. ------------------------
  81. - Fixed security issues. See SA-CORE-2018-006.
  82. Drupal 7.59, 2018-04-25
  83. -----------------------
  84. - Fixed security issues (remote code execution). See SA-CORE-2018-004.
  85. Drupal 7.58, 2018-03-28
  86. -----------------------
  87. - Fixed security issues (remote code execution). See SA-CORE-2018-002.
  88. Drupal 7.57, 2018-02-21
  89. -----------------------
  90. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2018-001.
  91. Drupal 7.56, 2017-06-21
  92. -----------------------
  93. - Fixed security issues (access bypass). See SA-CORE-2017-003.
  94. Drupal 7.55, 2017-06-07
  95. -----------------------
  96. - Fixed incompatibility with PHP versions 7.0.19 and 7.1.5 due to duplicate
  97. DATE_RFC7231 definition.
  98. - Made Drupal core pass all automated tests on PHP 7.1.
  99. - Allowed services such as Let's Encrypt to work with Drupal on Apache, by
  100. making Drupal's .htaccess file allow access to the .well-known directory
  101. defined by RFC 5785.
  102. - Made new Drupal sites work correctly on Apache 2.4 when the mod_access_compat
  103. Apache module is disabled.
  104. - Fixed Drupal's URL-generating functions to always encode '[' and ']' so that
  105. the URLs will pass HTML5 validation.
  106. - Various additional bug fixes.
  107. - Various API documentation improvements.
  108. - Additional automated test coverage.
  109. Drupal 7.54, 2017-02-01
  110. -----------------------
  111. - Modules are now able to define theme engines (API addition:
  112. https://www.drupal.org/node/2826480).
  113. - Logging of searches can now be disabled (new option in the administrative
  114. interface).
  115. - Added menu tree render structure to (pre-)process hooks for theme_menu_tree()
  116. (API addition: https://www.drupal.org/node/2827134).
  117. - Added new function for determining whether an HTTPS request is being served
  118. (API addition: https://www.drupal.org/node/2824590).
  119. - Fixed incorrect default value for short and medium date formats on the date
  120. type configuration page.
  121. - File validation error message is now removed after subsequent upload of valid
  122. file.
  123. - Numerous bug fixes.
  124. - Numerous API documentation improvements.
  125. - Additional performance improvements.
  126. - Additional automated test coverage.
  127. Drupal 7.53, 2016-12-07
  128. -----------------------
  129. - Fixed drag and drop support on newer Chrome/IE 11+ versions after 7.51 update
  130. when jQuery is updated to 1.7-1.11.0.
  131. Drupal 7.52, 2016-11-16
  132. -----------------------
  133. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2016-005.
  134. Drupal 7.51, 2016-10-05
  135. -----------------------
  136. - The Update module now also checks for updates to a disabled theme that is
  137. used as an admin theme.
  138. - Exceptions thrown in dblog_watchdog() are now caught and ignored.
  139. - Clarified the warning that appears when modules are missing or have moved.
  140. - Log messages are now XSS filtered on display.
  141. - Draggable tables now work on touch screen devices.
  142. - Added a setting for allowing double underscores in CSS identifiers
  143. (https://www.drupal.org/node/2810369).
  144. - If a user navigates away from a page while an Ajax request is running they
  145. will no longer get an error message saying "An Ajax HTTP request terminated
  146. abnormally".
  147. - The system_region_list() API function now takes an optional third parameter
  148. which allows region name translations to be skipped when they are not needed
  149. (API addition: https://www.drupal.org/node/2810365).
  150. - Numerous performance improvements.
  151. - Numerous bug fixes.
  152. - Numerous API documentation improvements.
  153. - Additional automated test coverage.
  154. Drupal 7.50, 2016-07-07
  155. -----------------------
  156. - Added a new "administer fields" permission for trusted users, which is
  157. required in addition to other permissions to use the field UI
  158. (https://www.drupal.org/node/2483307).
  159. - Added clickjacking protection to Drupal core by setting the X-Frame-Options
  160. header to SAMEORIGIN by default (https://www.drupal.org/node/2735873).
  161. - Added support for full UTF-8 (emojis, Asian symbols, mathematical symbols) on
  162. MySQL and other database drivers when the site and database are configured to
  163. allow it (https://www.drupal.org/node/2761183).
  164. - Improved performance by avoiding a re-scan of directories when a file is
  165. missing; instead, trigger a PHP warning (minor API change:
  166. https://www.drupal.org/node/2581445).
  167. - Made it possible to use any PHP callable in Ajax form callbacks, form API
  168. form-building functions, and form API wrapper callbacks (API addition:
  169. https://www.drupal.org/node/2761169).
  170. - Fixed that following a password reset link while logged in leaves users unable
  171. to change their password (minor user interface change:
  172. https://www.drupal.org/node/2759023).
  173. - Implemented various fixes for automated test failures on PHP 5.4+ and PHP 7.
  174. Drupal core automated tests now pass in these environments.
  175. - Improved support for PHP 7 by fixing various problems.
  176. - Fixed various bugs with PHP 5.5+ imagerotate(), including when incorrect
  177. color indices are passed in.
  178. - Fixed a regression introduced in Drupal 7.43 that allowed files uploaded by
  179. anonymous users to be lost after form validation errors, and that also caused
  180. regressions with certain contributed modules.
  181. - Fixed a regression introduced in Drupal 7.36 which caused the default value
  182. of hidden textarea fields to be ignored.
  183. - Fixed robots.txt to allow search engines to access CSS, JavaScript and image
  184. files.
  185. - Changed wording on the Update Manager settings page to clarify that the
  186. option to check for disabled module updates also applies to uninstalled
  187. modules (administrative-facing translatable string change).
  188. - Changed the help text when editing menu links and configuring URL redirect
  189. actions so that it does not reference "Drupal" or the drupal.org website
  190. (administrative-facing translatable string change).
  191. - Fixed the locale safety check that is used to ensure that translations are
  192. safe to allow for tokens in the href/src attributes of translated strings.
  193. - Fixed that URL generation only works on port 80 when using domain based
  194. language negotation.
  195. - Made method="get" forms work inside the administrative overlay. The fix adds
  196. a new hidden field to these forms when they appear inside the overlay (minor
  197. data structure change).
  198. - Increased maxlength of menu link title input fields in the node form and
  199. menu link form from 128 to 255 characters.
  200. - Removed meaningless post-check=0 and pre-check=0 cache control headers from
  201. Drupal HTTP responses.
  202. - Added a .editorconfig file to auto-configure editors that support it.
  203. - Added --directory option to run-tests.sh for easier test discovery of all
  204. tests within a project.
  205. - Made run-tests.sh exit with a failure code when there are test fails or
  206. problems running the script.
  207. - Fixed that cookies from previous tests are still present when a new test
  208. starts in DrupalWebTestCase.
  209. - Improved performance of queries on the {authmap} database table.
  210. - Fixed handling of missing files and functions inside the registry.
  211. - Fixed Ajax handling for tableselect form elements that use checkboxes.
  212. - Fixed a bug which caused ip_address() to return nothing when the client IP
  213. address and proxy IP address are the same.
  214. - Added a new option to format_xml_elements() to allow for already encoded
  215. values.
  216. - Changed the {history} table's node ID field to be an unsigned integer, to
  217. match the same field in the {node} table and to prevent errors with very
  218. large node IDs.
  219. - Added an explicit page callback to the "admin/people/create" menu item in the
  220. User module (minor data structure change). Previously this automatically
  221. inherited the page callback from the parent "admin/people" menu item, which
  222. broke contributed modules that override the "admin/people" page.
  223. - Numerous small bug fixes.
  224. - Numerous API documentation improvements.
  225. - Additional automated test coverage.
  226. Drupal 7.44, 2016-06-15
  227. -----------------------
  228. - Fixed security issues (privilege escalation). See SA-CORE-2016-002.
  229. Drupal 7.43, 2016-02-24
  230. -----------------------
  231. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2016-001.
  232. Drupal 7.42, 2016-02-03
  233. -----------------------
  234. - Stopped invoking hook_flush_caches() on every cron run, since some modules
  235. use that hook for expensive operations that are only needed on cache clears.
  236. - Changed the default .htaccess and web.config to block Composer-related files.
  237. - Added static caching to module_load_include() to improve performance.
  238. - Fixed double-encoding bugs in select field widgets provided by the Options
  239. module. The fix deprecates the 'strip_tags' property on option widgets and
  240. replaces it with a new 'strip_tags_and_unescape' property (minor data
  241. structure change).
  242. - Improved MySQL 5.7 support by changing the MySQL database driver to stop
  243. using the ANSI SQL mode alias, which has different meanings for different
  244. MySQL versions.
  245. - Fixed a regression introduced in Drupal 7.39 which prevented autocomplete
  246. functionality from working on servers that are not configured to
  247. automatically recognize index.php.
  248. - Updated the Archive_Tar PEAR package to the latest 1.4.0 release, to fix bugs
  249. with tar file handling on various operating systems.
  250. - Fixed fatal errors on node preview when a field is displayed in the node
  251. teaser but hidden in the full node view. The fix removes a
  252. field_attach_prepare_view() call from the node_preview() function since it is
  253. redundant with one in the node preview theme layer.
  254. - Improved the description of the "Trimmed" format option on text fields
  255. (translatable string change, and minor UI and data structure change).
  256. - Numerous small bug fixes.
  257. - Numerous API documentation improvements.
  258. - Additional automated test coverage.
  259. Drupal 7.41, 2015-10-21
  260. -----------------------
  261. - Fixed security issues (open redirect). See SA-CORE-2015-004.
  262. Drupal 7.40, 2015-10-14
  263. -----------------------
  264. - Made Drupal's code for parsing .info files run much faster and use much less
  265. memory.
  266. - Prevented drupal_http_request() from returning an error when it receives a
  267. 201 through 206 HTTP status code.
  268. - Added support for autoloading traits via the registry on sites running PHP
  269. 5.4 or higher.
  270. - Allowed the user-picture.tpl.php theme template to have HTML classes besides
  271. the default "user-picture" class printed in it (markup change).
  272. - Fixed the URL text filter to convert e-mail addresses with plus signs into
  273. mailto: links.
  274. - Added alternate text to file icons displayed by the File module, to improve
  275. accessibility (string change, and minor API addition to theme_file_icon()).
  276. - Changed one-time login link failure messages to be displayed as errors or
  277. warnings as appropriate, rather than as regular status messages (minor UI
  278. change and data structure change).
  279. - Changed the default settings.php configuration to exclude private files from
  280. the "404_fast_paths" behavior.
  281. - Changed the page that displays filter tips for a particular text format, for
  282. example filter/tips/full_html, to return "page not found" or "access denied"
  283. if the format does not exist or the user does not have access to it. This
  284. change adds a new menu item to the Filter module's hook_menu() entry (minor
  285. data structure change).
  286. - Added a new hook, hook_block_cid_parts_alter(), to allow modules to alter the
  287. cache keys used for caching a particular block.
  288. - Made drupal_set_message() display and return messages when "0" is passed in
  289. as the message to set.
  290. - Fixed non-functional "Files displayed by default" setting on file fields.
  291. - The "worker callback" provided in hook_cron_queue_info() and the "finished"
  292. callback specified during batch processing can now be any PHP callable
  293. instead of just functions.
  294. - Prevented drupal_set_time_limit() from decreasing the time limit in the case
  295. where the PHP maximum execution time is already unlimited.
  296. - Changed the default thousand marker for numeric fields from a space ("1 000")
  297. to nothing ("1000") (minor UI change: https://www.drupal.org/node/1388376).
  298. - Prevented malformed theme .info files (without a "name" key) from causing
  299. exceptions during menu rebuilds. If an .info file without a "name" key is
  300. found in a module or theme directory, Drupal will now use the module or
  301. theme's machine name as the display name instead.
  302. - Made the format column in the {date_format_locale} database table
  303. case-sensitive, to match the equivalent column in the {date_formats} table.
  304. - Fixed a bug in the Statistics module that caused JavaScript files attached to
  305. a node while it is being viewed to be omitted from the page.
  306. - Added an optional 'project:' prefix that can be added to dependencies in a
  307. module's .info file to indicate which project the dependency resides in (API
  308. addition: https://www.drupal.org/node/2299747).
  309. - Fixed various bugs that occurred after hooks were invoked early in the Drupal
  310. bootstrap and that caused module_implements() and drupal_alter() to cache an
  311. incomplete set of hook implementations for later use.
  312. - Set the X-Content-Type-Options header to "nosniff" when possible, to prevent
  313. certain web browsers from picking an unsafe MIME type.
  314. - Prevented the database API from executing multiple queries at once on MySQL,
  315. if the site's PHP version is new enough to do so. This is a secondary defense
  316. against SQL injection (API change: https://www.drupal.org/node/2463973).
  317. - Fixed a bug in the Drupal 6 to Drupal 7 upgrade path which caused the upgrade
  318. to fail when there were multiple file records pointing to the same file.
  319. - Numerous small bug fixes.
  320. - Numerous API documentation improvements.
  321. - Additional automated test coverage.
  322. Drupal 7.39, 2015-08-19
  323. -----------------------
  324. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-003.
  325. Drupal 7.38, 2015-06-17
  326. -----------------------
  327. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-002.
  328. Drupal 7.37, 2015-05-07
  329. -----------------------
  330. - Fixed a regression in Drupal 7.36 which caused certain kinds of content types
  331. to become disabled if they were defined by a no-longer-enabled module.
  332. - Removed a confusing description regarding automatic time zone detection from
  333. the user account form (minor UI and data structure change).
  334. - Allowed custom HTML tags with a dash in the name to pass through filter_xss()
  335. when specified in the list of allowed tags.
  336. - Allowed hook_field_schema() implementations to specify indexes for fields
  337. based on a fixed-length column prefix (rather than the entire column), as was
  338. already allowed in hook_schema() implementations.
  339. - Fixed PDO exceptions on PostgreSQL when accessing invalid entity URLs.
  340. - Added a sites/all/libraries folder to the codebase, with instructions for
  341. using it.
  342. - Added a description to the "Administer text formats and filters" permission
  343. on the Permissions page (string change).
  344. - Numerous small bug fixes.
  345. - Numerous API documentation improvements.
  346. - Additional automated test coverage.
  347. Drupal 7.36, 2015-04-01
  348. -----------------------
  349. - Added a 'file_public_schema' variable which allows modules that define
  350. publicly-accessible streams in hook_stream_wrappers() to bypass file download
  351. access checks when processing managed file upload fields.
  352. - Fixed a bug that caused database query tags not to be added to search-related
  353. database queries under many circumstances, and which prevented the
  354. corresponding hook_query_TAG_alter() implementations from being called.
  355. - Fixed the "for" attribute on managed file upload field labels to improve
  356. accessibility (minor markup change).
  357. - Added a 'javascript_always_use_jquery' variable which can be set to FALSE by
  358. sites that may not need jQuery loaded on all pages, and a 'requires_jquery'
  359. option to drupal_add_js() which modules can set to FALSE when adding
  360. JavaScript files that have no dependency on jQuery (API addition:
  361. https://www.drupal.org/node/2462717).
  362. - Fixed incorrect foreign keys in the User module's role_permission and
  363. users_roles database tables.
  364. - Changed permission descriptions throughout Drupal core to consistently link
  365. to relevant administrative pages, regardless of whether the user viewing the
  366. Permissions page can view the page being linked to (minor UI change).
  367. - Fixed the drupal_add_region_content() function so that it actually adds
  368. content to the page.
  369. - Added an 'image_suppress_itok_output' variable to allow sites already using
  370. the existing 'image_allow_insecure_derivatives' variable to also prevent
  371. security tokens from appearing in image derivative URLs.
  372. - Fixed double-escaping of theme names in the Block module administrative
  373. interface (minor string change).
  374. - Added basic support for Xdebug when running automated tests.
  375. - Fixed a bug which caused previewing a node to remove elements from the node
  376. being edited. With this fix, calling node_preview() will no longer modify the
  377. passed-in node object (minor API change).
  378. - Added a user_has_role() function to check whether a user has a particular
  379. role (API addition: https://www.drupal.org/node/2462411).
  380. - Fixed installation failures when an opcode cache is enabled.
  381. - Fixed a bug in the Drupal 6 to Drupal 7 upgrade path which caused private
  382. files to be inaccessible.
  383. - Fixed a bug in the Drupal 6 to Drupal 7 upgrade path which caused user
  384. pictures to be lost.
  385. - Fixed missing language code in hook_field_attach_view_alter() when it is
  386. invoked from field_view_field().
  387. - Stopped sending ETag and Last-Modified headers for uncached page requests,
  388. since they break caching for certain Varnish and Nginx configurations.
  389. - Changed the Simpletest module to allow PSR-4 test classes to be used in
  390. Drupal 7.
  391. - Fixed a fatal error that occurred when using the Comment module's "Unpublish
  392. comment containing keyword(s)" action.
  393. - Changed the "lang" attribute on language links to "xml:lang" so it validates
  394. as XHTML (minor markup change).
  395. - Prevented the form API from allowing arrays to be submitted for various form
  396. elements, such as textfields, textareas, and password fields (API change:
  397. https://www.drupal.org/node/2462723).
  398. - Fixed a bug in the Contact module which caused the global user object to have
  399. the incorrect name and e-mail address during the remainder of the page
  400. request after the contact form is submitted.
  401. - Numerous small bug fixes.
  402. - Numerous API documentation improvements.
  403. - Additional automated test coverage.
  404. Drupal 7.35, 2015-03-18
  405. -----------------------
  406. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2015-001.
  407. Drupal 7.34, 2014-11-19
  408. -----------------------
  409. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-006.
  410. Drupal 7.33, 2014-11-07
  411. -----------------------
  412. - Began storing the file modification time of each module and theme in the
  413. {system} database table so that contributed modules can use it to identify
  414. recently changed modules and themes (minor data structure change to the
  415. return value of system_get_info() and other related functions).
  416. - Added a "Did you mean?" feature to the run-tests.sh script for running
  417. automated tests from the command line, to help developers who are attempting
  418. to run a particular test class or group.
  419. - Changed the date format used in various HTTP headers output by Drupal core
  420. from RFC 1123 format to RFC 7231 format.
  421. - Added a "block_cache_bypass_node_grants" variable to allow sites which have
  422. node access modules enabled to use the block cache if desired (API addition).
  423. - Made image derivative generation HTTP requests return a 404 error (rather
  424. than a 500 error) when the source image does not exist.
  425. - Fixed a bug which caused user pictures to be removed from the user object
  426. after saving, and resulted in data loss if the user account was subsequently
  427. re-saved.
  428. - Fixed a bug in which field_has_data() did not return TRUE for fields that
  429. only had data in older entity revisions, leading to loss of the field's data
  430. when the field configuration was edited.
  431. - Fixed a bug which caused the Ajax progress throbber to appear misaligned in
  432. many situatons (minor styling change).
  433. - Prevented the Bartik theme from lower-casing the "Permalink" link on
  434. comments, for improved multilingual support (minor UI change).
  435. - Added a "preferred_menu_links" tag to the database query that is used by
  436. menu_link_get_preferred() to find the preferred menu link for a given path,
  437. to make it easier to alter.
  438. - Increased the maximum allowed length of block titles to 255 characters
  439. (database schema change to the {block} table).
  440. - Removed the Field module's field_modules_uninstalled() function, since it did
  441. not do anything when it was invoked.
  442. - Added a "theme_hook_original" variable to templates and theme functions and
  443. an optional sitewide theme debug mode, to provide contextual information in
  444. the page's HTML to theme developers. The theme debug mode is based on the one
  445. used with Twig in Drupal 8 and can be accessed by setting the "theme_debug"
  446. variable to TRUE (API addition).
  447. - Added an entity_view_mode_prepare() API function to allow entity-defining
  448. modules to properly invoke hook_entity_view_mode_alter(), and used it
  449. throughout Drupal core to fix bugs with the invocation of that hook (API
  450. change: https://www.drupal.org/node/2369141).
  451. - Security improvement: Made the database API's orderBy() method sanitize the
  452. sort direction ("ASC" or "DESC") for queries built with db_select(), so that
  453. calling code does not have to.
  454. - Changed the RDF module to consistently output RDF metadata for nodes and
  455. comments near where the node is rendered in the HTML (minor markup and data
  456. structure change).
  457. - Added an HTML class to RDFa metatags throughout Drupal to prevent them from
  458. accidentally affecting the site appearance (minor markup change).
  459. - Fixed a bug in the Unicode requirements check which prevented installing
  460. Drupal on PHP 5.6.
  461. - Fixed a bug which caused drupal_get_bootstrap_phase() to abort the bootstrap
  462. when called early in the page request.
  463. - Renamed the "Search result" view mode to "Search result highlighting input"
  464. to better reflect how it is used (UI change).
  465. - Improved database queries generated by EntityFieldQuery in the case where
  466. delta or language condition groups are used, to reduce the number of INNER
  467. JOINs (this is a minor data structure change affecting code which implements
  468. hook_query_alter() on these queries).
  469. - Removed special-case behavior for file uploads which allowed user #1 to
  470. bypass maximum file size and user quota limits.
  471. - Numerous small bug fixes.
  472. - Numerous API documentation improvements.
  473. - Additional automated test coverage.
  474. Drupal 7.32, 2014-10-15
  475. -----------------------
  476. - Fixed security issues (SQL injection). See SA-CORE-2014-005.
  477. Drupal 7.31, 2014-08-06
  478. -----------------------
  479. - Fixed security issues (denial of service). See SA-CORE-2014-004.
  480. Drupal 7.30, 2014-07-24
  481. -----------------------
  482. - Fixed a regression introduced in Drupal 7.29 that caused files or images
  483. attached to taxonomy terms to be deleted when the taxonomy term was edited
  484. and resaved (and other related bugs with contributed and custom modules).
  485. - Added a warning on the permissions page to recommend restricting access to
  486. the "View site reports" permission to trusted administrators. See
  487. DRUPAL-PSA-2014-002.
  488. - Numerous API documentation improvements.
  489. - Additional automated test coverage.
  490. Drupal 7.29, 2014-07-16
  491. -----------------------
  492. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-003.
  493. Drupal 7.28, 2014-05-08
  494. -----------------------
  495. - Fixed a regression introduced in Drupal 7.27 that caused JavaScript to break
  496. on older browsers (such as Internet Explorer 8 and earlier) when Ajax was
  497. used.
  498. - Increased the timeout used by the Update Manager module when it fetches data
  499. from drupal.org (from 5 seconds to 30 seconds), to work around a problem
  500. which causes incomplete information about security updates to be presented to
  501. site administrators. This fix may lead to a performance slowdown on the
  502. Update Manager administration pages, when installing Drupal distributions,
  503. and (for sites that use the automated cron feature) on occasional page loads
  504. by site visitors.
  505. - Fixed the behavior of the token system's "[node:summary]" token when the body
  506. field does not have a manual summary.
  507. - Changed the behavior of db_query_temporary() so that it works on SELECT
  508. queries even when they have leading comments/whitespace. A side effect of
  509. this fix is that db_query_temporary() will now fail with an error if it is
  510. ever used on non-SELECT queries.
  511. - Added a "node_admin_filter" tag to the database query used to build the list
  512. of nodes on the content administration page, to make it easier to alter.
  513. - Made the cron queue system log any exceptions that are thrown while an item
  514. in the queue is being processed, rather than stopping the entire PHP request.
  515. - Improved screen reader support by adding an aria-live HTML attribute to file
  516. upload fields when there is an error uploading the file (minor markup
  517. change).
  518. - Made the pager on the Tracker module listing pages show the same number of
  519. items as other pagers throughout Drupal core (minor UI change).
  520. - Fixed a bug which caused caches not to be properly cleared when a file entity
  521. was saved or deleted.
  522. - Added several missing countries to the default list returned by
  523. country_get_list() (string change).
  524. - Replaced the term "weight" with "influence" in the content ranking settings
  525. for search, and added help text for administrators (string change).
  526. - Fixed untranslatable text strings in the administrative interface for the
  527. "Crop" effect provided by the Image module (minor string change).
  528. - Fixed a bug in the Taxonomy module update function introduced in Drupal 7.26
  529. that caused memory and CPU problems on sites with very large numbers of
  530. unpublished nodes.
  531. - Numerous small bug fixes.
  532. - Numerous API documentation improvements.
  533. - Additional automated test coverage.
  534. Drupal 7.27, 2014-04-16
  535. -----------------------
  536. - Fixed security issues (information disclosure). See SA-CORE-2014-002.
  537. Drupal 7.26, 2014-01-15
  538. -----------------------
  539. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-001.
  540. Drupal 7.25, 2014-01-02
  541. -----------------------
  542. - Fixed a bug in node_save() which prevented the saved node from being updated
  543. in hook_node_insert() and other similar hooks.
  544. - Added a meta tag to install.php to prevent it from being indexed by search
  545. engines even when Drupal is installed in a subfolder (minor markup change).
  546. - Fixed a bug in the database API that caused frequent deadlock errors when
  547. running merge queries on some servers.
  548. - Performance improvement: Prevented block rehashing from writing blocks to the
  549. database on every cache clear and cron run when the blocks have not changed.
  550. This fix results in an extra 'saved' key which is added and set to TRUE for
  551. each block returned by _block_rehash() that actually is saved to the database
  552. (data structure change).
  553. - Added an optional 'skip on cron' parameter to hook_cron_queue_info() to allow
  554. queues to avoid being automatically processed on cron runs (API addition).
  555. - Fixed a bug which caused hook_block_view_MODULE_DELTA_alter() to never be
  556. invoked if the block delta had a hyphen in it. To implement the hook when the
  557. block delta has a hyphen, modules should now replace hyphens with underscores
  558. when constructing the function name for the hook implementation.
  559. - Fixed a bug which caused cached pages to sometimes be sent to the browser
  560. with incorrect compression. The fix adds a new 'page_compressed' key to the
  561. $cache->data array returned by drupal_page_get_cache() (minor data structure
  562. change).
  563. - Fixed broken tests on PHP 5.5.
  564. - Made the File and Image modules more robust when saving entities that have
  565. deleted files attached. The code in file_field_presave() will now remove the
  566. record of the deleted file from the entity before saving (minor data
  567. structure change).
  568. - Standardized menu callback functions throughout Drupal core to return
  569. MENU_NOT_FOUND and MENU_ACCESS_DENIED rather than printing their own "page
  570. not found" or "access denied" pages (minor API change in the return value of
  571. these functions under some circumstances).
  572. - Fixed a bug in which caches were not properly cleared when a node was deleted
  573. via the administrative interface.
  574. - Changed the Bartik theme to render content contained in <pre>, <code> and
  575. similar tags in a larger font size, so it is easier to read.
  576. - Fixed a bug in the Search module that caused exceptions to be thrown during
  577. searches if the server was not configured to represent decimal points as a
  578. period.
  579. - Fixed a regression in the Image module that made image_style_url() not work
  580. when a relative path (rather than a complete file URI) was passed to it.
  581. - Added an optional feature to the Statistics module to allow node views to be
  582. tracked by Ajax requests rather than during the server-side generation of the
  583. page. This allows the node counter to work on sites that use external page
  584. caches (string change and new administrative option:
  585. https://drupal.org/node/2164069).
  586. - Added a link to the drupal.org documentation page for cron to the Cron
  587. settings page (string change).
  588. - Added a 'drupal_anonymous_user_object' variable to allow the anonymous user
  589. object returned by drupal_anonymous_user() to be overridden with a classed
  590. object (API addition).
  591. - Changed the database API to allow inserts based on a SELECT * query to work
  592. correctly.
  593. - Changed the database schema of the {file_managed} table to allow Drupal to
  594. manage files larger than 4 GB.
  595. - Changed the File module's hook_field_load() implementation to prevent file
  596. entity properties which have the same name as file or image field properties
  597. from overwriting the field properties (minor API change).
  598. - Numerous small bug fixes.
  599. - Numerous API documentation improvements.
  600. - Additional automated test coverage.
  601. Drupal 7.24, 2013-11-20
  602. -----------------------
  603. - Fixed security issues (multiple vulnerabilities), see SA-CORE-2013-003.
  604. Drupal 7.23, 2013-08-07
  605. -----------------------
  606. - Fixed a fatal error on PostgreSQL databases when updating the Taxonomy module
  607. from Drupal 6 to Drupal 7.
  608. - Fixed the default ordering of CSS files for sites using right-to-left
  609. languages, to consistently place the right-to-left override file immediately
  610. after the CSS it is overriding (API change: https://drupal.org/node/2058463).
  611. - Added a drupal_check_memory_limit() API function to allow the memory limit to
  612. be checked consistently (API addition).
  613. - Changed the default web.config file for IIS servers to allow favicon.ico
  614. files which are present in the filesystem to be accessed.
  615. - Fixed inconsistent support for the 'tel' protocol in Drupal's URL filtering
  616. functions.
  617. - Performance improvement: Allowed all hooks to be included in the
  618. module_implements() cache, even those that are only invoked on HTTP POST
  619. requests.
  620. - Made the database system replace truncate queries with delete queries when
  621. inside a transaction, to fix issues with PostgreSQL and other databases.
  622. - Fixed a bug which caused nested contextual links to display improperly.
  623. - Fixed a bug which prevented cached image derivatives from being flushed for
  624. private files and other non-default file schemes.
  625. - Fixed drupal_render() to always return an empty string when there is no
  626. output, rather than sometimes returning NULL (minor API change).
  627. - Added protection to cache_clear_all() to ensure that non-cache tables cannot
  628. be truncated (API addition: a new isValidBin() method has been added to the
  629. default database cache implementation).
  630. - Changed the default .htaccess file to support HTTP authorization in CGI
  631. environments.
  632. - Changed the password reset form to pre-fill the username when requested via a
  633. URL query parameter, and used this in the error message that appears after a
  634. failed login attempt (minor data structure and behavior change).
  635. - Fixed broken support for foreign keys in the field API.
  636. - Fixed "No active batch" error when a user cancels their own account.
  637. - Added a description to the "access content overview" permission on the
  638. permissions page (string change).
  639. - Added a drupal_array_diff_assoc_recursive() function to allow associative
  640. arrays to be compared recursively (API addition).
  641. - Added human-readable labels to image styles, in addition to the existing
  642. machine-readable name (API change: https://drupal.org/node/2058503).
  643. - Moved the drupal_get_hash_salt() function to bootstrap.inc and used it in
  644. additional places in the code, for added security in the case where there is
  645. no hash salt in settings.php.
  646. - Fixed a regression in Drupal 7.22 that caused internal server errors for
  647. sites running on very old Apache 1.x web servers.
  648. - Numerous small bug fixes.
  649. - Numerous API documentation improvements.
  650. - Additional automated test coverage.
  651. Drupal 7.22, 2013-04-03
  652. -----------------------
  653. - Allowed the drupal_http_request() function to be overridden so that
  654. additional HTTP request capabilities can be added by contributed modules.
  655. - Changed the Simpletest module to allow PSR-0 test classes to be used in
  656. Drupal 7.
  657. - Removed an unnecessary "Content-Disposition" header from private file
  658. downloads; it prevented many private files from being viewed inline in a web
  659. browser.
  660. - Changed various field API functions to allow them to optionally act on a
  661. single field within an entity (API addition: http://drupal.org/node/1825844).
  662. - Fixed a bug which prevented Drupal's file transfer functionality from working
  663. on some PHP 5.4 systems.
  664. - Fixed incorrect log message when theme() is called for a theme hook that does
  665. not exist (minor string change).
  666. - Fixed Drupal's token-replacement system to allow spaces in the token value.
  667. - Changed the default behavior after a user creates a node they do not have
  668. access to view. The user will now be redirected to the front page rather than
  669. an access denied page.
  670. - Fixed a bug which prevented empty HTTP headers (such as "0") from being set.
  671. (Minor behavior change: Callers of drupal_add_http_header() must now set
  672. FALSE explicitly to prevent a header from being sent at all; this was already
  673. indicated in the function's documentation.)
  674. - Fixed OpenID errors when more than one module implements hook_openid(). The
  675. behavior is now changed so that if more than one module tries to set the same
  676. parameter, the last module's change takes effect.
  677. - Fixed a serious documentation bug: The $name variable in the
  678. taxonomy-term.tpl.php theme template was incorrectly documented as being
  679. sanitized when in fact it is not.
  680. - Fixed a bug which prevented Drupal 6 to Drupal 7 upgrades on sites which had
  681. duplicate permission names in the User module's database tables.
  682. - Added an empty "datatype" attribute to taxonomy term and username links to
  683. make the RDFa markup upward compatible with RDFa 1.1 (minor markup addition).
  684. - Fixed a bug which caused the denial-of-service protection added in Drupal
  685. 7.20 to break certain valid image URLs that had an extra slash in them.
  686. - Fixed a bug with update queries in the SQLite database driver that prevented
  687. Drupal from being installed with SQLite on PHP 5.4.
  688. - Fixed enforced dependencies errors updating to recent versions of Drupal 7 on
  689. certain non-MySQL databases.
  690. - Refactored the Field module's caching behavior to obtain large improvements
  691. in memory usage for sites with many fields and instances (API addition:
  692. http://drupal.org/node/1915646).
  693. - Fixed entity argument not being passed to implementations of
  694. hook_file_download_access_alter(). The fix adds an additional context
  695. parameter that can be passed when calling drupal_alter() for any hook (API
  696. change: http://drupal.org/node/1882722).
  697. - Fixed broken support for translatable comment fields (API change:
  698. http://drupal.org/node/1874724).
  699. - Added an assertThemeOutput() method to Simpletest to allow tests to check
  700. that themed output matches an expected HTML string (API addition).
  701. - Added a link to "Install another module" after a module has been successfully
  702. downloaded via the Update Manager (UI change).
  703. - Added an optional "exclusive" flag to installation profile .info files which
  704. allows Drupal distributions to force a profile to be selected during
  705. installation (API addition: http://drupal.org/node/1961012).
  706. - Fixed a bug which caused the database API to not properly close database
  707. connections.
  708. - Added a link to the URL for running cron from outside the site to the Cron
  709. settings page (UI change).
  710. - Fixed a bug which prevented image styles from being reverted on PHP 5.4.
  711. - Made the default .htaccess rules protocol sensitive to improve security for
  712. sites which use HTTPS and redirect between "www" and non-"www" versions of
  713. the page.
  714. - Numerous small bug fixes.
  715. - Numerous API documentation improvements.
  716. - Additional automated test coverage.
  717. Drupal 7.21, 2013-03-06
  718. -----------------------
  719. - Allowed sites using the 'image_allow_insecure_derivatives' variable to still
  720. have partial protection from the security issues fixed in Drupal 7.20.
  721. Drupal 7.20, 2013-02-20
  722. -----------------------
  723. - Fixed security issues (denial of service). See SA-CORE-2013-002.
  724. Drupal 7.19, 2013-01-16
  725. -----------------------
  726. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2013-001.
  727. Drupal 7.18, 2012-12-19
  728. -----------------------
  729. - Fixed security issues (multiple vulnerabilities). See SA-CORE-2012-004.
  730. Drupal 7.17, 2012-11-07
  731. -----------------------
  732. - Changed the default value of the '404_fast_html' variable to have a DOCTYPE
  733. declaration.
  734. - Made it possible to use associative arrays for the 'items' variable in
  735. theme_item_list().
  736. - Fixed a bug which prevented required form elements without a title from being
  737. given an "error" class when the form fails validation.
  738. - Prevented duplicate HTML IDs from appearing when two forms are displayed on
  739. the same page and one of them is submitted with invalid data (minor markup
  740. change).
  741. - Fixed a bug which prevented Drupal 6 to Drupal 7 upgrades on sites which had
  742. stale data in the Upload module's database tables.
  743. - Fixed a bug in the States API which prevented certain types of form elements
  744. from being disabled when requested.
  745. - Allowed aggregator feed items with author names longer than 255 characters to
  746. have a truncated version saved to the database (rather than causing a fatal
  747. error).
  748. - Allowed aggregator feed items to have URLs longer than 255 characters
  749. (schema change which results in several columns in the Aggregator module's
  750. database tables changing from VARCHAR to TEXT fields).
  751. - Added hook_taxonomy_term_view() and standardized the process for rendering
  752. taxonomy terms to invoke hook_entity_view() and otherwise make it consistent
  753. with other entities (API change: http://drupal.org/node/1808870).
  754. - Added hook_entity_view_mode_alter() to allow modules to change entity view
  755. modes on display (API addition: http://drupal.org/node/1833086).
  756. - Fixed a bug which made database queries running a "LIKE" query on blob fields
  757. fail on PostgreSQL databases. This caused errors during the Drupal 6 to
  758. Drupal 7 upgrade.
  759. - Changed the hook_menu() entry for Drupal's rss.xml page to prevent extra path
  760. components from being accidentally passed to the page callback function (data
  761. structure change).
  762. - Removed a non-standard "name" attribute from Drupal's default Content-Type
  763. header for file downloads.
  764. - Fixed the theme settings form to properly clean up submitted values in
  765. $form_state['values'] when the form is submitted (data structure change).
  766. - Fixed an inconsistency by removing the colon from the end of the label on
  767. multi-valued form fields (minor string change).
  768. - Added support for 'weight' in hook_field_widget_info() to allow modules to
  769. control the order in which widgets are displayed in the Field UI.
  770. - Updated various tables in the OpenID and Book modules to use the default
  771. "empty table" text pattern (string change).
  772. - Added proxy server support to drupal_http_request().
  773. - Added "lang" attributes to language links, to better support screen readers.
  774. - Fixed double occurrence of a "ul" HTML tag on secondary local tasks in the
  775. Seven theme (markup change).
  776. - Fixed bugs which caused taxonomy vocabulary and shortcut set titles to be
  777. double-escaped. The fix replaces the taxonomy vocabulary overview page and
  778. "Edit shortcuts" menu items' title callback entries in hook_menu() with new
  779. functions that do not escape HTML characters (data structure change).
  780. - Modified the Update manager module to allow drupal.org to collect usage
  781. statistics for individual modules and themes, rather than only for entire
  782. projects.
  783. - Modified the node listing database query on Drupal's default front page to
  784. add table aliases for better query altering (this is a data structure change
  785. affecting code which implements hook_query_alter() on this query).
  786. - Improved the translatability of the "Field type(s) in use" message on the
  787. modules page (admin-facing string change).
  788. - Fixed a regression which caused a "call to undefined function
  789. drupal_find_base_themes()" fatal error under rare circumstances.
  790. - Numerous API documentation improvements.
  791. - Additional automated test coverage.
  792. Drupal 7.16, 2012-10-17
  793. -----------------------
  794. - Fixed security issues (Arbitrary PHP code execution and information
  795. disclosure). See SA-CORE-2012-003.
  796. Drupal 7.15, 2012-08-01
  797. -----------------------
  798. - Introduced a 'user_password_reset_timeout' variable to allow the 24-hour
  799. expiration for user password reset links to be adjusted (API addition).
  800. - Fixed database errors due to ambiguous column names that occurred when
  801. EntityFieldQuery was used in certain situations.
  802. - Changed the drupal_array_get_nested_value() function to return a reference
  803. (API addition).
  804. - Changed the System module's hook_block_info() implementation to assign the
  805. "Main page content" and "System help" blocks to appropriate regions by
  806. default and prevent error messages on the block administration page (data
  807. structure change).
  808. - Fixed regression: Non-node entities couldn't be accessed with
  809. EntityFieldQuery.
  810. - Fixed regression: Optional radio buttons with an empty, non-NULL default
  811. value led to an illegal choice error when none were selected.
  812. - Reorganized the testing framework to split setUp() into specific sub-methods
  813. and fix several regressions in the process.
  814. - Fixed bug which made it impossible to search for strings that have not been
  815. translated into a particular language.
  816. - Renamed the "Field" column on the Manage Fields screen to "Field type", since
  817. the former was confusing and inaccurate (UI change).
  818. - Performance improvement: Removed needless call to system_rebuild_module_data()
  819. in field_sync_field_status(), greatly speeding up bulk module enable/disable.
  820. - Fixed bug which prevented notifications from being sent when core, module, and
  821. theme updates are available.
  822. - Fixed bug which prevented sub-themes from inheriting the default values of
  823. theme settings defined by the base theme.
  824. - Fixed bug which prevented the jQuery UI Datepicker from being localized.
  825. - Made Ajax alert dialogs respect error reporting settings.
  826. - Fixed bug which prevented image styles from being deleted on PHP 5.4.
  827. - Fixed bug: Language detection by domain only worked on port 80.
  828. - Fixed regression: The first plural index on a page was not calculated
  829. correctly.
  830. - Introduced generic entity language support. Entities may now declare their
  831. language property in hook_entity_info(), and modules working with entities
  832. may access the language using entity_language() (API change:
  833. http://drupal.org/node/1626346).
  834. - Added EntityFieldQuery support for taxonomy bundles.
  835. - Fixed issue where field form structure was incomplete if field_access()
  836. returned FALSE. Instead of being incomplete, the form structure now has
  837. #access set to FALSE and field form validation is skipped (data structure
  838. change: http://drupal.org/node/1663020).
  839. - Fixed data loss issue due to field_has_data() returning inconsistent results.
  840. The fix adds an optional DANGEROUS_ACCESS_CHECK_OPT_OUT tag to entity field
  841. queries which field storage engines can respond to (API addition:
  842. http://drupal.org/node/1597378).
  843. - Fixed notice: Undefined index: default_image in image_field_prepare_view()
  844. - Numerous API documentation improvements.
  845. - Additional automated test coverage.
  846. Drupal 7.14, 2012-05-02
  847. -----------------------
  848. - Fixed "integrity constraint" fatal errors when rebuilding registry.
  849. - Fixed custom logo and favicon functionality referencing incorrect paths.
  850. - Fixed DB Case Sensitivity: Allow BINARY attribute in MySQL.
  851. - Split field_bundle_settings out per bundle.
  852. - Improve UX for machine names for fields (UI change).
  853. - Fixed User pictures are not removed properly.
  854. - Fixed HTTPS sessions not working in all cases.
  855. - Fixed Regression: Required radios throw illegal choice error when none
  856. selected.
  857. - Fixed allow autocompletion requests to include slashes.
  858. - Eliminate $user->cache and {session}.cache in favor of
  859. $_SESSION['cache_expiration'][$bin] (Performance).
  860. - Fixed focus jumps to tab when pressing enter on a form element within tab.
  861. - Fixed race condition in locale() - duplicates in {locales_source}.
  862. - Fixed Missing "Default image" per field instance.
  863. - Quit clobbering people's work when they click the filter tips link
  864. - Form API #states: Fix conditionals to allow OR and XOR constructions.
  865. - Fixed Focus jumps to tab when pressing enter on a form element within tab.
  866. (Accessibility)
  867. - Improved performance of node_access queries.
  868. - Fixed Fieldsets inside vertical tabs have no title and can't be collapsed.
  869. - Reduce size of cache_menu table (Performance).
  870. - Fixed unnecessary aggregation of CSS/JS (Performance).
  871. - Fixed taxonomy_autocomplete() produces SQL error for nonexistent field.
  872. - Fixed HTML filter is not run first by default, despite default weight.
  873. - Fixed Overlay does not work with prefixed URL paths.
  874. - Better debug info for field errors (string change).
  875. - Fixed Data corruption in comment IDs (results in broken threading on
  876. PostgreSQL).
  877. - Fixed machine name not editable if every character is replaced.
  878. - Fixed user picture not appearing in comment preview (Markup change).
  879. - Added optional vid argument for taxonomy_get_term_by_name().
  880. - Fixed Invalid Unicode code range in PREG_CLASS_UNICODE_WORD_BOUNDARY fails
  881. with PCRE 8.30.
  882. - Fixed {trigger_assignments()}.hook has only 32 characters, is too short.
  883. - Numerous fixes to run-tests.sh.
  884. - Fixed Tests in profiles/[name]/modules cannot be run and cannot use a
  885. different profile for running tests.
  886. - Numerous JavaScript performance fixes.
  887. - Numerous documentation fixes.
  888. - Fixed All pager links have an 'active' CSS class.
  889. - Numerous upgrade path fixes; notably:
  890. - system_update_7061() fails on inserting files with same name but different
  891. case.
  892. - system_update_7061() converts filepaths too aggressively.
  893. - Trigger upgrade path: Node triggers removed when upgrading to 7-x from 6.25.
  894. Drupal 7.13, 2012-05-02
  895. -----------------------
  896. - Fixed security issues (Multiple vulnerabilities), see SA-CORE-2012-002.
  897. Drupal 7.12, 2012-02-01
  898. -----------------------
  899. - Fixed bug preventing custom menus from receiving an active trail.
  900. - Fixed hook_field_delete() no longer invoked during field_purge_data().
  901. - Fixed bug causing entity info cache to not be cleared with the rest of caches.
  902. - Fixed file_unmanaged_copy() fails with Drupal 7.7+ and safe_mode() or
  903. open_basedir().
  904. - Fixed Nested transactions throw exceptions when they got out of scope.
  905. - Fixed bugs with the Return-Path when sending mail on both Windows and
  906. non-Windows systems.
  907. - Fixed bug with DrupalCacheArray property visibility preventing others from
  908. extending it (API change: http://drupal.org/node/1422264).
  909. - Fixed bug with handling of non-ASCII characters in file names (API change:
  910. http://drupal.org/node/1424840).
  911. - Reconciled field maximum length with database column size in image and
  912. aggregator modules.
  913. - Fixes to various core JavaScript files to allow for minification and
  914. aggregation.
  915. - Fixed Prevent tests from deleting main installation's tables when
  916. parent::setUp() is not called.
  917. - Fixed several Poll module bugs.
  918. - Fixed several Shortcut module bugs.
  919. - Added new hook_system_theme_info() to provide ability for contributed modules
  920. to test theme functionality.
  921. - Added ability to cancel mail sending from hook_mail_alter().
  922. - Added support for configurable PDO connection options, enabling master-master
  923. database replication.
  924. - Numerous improvements to tests and test runner to pave the way for faster test
  925. runs.
  926. - Expanded test coverage.
  927. - Numerous API documentation improvements.
  928. - Numerous performance improvements, including token replacement and render
  929. cache.
  930. Drupal 7.11, 2012-02-01
  931. -----------------------
  932. - Fixed security issues (Multiple vulnerabilities), see SA-CORE-2012-001.
  933. Drupal 7.10, 2011-12-05
  934. -----------------------
  935. - Fixed Content-Language HTTP header to not cause issues with Drush 5.x.
  936. - Reduce memory usage of theme registry (performance).
  937. - Fixed PECL upload progress bar for FileField
  938. - Fixed running update.php doesn't always clear the cache.
  939. - Fixed PDO exceptions on long titles.
  940. - Fixed Overlay redirect does not include query string.
  941. - Fixed D6 modules satisfy D7 module dependencies.
  942. - Fixed the ordering of module hooks when using module_implements_alter().
  943. - Fixed "floating" submit buttons during AJAX requests.
  944. - Fixed timezone selected on install not propogating to admin account.
  945. - Added msgctx context to JS translation functions, for feature parity with t().
  946. - Profiles' .install files now available during hook_install_tasks().
  947. - Added test coverage of 7.0 -> 7.x upgrade path.
  948. - Numerous notice fixes.
  949. - Numerous documentation improvements.
  950. - Additional automated test coverage.
  951. Drupal 7.9, 2011-10-26
  952. ----------------------
  953. - Critical fixes to OpenID to spec violations that could allow for
  954. impersonation in certain scenarios. Existing OpenID users should see
  955. http://drupal.org/node/1120290#comment-5092796 for more information on
  956. transitioning.
  957. - Fixed files getting lost when adding multiple files to multiple file fields
  958. at the same time.
  959. - Improved usability of the clean URL test screens.
  960. - Restored height/width attributes on images run through the theme system.
  961. - Fixed usability bug with first password field being pre-filled by certain
  962. browser plugins.
  963. - Fixed file_usage_list() so that it can return more than one result.
  964. - Fixed bug preventing preview of private images on node form.
  965. - Fixed PDO error when inserting an aggregator title longer than 255 characters.
  966. - Spelled out what TRADITIONAL means in MySQL sql_mode.
  967. - Deprecated "!=" operator for DBTNG; should be "<>".
  968. - Added two new API functions (menu_tree_set_path()/menu_tree_get_path()) were
  969. added in order to enable setting the active menu trail for dynamically
  970. generated menu paths.
  971. - Added new "fast 404" capability in settings.php to bypass Drupal bootstrap
  972. when serving 404 pages for certain file types.
  973. - Added format_string() function which can perform string munging ala the t()
  974. function without the overhead of the translation system.
  975. - Numerous #states system fixes.
  976. - Numerous EntityFieldQuery, DBTNG, and SQLite fixes.
  977. - Numerous Shortcut module fixes.
  978. - Numerous language system fixes.
  979. - Numerous token fixes.
  980. - Numerous CSS fixes.
  981. - Numerous upgrade path fixes.
  982. - Numerous minor string fixes.
  983. - Numerous notice fixes.
  984. Drupal 7.8, 2011-08-31
  985. ----------------------
  986. - Fixed critical upgrade path issue with multilingual sites, leading to lost
  987. content.
  988. - Numerous fixes to upgrade path, preventing fatal errors due to incorrect
  989. dependencies.
  990. - Fixed issue with saving files on hosts with open_basedir restrictions.
  991. - Fixed Update manger error when used with Overlay.
  992. - Fixed RTL support in Seven administration theme and Overlay.
  993. - Fixes to nested transaction support.
  994. - Introduced performance pattern to reduce Drupal core's RAM usage.
  995. - Added support for HTML 5 tags to filter_xss_admin().
  996. - Added exception handling to cron.
  997. - Added new hook hook_field_widget_form_alter() for contribtued modules.
  998. - element_validate_*() functions now available to contrib.
  999. - Added new maintainers for several subsystems.
  1000. - Numerous testing system improvements.
  1001. - Numerous markup and CSS fixes.
  1002. - Numerous poll module fixes.
  1003. - Numerous notice/warning fixes.
  1004. - Numerous documentation fixes.
  1005. - Numerous token fixes.
  1006. Drupal 7.7, 2011-07-27
  1007. ----------------------
  1008. - Fixed VERSION string.
  1009. Drupal 7.6, 2011-07-27
  1010. ----------------------
  1011. - Fixed support for remote streamwrappers.
  1012. - AJAX now binds to 'click' instead of 'mousedown'.
  1013. - 'Translatable' flag on fields created in UI now defaults to FALSE, to match those created via the API.
  1014. - Performance enhancement to permissions page on large numbers of permissions.
  1015. - More secure password generation.
  1016. - Fix for temporary directory on Windows servers.
  1017. - run-tests.sh now uses proc_open() instead of pcntl_fork() for better Windows support.
  1018. - Numerous upgrade path fixes.
  1019. - Numerous documentation fixes.
  1020. - Numerous notice fixes.
  1021. - Numerous fixes to improve PHP 5.4 support.
  1022. - Numerous RTL improvements.
  1023. Drupal 7.5, 2011-07-27
  1024. ----------------------
  1025. - Fixed security issue (Access bypass), see SA-CORE-2011-003.
  1026. Drupal 7.4, 2011-06-29
  1027. ----------------------
  1028. - Rolled back patch that caused fatal errors in CTools, Feeds, and other modules using the class registry.
  1029. - Fixed critical bug with saving default images.
  1030. - Fixed fatal errors when uninstalling some modules.
  1031. - Added workaround for MySQL transaction support breaking on DDL statments.
  1032. - Improved page caching with external caching systems.
  1033. - Fix to Batch API, which was terminating too early.
  1034. - Numerous upgrade path fixes.
  1035. - Performance fixes.
  1036. - Additional test coverage.
  1037. - Numerous documentation fixes.
  1038. Drupal 7.3, 2011-06-29
  1039. ----------------------
  1040. - Fixed security issue (Access bypass), see SA-CORE-2011-002.
  1041. Drupal 7.2, 2011-05-25
  1042. ----------------------
  1043. - Added a default .gitignore file.
  1044. - Improved PostgreSQL and SQLite support.
  1045. - Numerous critical performance improvements.
  1046. - Numerous critical fixes to the upgrade path.
  1047. - Numerous fixes to language and translation systems.
  1048. - Numerous fixes to AJAX and #states systems.
  1049. - Improvements to the locking system.
  1050. - Numerous documentation fixes.
  1051. - Numerous styling and theme system fixes.
  1052. - Numerous fixes for schema mis-matches between Drupal 6 and 7.
  1053. - Minor internal API clean-ups.
  1054. Drupal 7.1, 2011-05-25
  1055. ----------------------
  1056. - Fixed security issues (Cross site scripting, File access bypass), see SA-CORE-2011-001.
  1057. Drupal 7.0, 2011-01-05
  1058. ----------------------
  1059. - Database:
  1060. * Fully rewritten database layer utilizing PHP 5's PDO abstraction layer.
  1061. * Drupal now requires MySQL >= 5.0.15 or PostgreSQL >= 8.3.
  1062. * Added query builders for INSERT, UPDATE, DELETE, MERGE, and SELECT queries.
  1063. * Support for master/slave replication, transactions, multi-insert queries,
  1064. and other features.
  1065. * Added support for the SQLite database engine.
  1066. * Default to InnoDB engine, rather than MyISAM, on MySQL when available.
  1067. This offers increased scalability and data integrity.
  1068. - Security:
  1069. * Protected cron.php -- cron will only run if the proper key is provided.
  1070. * Implemented a pluggable password system and much stronger password hashes
  1071. that are compatible with the Portable PHP password hashing framework.
  1072. * Rate limited login attempts to prevent brute-force password guessing, and
  1073. improved the flood control API to allow variable time windows and
  1074. identifiers for limiting user access to resources.
  1075. * Transformed the "Update status" module into the "Update manager" which
  1076. can securely install or update modules and themes via a web interface.
  1077. - Usability:
  1078. * Added contextual links (a.k.a. local tasks) to page elements, such as
  1079. blocks, nodes, or comments, which allows to perform the most common tasks
  1080. with a single click only.
  1081. * Improved installer requirements check.
  1082. * Improved support for integration of WYSIWYG editors.
  1083. * Implemented drag-and-drop positioning for input format listings.
  1084. * Implemented drag-and-drop positioning for language listing.
  1085. * Implemented drag-and-drop positioning for poll options.
  1086. * Provided descriptions and human-readable names for user permissions.
  1087. * Removed comment controls for users.
  1088. * Removed display order settings for comment module. Comment display
  1089. order can now be customized using the Views module.
  1090. * Removed the 'related terms' feature from taxonomy module since this can
  1091. now be achieved with Field API.
  1092. * Added additional features to the default installation profile, and
  1093. implemented a "slimmed down" profile designed for developers.
  1094. * Added a built-in, automated cron run feature, which is triggered by site
  1095. visitors.
  1096. * Added an administrator role which is assigned all permissions for
  1097. installed modules automatically.
  1098. * Image toolkits are now provided by modules (rather than requiring a
  1099. manual file copy to the includes directory).
  1100. * Added an edit tab to taxonomy term pages.
  1101. * Redesigned password strength validator.
  1102. * Redesigned the add content type screen.
  1103. * Highlight duplicate URL aliases.
  1104. * Renamed "input formats" to "text formats".
  1105. * Moved text format permissions to the main permissions page.
  1106. * Added configurable ability for users to cancel their own accounts.
  1107. * Added "vertical tabs", a reusable interface component that features
  1108. automatic summaries and increases usability.
  1109. * Replaced fieldsets on node edit and add pages with vertical tabs.
  1110. - Performance:
  1111. * Improved performance on uncached page views by loading multiple core
  1112. objects in a single database query.
  1113. * Improved performance for logged-in users by reducing queries for path
  1114. alias lookups.
  1115. * Improved support for HTTP proxies (including reverse proxies), allowing
  1116. anonymous page views to be served entirely from the proxy.
  1117. - Documentation:
  1118. * Hook API documentation now included in Drupal core.
  1119. - News aggregator:
  1120. * Added OPML import functionality for RSS feeds.
  1121. * Optionally, RSS feeds may be configured to not automatically generate feed blocks.
  1122. - Search:
  1123. * Added support for language-aware searches.
  1124. - Aggregator:
  1125. * Introduced architecture that allows pluggable parsers and processors for
  1126. syndicating RSS and Atom feeds.
  1127. * Added options to suspend updating specific feeds and never discard feeds
  1128. items.
  1129. - Testing:
  1130. * Added test framework and tests.
  1131. - Improved time zone support:
  1132. * Drupal now uses PHP's time zone database when rendering dates in local
  1133. time. Site-wide and user-configured time zone offsets have been converted
  1134. to time zone names, e.g. Africa/Abidjan.
  1135. * In some cases the upgrade and install scripts do not choose the preferred
  1136. site default time zone. The automatically-selected time zone can be
  1137. corrected at admin/config/regional/settings.
  1138. * If your site is being upgraded from Drupal 6 and you do not have the
  1139. contributed date or event modules installed, user time zone settings will
  1140. fallback to the system time zone and will have to be reconfigured by each user.
  1141. * User-configured time zones now serve as the default time zone for PHP
  1142. date/time functions.
  1143. - Filter system:
  1144. * Revamped the filter API and text format storage.
  1145. * Added support for default text formats to be assigned on a per-role basis.
  1146. * Refactored the HTML corrector to take advantage of PHP 5 features.
  1147. - User system:
  1148. * Added clean API functions for creating, loading, updating, and deleting
  1149. user roles and permissions.
  1150. * Refactored the "access rules" component of user module: The user module
  1151. now provides a simple interface for blocking single IP addresses. The
  1152. previous functionality in the user module for restricting certain e-mail
  1153. addresses and usernames is now available as a contributed module. Further,
  1154. IP address range blocking is no longer supported and should be implemented
  1155. at the operating system level.
  1156. * Removed per-user themes: Contributed modules with similar functionality
  1157. are available.
  1158. - OpenID:
  1159. * Added support for Gmail and Google Apps for Domain identifiers. Users can
  1160. now login with their user@example.com identifier when example.com is powered
  1161. by Google.
  1162. * Made the OpenID module more pluggable.
  1163. - Added code registry:
  1164. * Using the registry, modules declare their includable files via their .info file,
  1165. allowing Drupal to lazy-load classes and interfaces as needed.
  1166. - Theme system:
  1167. * Removed the Bluemarine, Chameleon and Pushbutton themes. These themes live
  1168. on as contributed themes (http://drupal.org/project/bluemarine,
  1169. http://drupal.org/project/chameleon and http://drupal.org/project/pushbutton).
  1170. * Added Stark theme to make analyzing Drupal's default HTML and CSS easier.
  1171. * Added Seven as the default administration theme.
  1172. * Variable preprocessing of theme hooks prior to template rendering now goes
  1173. through two phases: a 'preprocess' phase and a new 'process' phase. See
  1174. http://api.drupal.org/api/function/theme/7 for details.
  1175. * Theme hooks implemented as functions (rather than as templates) can now
  1176. also have preprocess (and process) functions. See
  1177. http://api.drupal.org/api/function/theme/7 for details.
  1178. * Added Bartik as the default theme.
  1179. - File handling:
  1180. * Files are now first class Drupal objects with file_load(), file_save(),
  1181. and file_validate() functions and corresponding hooks.
  1182. * The file_move(), file_copy() and file_delete() functions now operate on
  1183. file objects and invoke file hooks so that modules are notified and can
  1184. respond to changes.
  1185. * For the occasions when only basic file manipulation are needed--such as
  1186. uploading a site logo--that don't require the overhead of databases and
  1187. hooks, the current unmanaged copy, move and delete operations have been
  1188. preserved but renamed to file_unmanaged_*().
  1189. * Rewrote file handling to use PHP stream wrappers to enable support for
  1190. both public and private files and to support pluggable storage mechanisms
  1191. and access to remote resources (e.g. S3 storage or Flickr photos).
  1192. * The mime_extension_mapping variable has been removed. Modules that need to
  1193. alter the default MIME type extension mappings should implement
  1194. hook_file_mimetype_mapping_alter().
  1195. * Added the hook_file_url_alter() hook, which makes it possible to serve
  1196. files from a CDN.
  1197. * Added a field specifically for uploading files, previously provided by
  1198. the contributed module FileField.
  1199. - Image handling:
  1200. * Improved image handling, including better support for add-on image
  1201. libraries.
  1202. * Added API and interface for creating advanced image thumbnails.
  1203. * Inclusion of additional effects such as rotate and desaturate.
  1204. * Added a field specifically for uploading images, previously provided by
  1205. the contributed module ImageField.
  1206. - Added aliased multi-site support:
  1207. * Added support for mapping domain names to sites directories.
  1208. - Added RDF support:
  1209. * Modules can declare RDF namespaces which are serialized in the <html> tag
  1210. for RDFa support.
  1211. * Modules can specify how their data structure maps to RDF.
  1212. * Added support for RDFa export of nodes, comments, terms, users, etc. and
  1213. their fields.
  1214. - Search engine optimization and web linking:
  1215. * Added a rel="canonical" link on node and comment pages to prevent
  1216. duplicate content indexing by search engines.
  1217. * Added a default rel="shortlink" link on node and comment pages that
  1218. advertises a short link as an alternative URL to third-party services.
  1219. * Meta information is now alterable by all modules before rendering.
  1220. - Field API:
  1221. * Custom data fields may be attached to nodes, users, comments and taxonomy
  1222. terms.
  1223. * Node bodies and teasers are now Field API fields instead of
  1224. being a hard-coded property of node objects.
  1225. * In addition, any other object type may register with Field API
  1226. and allow custom data fields to be attached to itself.
  1227. * Provides most of the features of the former Content Construction
  1228. Kit (CCK) module.
  1229. * Taxonomy terms are now Field API fields that can be added to any fieldable
  1230. object.
  1231. - Installer:
  1232. * Refactored the installer into an API that allows Drupal to be installed
  1233. via a command line script.
  1234. - Page organization
  1235. * Made the help text area a full featured region with blocks.
  1236. * Site mission is replaced with the highlighted content block region and
  1237. separate RSS feed description settings.
  1238. * The footer message setting was removed in favor of custom blocks.
  1239. * Made the main page content a block which can be moved and ordered
  1240. with other blocks in the same region.
  1241. * Blocks can now return structured arrays for later rendering just
  1242. like page callbacks.
  1243. - Translation system
  1244. * The translation system now supports message context (msgctxt).
  1245. * Added support for translatable fields to Field API.
  1246. - JavaScript changes
  1247. * Upgraded the core JavaScript library to jQuery version 1.4.4.
  1248. * Upgraded the jQuery Forms library to 2.52.
  1249. * Added jQuery UI 1.8.7, which allows improvements to Drupal's user
  1250. experience.
  1251. - Better module version support
  1252. * Modules now can specify which version of another module they depend on.
  1253. - Removed modules from core
  1254. * The following modules have been removed from core, because contributed
  1255. modules with similar functionality are available:
  1256. * Blog API module
  1257. * Ping module
  1258. * Throttle module
  1259. - Improved node access control system.
  1260. * All modules may now influence the access to a node at runtime, not just
  1261. the module that defined a node.
  1262. * Users may now be allowed to bypass node access restrictions without giving
  1263. them complete access to the site.
  1264. * Access control affects both published and unpublished nodes.
  1265. * Numerous other improvements to the node access system.
  1266. - Actions system
  1267. * Simplified definitions of actions and triggers.
  1268. * Removed dependency on the combination of hooks and operations. Triggers
  1269. now directly map to module hooks.
  1270. - Task handling
  1271. * Added a queue API to process many or long-running tasks.
  1272. * Added queue API support to cron API.
  1273. * Added a locking framework to coordinate long-running operations across
  1274. requests.
  1275. Drupal 6.23-dev, xxxx-xx-xx (development release)
  1276. ---------------------------
  1277. Drupal 6.22, 2011-05-25
  1278. -----------------------
  1279. - Made Drupal 6 work better with IIS and Internet Explorer.
  1280. - Fixed .po file imports to work better with custom textgroups.
  1281. - Improved code documentation at various places.
  1282. - Fixed a variety of other bugs.
  1283. Drupal 6.21, 2011-05-25
  1284. -----------------------
  1285. - Fixed security issues (Cross site scripting), see SA-CORE-2011-001.
  1286. Drupal 6.20, 2010-12-15
  1287. -----------------------
  1288. - Fixed a variety of small bugs, improved code documentation.
  1289. Drupal 6.19, 2010-08-11
  1290. -----------------------
  1291. - Fixed a variety of small bugs, improved code documentation.
  1292. Drupal 6.18, 2010-08-11
  1293. -----------------------
  1294. - Fixed security issues (OpenID authentication bypass, File download access
  1295. bypass, Comment unpublishing bypass, Actions cross site scripting),
  1296. see SA-CORE-2010-002.
  1297. Drupal 6.17, 2010-06-02
  1298. -----------------------
  1299. - Improved PostgreSQL compatibility
  1300. - Better PHP 5.3 and PHP 4 compatibility
  1301. - Better browser compatibility of CSS and JS aggregation
  1302. - Improved logging for login failures
  1303. - Fixed an incompatibility with some contributed modules and the locking system
  1304. - Fixed a variety of other bugs.
  1305. Drupal 6.16, 2010-03-03
  1306. -----------------------
  1307. - Fixed security issues (Installation cross site scripting, Open redirection,
  1308. Locale module cross site scripting, Blocked user session regeneration),
  1309. see SA-CORE-2010-001.
  1310. - Better support for updated jQuery versions.
  1311. - Reduced resource usage of update.module.
  1312. - Fixed several issues relating to support of installation profiles and
  1313. distributions.
  1314. - Added a locking framework to avoid data corruption on long operations.
  1315. - Fixed a variety of other bugs.
  1316. Drupal 6.15, 2009-12-16
  1317. -----------------------
  1318. - Fixed security issues (Cross site scripting), see SA-CORE-2009-009.
  1319. - Fixed a variety of other bugs.
  1320. Drupal 6.14, 2009-09-16
  1321. -----------------------
  1322. - Fixed security issues (OpenID association cross site request forgeries,
  1323. OpenID impersonation and File upload), see SA-CORE-2009-008.
  1324. - Changed the system modules page to not run all cache rebuilds; use the
  1325. button on the performance settings page to achieve the same effect.
  1326. - Added support for PHP 5.3.0 out of the box.
  1327. - Fixed a variety of small bugs.
  1328. Drupal 6.13, 2009-07-01
  1329. -----------------------
  1330. - Fixed security issues (Cross site scripting, Input format access bypass and
  1331. Password leakage in URL), see SA-CORE-2009-007.
  1332. - Fixed a variety of small bugs.
  1333. Drupal 6.12, 2009-05-13
  1334. -----------------------
  1335. - Fixed security issues (Cross site scripting), see SA-CORE-2009-006.
  1336. - Fixed a variety of small bugs.
  1337. Drupal 6.11, 2009-04-29
  1338. -----------------------
  1339. - Fixed security issues (Cross site scripting and limited information
  1340. disclosure), see SA-CORE-2009-005
  1341. - Fixed performance issues with the menu router cache, the update
  1342. status cache and improved cache invalidation
  1343. - Fixed a variety of small bugs.
  1344. Drupal 6.10, 2009-02-25
  1345. -----------------------
  1346. - Fixed a security issue, (Local file inclusion on Windows),
  1347. see SA-CORE-2009-003
  1348. - Fixed node_feed() so custom fields can show up in RSS feeds.
  1349. - Improved PostgreSQL compatibility.
  1350. - Fixed a variety of small bugs.
  1351. Drupal 6.9, 2009-01-14
  1352. ----------------------
  1353. - Fixed security issues, (Access Bypass, Validation Bypass and Hardening
  1354. against SQL injection), see SA-CORE-2009-001
  1355. - Made HTTP request checking more robust and informative.
  1356. - Fixed HTTP_HOST checking to work again with HTTP 1.0 clients and
  1357. basic shell scripts.
  1358. - Removed t() calls from all schema documentation. Suggested best practice
  1359. changed for contributed modules, see http://drupal.org/node/322731.
  1360. - Fixed a variety of small bugs.
  1361. Drupal 6.8, 2008-12-11
  1362. ----------------------
  1363. - Removed a previous change incompatible with PHP 5.1.x and lower.
  1364. Drupal 6.7, 2008-12-10
  1365. ----------------------
  1366. - Fixed security issues, (Cross site request forgery and Cross site scripting), see SA-2008-073
  1367. - Updated robots.txt and .htaccess to match current file use.
  1368. - Fixed a variety of small bugs.
  1369. Drupal 6.6, 2008-10-22
  1370. ----------------------
  1371. - Fixed security issues, (File inclusion, Cross site scripting), see SA-2008-067
  1372. - Fixed a variety of small bugs.
  1373. Drupal 6.5, 2008-10-08
  1374. ----------------------
  1375. - Fixed security issues, (File upload access bypass, Access rules bypass,
  1376. BlogAPI access bypass), see SA-2008-060.
  1377. - Fixed a variety of small bugs.
  1378. Drupal 6.4, 2008-08-13
  1379. ----------------------
  1380. - Fixed a security issue (Cross site scripting, Arbitrary file uploads via
  1381. BlogAPI, Cross site request forgeries and Various Upload module
  1382. vulnerabilities), see SA-2008-047.
  1383. - Improved error messages during installation.
  1384. - Fixed a bug that prevented AHAH handlers to be attached to radios widgets.
  1385. - Fixed a variety of small bugs.
  1386. Drupal 6.3, 2008-07-09
  1387. ----------------------
  1388. - Fixed security issues, (Cross site scripting, cross site request forgery,
  1389. session fixation and SQL injection), see SA-2008-044.
  1390. - Slightly modified installation process to prevent file ownership issues on
  1391. shared hosts.
  1392. - Improved PostgreSQL compatibility (rewritten queries; custom blocks).
  1393. - Upgraded to jQuery 1.2.6.
  1394. - Performance improvements to search, menu handling and form API caches.
  1395. - Fixed Views compatibility issues (Views for Drupal 6 requires Drupal 6.3+).
  1396. - Fixed a variety of small bugs.
  1397. Drupal 6.2, 2008-04-09
  1398. ----------------------
  1399. - Fixed a variety of small bugs.
  1400. - Fixed a security issue (Access bypasses), see SA-2008-026.
  1401. Drupal 6.1, 2008-02-27
  1402. ----------------------
  1403. - Fixed a variety of small bugs.
  1404. - Fixed a security issue (Cross site scripting), see SA-2008-018.
  1405. Drupal 6.0, 2008-02-13
  1406. ----------------------
  1407. - New, faster and better menu system.
  1408. - New watchdog as a hook functionality.
  1409. * New hook_watchdog that can be implemented by any module to route log
  1410. messages to various destinations.
  1411. * Expands the severity levels from 3 (Error, Warning, Notice) to the 8
  1412. levels defined in RFC 3164.
  1413. * The watchdog module is now called dblog, and is optional, but enabled by
  1414. default in the default installation profile.
  1415. * Extended the database log module so log messages can be filtered.
  1416. * Added syslog module: useful for monitoring large Drupal installations.
  1417. - Added optional e-mail notifications when users are approved, blocked, or
  1418. deleted.
  1419. - Drupal works with error reporting set to E_ALL.
  1420. - Added scripts/drupal.sh to execute Drupal code from the command line. Useful
  1421. to use Drupal as a framework to build command-line tools.
  1422. - Made signature support optional and made it possible to theme signatures.
  1423. - Made it possible to filter the URL aliases on the URL alias administration
  1424. screen.
  1425. - Language system improvements:
  1426. * Support for right to left languages.
  1427. * Language detection based on parts of the URL.
  1428. * Browser based language detection.
  1429. * Made it possible to specify a node's language.
  1430. * Support for translating posts on the site to different languages.
  1431. * Language dependent path aliases.
  1432. * Automatically import translations when adding a new language.
  1433. * JavaScript interface translation.
  1434. * Automatically import a module's translation upon enabling that module.
  1435. - Moved "PHP input filter" to a standalone module so it can be deleted for
  1436. security reasons.
  1437. - Usability:
  1438. * Improved handling of teasers in posts.
  1439. * Added sticky table headers.
  1440. * Check for clean URL support automatically with JavaScript.
  1441. * Removed default/settings.php. Instead the installer will create it from
  1442. default.settings.php.
  1443. * Made it possible to configure your own date formats.
  1444. * Remember anonymous comment posters.
  1445. * Only allow modules and themes to be enabled that have explicitly been
  1446. ported to the correct core API version.
  1447. * Can now specify the minimum PHP version required for a module within the
  1448. .info file.
  1449. * Drupal core no longer requires CREATE TEMPORARY TABLES or LOCK TABLES
  1450. database rights.
  1451. * Dynamically check password strength and confirmation.
  1452. * Refactored poll administration.
  1453. * Implemented drag-and-drop positioning for blocks, menu items, taxonomy
  1454. vocabularies and terms, forums, profile fields, and input format filters.
  1455. - Theme system:
  1456. * Added .info files to themes and made it easier to specify regions and
  1457. features.
  1458. * Added theme registry: modules can directly provide .tpl.php files for
  1459. their themes without having to create theme_ functions.
  1460. * Used the Garland theme for the installation and maintenance pages.
  1461. * Added theme preprocess functions for themes that are templates.
  1462. * Added support for themeable functions in JavaScript.
  1463. - Refactored update.php to a generic batch API to be able to run time-consuming
  1464. operations in multiple subsequent HTTP requests.
  1465. - Installer:
  1466. * Themed the installer with the Garland theme.
  1467. * Added form to provide initial site information during installation.
  1468. * Added ability to provide extra installation steps programmatically.
  1469. * Made it possible to import interface translations during installation.
  1470. - Added the HTML corrector filter:
  1471. * Fixes faulty and chopped off HTML in postings.
  1472. * Tags are now automatically closed at the end of the teaser.
  1473. - Performance:
  1474. * Made it easier to conditionally load .include files and split up many core
  1475. modules.
  1476. * Added a JavaScript aggregator.
  1477. * Added block-level caching, improving performance for both authenticated
  1478. and anonymous users.
  1479. * Made Drupal work correctly when running behind a reverse proxy like
  1480. Squid or Pound.
  1481. - File handling improvements:
  1482. * Entries in the files table are now keyed to a user instead of a node.
  1483. * Added reusable validation functions to check for uploaded file sizes,
  1484. extensions, and image resolution.
  1485. * Added ability to create and remove temporary files during a cron job.
  1486. - Forum improvements:
  1487. * Any node type may now be posted in a forum.
  1488. - Taxonomy improvements:
  1489. * Descriptions for terms are now shown on taxonomy/term pages as well
  1490. as RSS feeds.
  1491. * Added versioning support to categories by associating them with node
  1492. revisions.
  1493. - Added support for OpenID.
  1494. - Added support for triggering configurable actions.
  1495. - Added the Update status module to automatically check for available updates
  1496. and warn sites if they are missing security updates or newer versions.
  1497. Sites deploying from CVS should use http://drupal.org/project/cvs_deploy.
  1498. Advanced settings provided by http://drupal.org/project/update_advanced.
  1499. - Upgraded the core JavaScript library to jQuery version 1.2.3.
  1500. - Added a new Schema API, which provides built-in support for core and
  1501. contributed modules to work with databases other than MySQL.
  1502. - Removed drupal.module. The functionality lives on as the Site network
  1503. contributed module (http://drupal.org/project/site_network).
  1504. - Removed old system updates. Updates from Drupal versions prior to 5.x will
  1505. require upgrading to 5.x before upgrading to 6.x.
  1506. Drupal 5.23, 2010-08-11
  1507. -----------------------
  1508. - Fixed security issues (File download access bypass, Comment unpublishing
  1509. bypass), see SA-CORE-2010-002.
  1510. Drupal 5.22, 2010-03-03
  1511. -----------------------
  1512. - Fixed security issues (Open redirection, Locale module cross site scripting,
  1513. Blocked user session regeneration), see SA-CORE-2010-001.
  1514. Drupal 5.21, 2009-12-16
  1515. -----------------------
  1516. - Fixed a security issue (Cross site scripting), see SA-CORE-2009-009.
  1517. - Fixed a variety of small bugs.
  1518. Drupal 5.20, 2009-09-16
  1519. -----------------------
  1520. - Avoid security problems resulting from writing Drupal 6-style menu
  1521. declarations.
  1522. - Fixed security issues (session fixation), see SA-CORE-2009-008.
  1523. - Fixed a variety of small bugs.
  1524. Drupal 5.19, 2009-07-01
  1525. -----------------------
  1526. - Fixed security issues (Cross site scripting and Password leakage in URL), see
  1527. SA-CORE-2009-007.
  1528. - Fixed a variety of small bugs.
  1529. Drupal 5.18, 2009-05-13
  1530. -----------------------
  1531. - Fixed security issues (Cross site scripting), see SA-CORE-2009-006.
  1532. - Fixed a variety of small bugs.
  1533. Drupal 5.17, 2009-04-29
  1534. -----------------------
  1535. - Fixed security issues (Cross site scripting and limited information
  1536. disclosure) see SA-CORE-2009-005.
  1537. - Fixed a variety of small bugs.
  1538. Drupal 5.16, 2009-02-25
  1539. -----------------------
  1540. - Fixed a security issue, (Local file inclusion on Windows), see SA-CORE-2009-004.
  1541. - Fixed a variety of small bugs.
  1542. Drupal 5.15, 2009-01-14
  1543. -----------------------
  1544. - Fixed security issues, (Hardening against SQL injection), see
  1545. SA-CORE-2009-001
  1546. - Fixed HTTP_HOST checking to work again with HTTP 1.0 clients and basic shell
  1547. scripts.
  1548. - Fixed a variety of small bugs.
  1549. Drupal 5.14, 2008-12-11
  1550. -----------------------
  1551. - removed a previous change incompatible with PHP 5.1.x and lower.
  1552. Drupal 5.13, 2008-12-10
  1553. -----------------------
  1554. - fixed a variety of small bugs.
  1555. - fixed security issues, (Cross site request forgery and Cross site scripting), see SA-2008-073
  1556. - updated robots.txt and .htaccess to match current file use.
  1557. Drupal 5.12, 2008-10-22
  1558. -----------------------
  1559. - fixed security issues, (File inclusion), see SA-2008-067
  1560. Drupal 5.11, 2008-10-08
  1561. -----------------------
  1562. - fixed a variety of small bugs.
  1563. - fixed security issues, (File upload access bypass, Access rules bypass,
  1564. BlogAPI access bypass, Node validation bypass), see SA-2008-060
  1565. Drupal 5.10, 2008-08-13
  1566. -----------------------
  1567. - fixed a variety of small bugs.
  1568. - fixed security issues, (Cross site scripting, Arbitrary file uploads via
  1569. BlogAPI and Cross site request forgery), see SA-2008-047
  1570. Drupal 5.9, 2008-07-23
  1571. ----------------------
  1572. - fixed a variety of small bugs.
  1573. - fixed security issues, (Session fixation), see SA-2008-046
  1574. Drupal 5.8, 2008-07-09
  1575. ----------------------
  1576. - fixed a variety of small bugs.
  1577. - fixed security issues, (Cross site scripting, cross site request forgery, and
  1578. session fixation), see SA-2008-044
  1579. Drupal 5.7, 2008-01-28
  1580. ----------------------
  1581. - fixed the input format configuration page.
  1582. - fixed a variety of small bugs.
  1583. Drupal 5.6, 2008-01-10
  1584. ----------------------
  1585. - fixed a variety of small bugs.
  1586. - fixed a security issue (Cross site request forgery), see SA-2008-005
  1587. - fixed a security issue (Cross site scripting, UTF8), see SA-2008-006
  1588. - fixed a security issue (Cross site scripting, register_globals), see SA-2008-007
  1589. Drupal 5.5, 2007-12-06
  1590. ----------------------
  1591. - fixed missing missing brackets in a query in the user module.
  1592. - fixed taxonomy feed bug introduced by SA-2007-031
  1593. Drupal 5.4, 2007-12-05
  1594. ----------------------
  1595. - fixed a variety of small bugs.
  1596. - fixed a security issue (SQL injection), see SA-2007-031
  1597. Drupal 5.3, 2007-10-17
  1598. ----------------------
  1599. - fixed a variety of small bugs.
  1600. - fixed a security issue (HTTP response splitting), see SA-2007-024
  1601. - fixed a security issue (Arbitrary code execution via installer), see SA-2007-025
  1602. - fixed a security issue (Cross site scripting via uploads), see SA-2007-026
  1603. - fixed a security issue (User deletion cross site request forgery), see SA-2007-029
  1604. - fixed a security issue (API handling of unpublished comment), see SA-2007-030
  1605. Drupal 5.2, 2007-07-26
  1606. ----------------------
  1607. - changed hook_link() $teaser argument to match documentation.
  1608. - fixed a variety of small bugs.
  1609. - fixed a security issue (cross-site request forgery), see SA-2007-017
  1610. - fixed a security issue (cross-site scripting), see SA-2007-018
  1611. Drupal 5.1, 2007-01-29
  1612. ----------------------
  1613. - fixed security issue (code execution), see SA-2007-005
  1614. - fixed a variety of small bugs.
  1615. Drupal 5.0, 2007-01-15
  1616. ----------------------
  1617. - Completely retooled the administration page
  1618. * /Admin now contains an administration page which may be themed
  1619. * Reorganised administration menu items by task and by module
  1620. * Added a status report page with detailed PHP/MySQL/Drupal information
  1621. - Added web-based installer which can:
  1622. * Check installation and run-time requirements
  1623. * Automatically generate the database configuration file
  1624. * Install pre-made installation profiles or distributions
  1625. * Import the database structure with automatic table prefixing
  1626. * Be localized
  1627. - Added new default Garland theme
  1628. - Added color module to change some themes' color schemes
  1629. - Included the jQuery JavaScript library 1.0.4 and converted all core JavaScript to use it
  1630. - Introduced the ability to alter mail sent from system
  1631. - Module system:
  1632. * Added .info files for module meta-data
  1633. * Added support for module dependencies
  1634. * Improved module installation screen
  1635. * Moved core modules to their own directories
  1636. * Added support for module uninstalling
  1637. - Added support for different cache backends
  1638. - Added support for a generic "sites/all" directory.
  1639. - Usability:
  1640. * Added support for auto-complete forms (AJAX) to user profiles.
  1641. * Made it possible to instantly assign roles to newly created user accounts.
  1642. * Improved configurability of the contact forms.
  1643. * Reorganized the settings pages.
  1644. * Made it easy to investigate popular search terms.
  1645. * Added a 'select all' checkbox and a range select feature to administration tables.
  1646. * Simplified the 'break' tag to split teasers from body.
  1647. * Use proper capitalization for titles, menu items and operations.
  1648. - Integrated urlfilter.module into filter.module
  1649. - Block system:
  1650. * Extended the block visibility settings with a role specific setting.
  1651. * Made it possible to customize all block titles.
  1652. - Poll module:
  1653. * Optionally allow people to inspect all votes.
  1654. * Optionally allow people to cancel their vote.
  1655. - Distributed authentication:
  1656. * Added default server option.
  1657. - Added default robots.txt to control crawlers.
  1658. - Database API:
  1659. * Added db_table_exists().
  1660. - Blogapi module:
  1661. * 'Blogapi new' and 'blogapi edit' nodeapi operations.
  1662. - User module:
  1663. * Added hook_profile_alter().
  1664. * E-mail verification is made optional.
  1665. * Added mass editing and filtering on admin/user/user.
  1666. - PHP Template engine:
  1667. * Add the ability to look for a series of suggested templates.
  1668. * Look for page templates based upon the path.
  1669. * Look for block templates based upon the region, module, and delta.
  1670. - Content system:
  1671. * Made it easier for node access modules to work well with each other.
  1672. * Added configurable content types.
  1673. * Changed node rendering to work with structured arrays.
  1674. - Performance:
  1675. * Improved session handling: reduces database overhead.
  1676. * Improved access checking: reduces database overhead.
  1677. * Made it possible to do memcached based session management.
  1678. * Omit sidebars when serving a '404 - Page not found': saves CPU cycles and bandwidth.
  1679. * Added an 'aggressive' caching policy.
  1680. * Added a CSS aggregator and compressor (up to 40% faster page loads).
  1681. - Removed the archive module.
  1682. - Upgrade system:
  1683. * Created space for update branches.
  1684. - Form API:
  1685. * Made it possible to programmatically submit forms.
  1686. * Improved api for multistep forms.
  1687. - Theme system:
  1688. * Split up and removed drupal.css.
  1689. * Added nested lists generation.
  1690. * Added a self-clearing block class.
  1691. Drupal 4.7.11, 2008-01-10
  1692. -------------------------
  1693. - fixed a security issue (Cross site request forgery), see SA-2008-005
  1694. - fixed a security issue (Cross site scripting, UTF8), see SA-2008-006
  1695. - fixed a security issue (Cross site scripting, register_globals), see SA-2008-007
  1696. Drupal 4.7.10, 2007-12-06
  1697. -------------------------
  1698. - fixed taxonomy feed bug introduced by SA-2007-031
  1699. Drupal 4.7.9, 2007-12-05
  1700. ------------------------
  1701. - fixed a security issue (SQL injection), see SA-2007-031
  1702. Drupal 4.7.8, 2007-10-17
  1703. ------------------------
  1704. - fixed a security issue (HTTP response splitting), see SA-2007-024
  1705. - fixed a security issue (Cross site scripting via uploads), see SA-2007-026
  1706. - fixed a security issue (API handling of unpublished comment), see SA-2007-030
  1707. Drupal 4.7.7, 2007-07-26
  1708. ------------------------
  1709. - fixed security issue (XSS), see SA-2007-018
  1710. Drupal 4.7.6, 2007-01-29
  1711. ------------------------
  1712. - fixed security issue (code execution), see SA-2007-005
  1713. Drupal 4.7.5, 2007-01-05
  1714. ------------------------
  1715. - Fixed security issue (XSS), see SA-2007-001
  1716. - Fixed security issue (DoS), see SA-2007-002
  1717. Drupal 4.7.4, 2006-10-18
  1718. ------------------------
  1719. - Fixed security issue (XSS), see SA-2006-024
  1720. - Fixed security issue (CSRF), see SA-2006-025
  1721. - Fixed security issue (Form action attribute injection), see SA-2006-026
  1722. Drupal 4.7.3, 2006-08-02
  1723. ------------------------
  1724. - Fixed security issue (XSS), see SA-2006-011
  1725. Drupal 4.7.2, 2006-06-01
  1726. ------------------------
  1727. - Fixed critical upload issue, see SA-2006-007
  1728. - Fixed taxonomy XSS issue, see SA-2006-008
  1729. - Fixed a variety of small bugs.
  1730. Drupal 4.7.1, 2006-05-24
  1731. ------------------------
  1732. - Fixed critical SQL issue, see SA-2006-005
  1733. - Fixed a serious upgrade related bug.
  1734. - Fixed a variety of small bugs.
  1735. Drupal 4.7.0, 2006-05-01
  1736. ------------------------
  1737. - Added free tagging support.
  1738. - Added a site-wide contact form.
  1739. - Theme system:
  1740. * Added the PHPTemplate theme engine and removed the Xtemplate engine.
  1741. * Converted the bluemarine theme from XTemplate to PHPTemplate.
  1742. * Converted the pushbutton theme from XTemplate to PHPTemplate.
  1743. - Usability:
  1744. * Reworked the 'request new password' functionality.
  1745. * Reworked the node and comment edit forms.
  1746. * Made it easy to add nodes to the navigation menu.
  1747. * Added site 'offline for maintenance' feature.
  1748. * Added support for auto-complete forms (AJAX).
  1749. * Added support for collapsible page sections (JS).
  1750. * Added support for resizable text fields (JS).
  1751. * Improved file upload functionality (AJAX).
  1752. * Reorganized some settings pages.
  1753. * Added friendly database error screens.
  1754. * Improved styling of update.php.
  1755. - Refactored the forms API.
  1756. * Made it possible to alter, extend or theme forms.
  1757. - Comment system:
  1758. * Added support for "mass comment operations" to ease repetitive tasks.
  1759. * Comment moderation has been removed.
  1760. - Node system:
  1761. * Reworked the revision functionality.
  1762. * Removed the bookmarklet code. Third-party modules can now handle
  1763. This.
  1764. - Upgrade system:
  1765. * Allows contributed modules to plug into the upgrade system.
  1766. - Profiles:
  1767. * Added a block to display author information along with posts.
  1768. * Added support for private profile fields.
  1769. - Statistics module:
  1770. * Added the ability to track page generation times.
  1771. * Made it possible to block certain IPs/hostnames.
  1772. - Block system:
  1773. * Added support for theme-specific block regions.
  1774. - Syndication:
  1775. * Made the aggregator module parse Atom feeds.
  1776. * Made the aggregator generate RSS feeds.
  1777. * Added RSS feed settings.
  1778. - XML-RPC:
  1779. * Replaced the XML-RPC library by a better one.
  1780. - Performance:
  1781. * Added 'loose caching' option for high-traffic sites.
  1782. * Improved performance of path aliasing.
  1783. * Added the ability to track page generation times.
  1784. - Internationalization:
  1785. * Improved Unicode string handling API.
  1786. * Added support for PHP's multibyte string module.
  1787. - Added support for PHP5's 'mysqli' extension.
  1788. - Search module:
  1789. * Made indexer smarter and more robust.
  1790. * Added advanced search operators (e.g. phrase, node type, ...).
  1791. * Added customizable result ranking.
  1792. - PostgreSQL support:
  1793. * Removed dependency on PL/pgSQL procedural language.
  1794. - Menu system:
  1795. * Added support for external URLs.
  1796. - Queue module:
  1797. * Removed from core.
  1798. - HTTP handling:
  1799. * Added support for a tolerant Base URL.
  1800. * Output URIs relative to the root, without a base tag.
  1801. Drupal 4.6.11, 2007-01-05
  1802. -------------------------
  1803. - Fixed security issue (XSS), see SA-2007-001
  1804. - Fixed security issue (DoS), see SA-2007-002
  1805. Drupal 4.6.10, 2006-10-18
  1806. -------------------------
  1807. - Fixed security issue (XSS), see SA-2006-024
  1808. - Fixed security issue (CSRF), see SA-2006-025
  1809. - Fixed security issue (Form action attribute injection), see SA-2006-026
  1810. Drupal 4.6.9, 2006-08-02
  1811. ------------------------
  1812. - Fixed security issue (XSS), see SA-2006-011
  1813. Drupal 4.6.8, 2006-06-01
  1814. ------------------------
  1815. - Fixed critical upload issue, see SA-2006-007
  1816. - Fixed taxonomy XSS issue, see SA-2006-008
  1817. Drupal 4.6.7, 2006-05-24
  1818. ------------------------
  1819. - Fixed critical SQL issue, see SA-2006-005
  1820. Drupal 4.6.6, 2006-03-13
  1821. ------------------------
  1822. - Fixed bugs, including 4 security vulnerabilities.
  1823. Drupal 4.6.5, 2005-12-12
  1824. ------------------------
  1825. - Fixed bugs: no critical bugs were identified.
  1826. Drupal 4.6.4, 2005-11-30
  1827. ------------------------
  1828. - Fixed bugs, including 3 security vulnerabilities.
  1829. Drupal 4.6.3, 2005-08-15
  1830. ------------------------
  1831. - Fixed bugs, including a critical "arbitrary PHP code execution" bug.
  1832. Drupal 4.6.2, 2005-06-29
  1833. ------------------------
  1834. - Fixed bugs, including two critical "arbitrary PHP code execution" bugs.
  1835. Drupal 4.6.1, 2005-06-01
  1836. ------------------------
  1837. - Fixed bugs, including a critical input validation bug.
  1838. Drupal 4.6.0, 2005-04-15
  1839. ------------------------
  1840. - PHP5 compliance
  1841. - Search:
  1842. * Added UTF-8 support to make it work with all languages.
  1843. * Improved search indexing algorithm.
  1844. * Improved search output.
  1845. * Impose a throttle on indexing of large sites.
  1846. * Added search block.
  1847. - Syndication:
  1848. * Made the ping module ping pingomatic.com which, in turn, will ping all the major ping services.
  1849. * Made Drupal generate RSS 2.0 feeds.
  1850. * Made RSS feeds extensible.
  1851. * Added categories to RSS feeds.
  1852. * Added enclosures to RSS feeds.
  1853. - Flood control mechanism:
  1854. * Added a mechanism to throttle certain operations.
  1855. - Usability:
  1856. * Refactored the block configuration pages.
  1857. * Refactored the statistics pages.
  1858. * Refactored the watchdog pages.
  1859. * Refactored the throttle module configuration.
  1860. * Refactored the access rules page.
  1861. * Refactored the content administration page.
  1862. * Introduced forum configuration pages.
  1863. * Added a 'add child page' link to book pages.
  1864. - Contact module:
  1865. * Added a simple contact module that allows users to contact each other using e-mail.
  1866. - Multi-site configuration:
  1867. * Made it possible to run multiple sites from a single code base.
  1868. - Added an image API: enables better image handling.
  1869. - Block system:
  1870. * Extended the block visibility settings.
  1871. - Theme system:
  1872. * Added new theme functions.
  1873. - Database backend:
  1874. * The PEAR database backend is no longer supported.
  1875. - Performance:
  1876. * Improved performance of the forum topics block.
  1877. * Improved performance of the tracker module.
  1878. * Improved performance of the node pages.
  1879. - Documentation:
  1880. * Improved and extended PHPDoc/Doxygen comments.
  1881. Drupal 4.5.8, 2006-03-13
  1882. ------------------------
  1883. - Fixed bugs, including 3 security vulnerabilities.
  1884. Drupal 4.5.7, 2005-12-12
  1885. ------------------------
  1886. - Fixed bugs: no critical bugs were identified.
  1887. Drupal 4.5.6, 2005-11-30
  1888. ------------------------
  1889. - Fixed bugs, including 3 security vulnerabilities.
  1890. Drupal 4.5.5, 2005-08-15
  1891. ------------------------
  1892. - Fixed bugs, including a critical "arbitrary PHP code execution" bug.
  1893. Drupal 4.5.4, 2005-06-29
  1894. ------------------------
  1895. - Fixed bugs, including two critical "arbitrary PHP code execution" bugs.
  1896. Drupal 4.5.3, 2005-06-01
  1897. ------------------------
  1898. - Fixed bugs, including a critical input validation bug.
  1899. Drupal 4.5.2, 2005-01-15
  1900. ------------------------
  1901. - Fixed bugs: a cross-site scripting (XSS) vulnerability has been fixed.
  1902. Drupal 4.5.1, 2004-12-01
  1903. ------------------------
  1904. - Fixed bugs: no critical bugs were identified.
  1905. Drupal 4.5.0, 2004-10-18
  1906. ------------------------
  1907. - Navigation:
  1908. * Made it possible to add, delete, rename and move menu items.
  1909. * Introduced tabs and subtabs for local tasks.
  1910. * Reorganized the navigation menus.
  1911. - User management:
  1912. * Added support for multiple roles per user.
  1913. * Made it possible to add custom profile fields.
  1914. * Made it possible to browse user profiles by field.
  1915. - Node system:
  1916. * Added support for node-level permissions.
  1917. - Comment module:
  1918. * Made it possible to leave contact information without having to register.
  1919. - Upload module:
  1920. * Added support for uploading documents (includes images).
  1921. - Forum module:
  1922. * Added support for sticky forum topics.
  1923. * Made it possible to track forum topics.
  1924. - Syndication:
  1925. * Added support for RSS ping-notifications of http://technorati.com/.
  1926. * Refactored the categorization of syndicated news items.
  1927. * Added an URL alias for 'rss.xml'.
  1928. * Improved date parsing.
  1929. - Database backend:
  1930. * Added support for multiple database connections.
  1931. * The PostgreSQL backend does no longer require PEAR.
  1932. - Theme system:
  1933. * Changed all GIFs to PNGs.
  1934. * Reorganised the handling of themes, template engines, templates and styles.
  1935. * Unified and extended the available theme settings.
  1936. * Added theme screenshots.
  1937. - Blocks:
  1938. * Added 'recent comments' block.
  1939. * Added 'categories' block.
  1940. - Blogger API:
  1941. * Added support for auto-discovery of blogger API via RSD.
  1942. - Performance:
  1943. * Added support for sending gzip compressed pages.
  1944. * Improved performance of the forum module.
  1945. - Accessibility:
  1946. * Improved the accessibility of the archive module's calendar.
  1947. * Improved form handling and error reporting.
  1948. * Added HTTP redirects to prevent submitting twice when refreshing right after a form submission.
  1949. - Refactored 403 (forbidden) handling and added support for custom 403 pages.
  1950. - Documentation:
  1951. * Added PHPDoc/Doxygen comments.
  1952. - Filter system:
  1953. * Added support for using multiple input formats on the site
  1954. * Expanded the embedded PHP-code feature so it can be used everywhere
  1955. * Added support for role-dependent filtering, through input formats
  1956. - UI translation:
  1957. * Managing translations is now completely done through the administration interface
  1958. * Added support for importing/exporting gettext .po files
  1959. Drupal 4.4.3, 2005-06-01
  1960. ------------------------
  1961. - Fixed bugs, including a critical input validation bug.
  1962. Drupal 4.4.2, 2004-07-04
  1963. ------------------------
  1964. - Fixed bugs: no critical bugs were identified.
  1965. Drupal 4.4.1, 2004-05-01
  1966. ------------------------
  1967. - Fixed bugs: no critical bugs were identified.
  1968. Drupal 4.4.0, 2004-04-01
  1969. ------------------------
  1970. - Added support for the MetaWeblog API and MovableType extensions.
  1971. - Added a file API: enables better document management.
  1972. - Improved the watchdog and search module to log search keys.
  1973. - News aggregator:
  1974. * Added support for conditional GET.
  1975. * Added OPML feed subscription list.
  1976. * Added support for <image>, <pubDate>, <dc:date>, <dcterms:created>, <dcterms:issued> and <dcterms:modified>.
  1977. - Comment module:
  1978. * Made it possible to disable the "comment viewing controls".
  1979. - Performance:
  1980. * Improved module loading when serving cached pages.
  1981. * Made it possible to automatically disable modules when under heavy load.
  1982. * Made it possible to automatically disable blocks when under heavy load.
  1983. * Improved performance and memory footprint of the locale module.
  1984. - Theme system:
  1985. * Made all theme functions start with 'theme_'.
  1986. * Made all theme functions return their output.
  1987. * Migrated away from using the BaseTheme class.
  1988. * Added many new theme functions and refactored existing theme functions.
  1989. * Added avatar support to 'Xtemplate'.
  1990. * Replaced theme 'UnConeD' by 'Chameleon'.
  1991. * Replaced theme 'Marvin' by 'Pushbutton'.
  1992. - Usability:
  1993. * Added breadcrumb navigation to all pages.
  1994. * Made it possible to add context-sensitive help to all pages.
  1995. * Replaced drop-down menus by radio buttons where appropriate.
  1996. * Removed the 'magic_quotes_gpc = 0' requirement.
  1997. * Added a 'book navigation' block.
  1998. - Accessibility:
  1999. * Made themes degrade gracefully in absence of CSS.
  2000. * Grouped form elements using '<fieldset>' and '<legend>' tags.
  2001. * Added '<label>' tags to form elements.
  2002. - Refactored 404 (file not found) handling and added support for custom 404 pages.
  2003. - Improved the filter system to prevent conflicts between filters:
  2004. * Made it possible to change the order in which filters are applied.
  2005. - Documentation:
  2006. * Added PHPDoc/Doxygen comments.
  2007. Drupal 4.3.2, 2004-01-01
  2008. ------------------------
  2009. - Fixed bugs: no critical bugs were identified.
  2010. Drupal 4.3.1, 2003-12-01
  2011. ------------------------
  2012. - Fixed bugs: no critical bugs were identified.
  2013. Drupal 4.3.0, 2003-11-01
  2014. ------------------------
  2015. - Added support for configurable URLs.
  2016. - Added support for sortable table columns.
  2017. - Database backend:
  2018. * Added support for selective database table prefixing.
  2019. - Performance:
  2020. * Optimized many SQL queries for speed by converting left joins to inner joins.
  2021. - Comment module:
  2022. * Rewrote the comment housekeeping code to be much more efficient and scalable.
  2023. * Changed the comment module to use the standard pager.
  2024. - User module:
  2025. * Added support for multiple sessions per user.
  2026. * Added support for anonymous user sessions.
  2027. - Forum module:
  2028. * Improved the forum views and the themability thereof.
  2029. - Book module:
  2030. * Improved integration of non-book nodes in the book outline.
  2031. - Usability:
  2032. * Added support for "mass node operations" to ease repetitive tasks.
  2033. * Added support for breadcrumb navigation to several modules' user pages.
  2034. * Integrated the administration pages with the normal user pages.
  2035. Drupal 4.2.0, 2003-08-01
  2036. ------------------------
  2037. - Added support for clean URLs.
  2038. - Added textarea hook and support for onload attributes: enables integration of WYSIWYG editors.
  2039. - Rewrote the RSS/RDF parser:
  2040. * It will now use PHP's built-in XML parser to parse news feeds.
  2041. - Rewrote the administration pages:
  2042. * Improved the navigational elements and added breadcrumb navigation.
  2043. * Improved the look and feel.
  2044. * Added context-sensitive help.
  2045. - Database backend:
  2046. * Fixed numerous SQL queries to make Drupal ANSI compliant.
  2047. * Added MSSQL database scheme.
  2048. - Search module:
  2049. * Changed the search module to use implicit AND'ing instead of implicit OR'ing.
  2050. - Node system:
  2051. * Replaced the "post content" permission by more fine-grained permissions.
  2052. * Improved content submission:
  2053. + 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.
  2054. + Added the ability to preview both the short and the full version of your posts.
  2055. * Extended the node API which allows for better integration.
  2056. * Added default node settings to control the behavior for promotion, moderation and other options.
  2057. - Themes:
  2058. * Replaced theme "Goofy" by "Xtemplate", a template driven theme.
  2059. - Removed the 'register_globals = on' requirement.
  2060. - Added better installation instructions.
  2061. Drupal 4.1.0, 2003-02-01
  2062. ------------------------
  2063. - Collaboratively revised and expanded the Drupal documentation.
  2064. - Rewrote comment.module:
  2065. * Reintroduced comment rating/moderation.
  2066. * Added support for comment paging.
  2067. * Performance improvements: improved comment caching, faster SQL queries, etc.
  2068. - Rewrote block.module:
  2069. * Performance improvements: blocks are no longer rendered when not displayed.
  2070. - Rewrote forum.module:
  2071. * 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.
  2072. - Rewrote statistics.module:
  2073. * Collects access counts for each node, referrer logs, number of users/guests.
  2074. * 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.
  2075. - Added throttle.module:
  2076. * Auto-throttle congestion control mechanism: Drupal can adapt itself based on the server load.
  2077. - Added profile.module:
  2078. * Enables to extend the user and registration page.
  2079. - Added pager support to the main page.
  2080. - Replaced weblogs.module by ping.module:
  2081. * Added support for normal and RSS notifications of http://blo.gs/.
  2082. * Added support for RSS ping-notifications of http://weblogs.com/.
  2083. - Removed the rating module
  2084. - Themes:
  2085. * Removed a significant portion of hard-coded mark-up.
  2086. Drupal 4.0.0, 2002-06-15
  2087. ------------------------
  2088. - Added tracker.module:
  2089. * Replaces the previous "your [site]" links (recent comments and nodes).
  2090. - Added weblogs.module:
  2091. * This will ping weblogs.com when new content is promoted.
  2092. - Added taxonomy module which replaces the meta module.
  2093. * Supports relations, hierarchies and synonyms.
  2094. - Added a caching system:
  2095. * Speeds up pages for anonymous users and reduces system load.
  2096. - Added support for external SMTP libraries.
  2097. - Added an archive extension to the calendar.
  2098. - Added support for the Blogger API.
  2099. - Themes:
  2100. * Cleaned up the theme system.
  2101. * Moved themes that are not maintained to contributions CVS repository.
  2102. - Database backend:
  2103. * Changed to PEAR database abstraction layer.
  2104. * Using ANSI SQL queries to be more portable.
  2105. - Rewrote the user system:
  2106. * Added support for Drupal authentication through XML-RPC and through a Jabber server.
  2107. * Added support for modules to add more user data.
  2108. * Users may delete their own account.
  2109. * Added who's new and who's online blocks.
  2110. - Changed block system:
  2111. * Various hard coded blocks are now dynamic.
  2112. * Blocks can now be enabled and/or be set by the user.
  2113. * Blocks can be set to only show up on some pages.
  2114. * Merged box module with block module.
  2115. - Node system:
  2116. * Blogs can be updated.
  2117. * Teasers (abstracts) on all node types.
  2118. * Improved error checking.
  2119. * Content versioning support.
  2120. * Usability improvements.
  2121. - Improved book module to support text, HTML and PHP pages.
  2122. - Improved comment module to mark new comments.
  2123. - Added a general outliner which will let any node type be linked to a book.
  2124. - Added an update script that lets you upgrade from previous releases or on a day to day basis when using the development tree.
  2125. - Search module:
  2126. * Improved the search system by making it context sensitive.
  2127. * Added indexing.
  2128. - Various updates:
  2129. * Changed output to valid XHTML.
  2130. * Improved multiple sites using the same Drupal database support.
  2131. * Added support for session IDs in URLs instead of cookies.
  2132. * Made the type of content on the front page configurable.
  2133. * Made each cloud site have its own settings.
  2134. * Modules and themes can now be enabled/disabled using the administration pages.
  2135. * Added URL abstraction for links.
  2136. * Usability changes (renamed links, better UI, etc).
  2137. - Collaboratively revised and expanded the Drupal documentation.
  2138. Drupal 3.0.1, 2001-10-15
  2139. ------------------------
  2140. - Various updates:
  2141. * Added missing translations
  2142. * Updated the themes: tidied up some HTML code and added new Drupal logos.
  2143. Drupal 3.0.0, 2001-09-15
  2144. ------------------------
  2145. - Major overhaul of the entire underlying design:
  2146. * 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.
  2147. - Rewrote submission/moderation queue and renamed it to queue.module.
  2148. - Removed FAQ and documentation module and merged them into a "book module".
  2149. - Removed ban module and integrated it into account.module as "access control":
  2150. * Access control is based on much more powerful regular expressions (regex) now rather than on MySQL pattern matching.
  2151. - Rewrote watchdog and submission throttle:
  2152. * Improved watchdog messages and added watchdog filter.
  2153. - Rewrote headline code and renamed it to import.module and export.module:
  2154. * Added various improvements, including a better parser, bundles and better control over individual feeds.
  2155. - Rewrote section code and renamed it to meta.module:
  2156. * Supports unlimited amount of nested topics. Topics can be nested to create a multi-level hierarchy.
  2157. - Rewrote configuration file resolving:
  2158. * 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.
  2159. - Added caching support which makes Drupal extremely scalable.
  2160. - Added access.module:
  2161. * Allows you to set up 'roles' (groups) and to bind a set of permissions to each group.
  2162. - Added blog.module.
  2163. - Added poll.module.
  2164. - Added system.module:
  2165. * Moved most of the configuration options from hostname.conf to the new administration section.
  2166. * Added support for custom "filters".
  2167. - Added statistics.module
  2168. - Added moderate.module:
  2169. * Allows to assign users editorial/moderator rights to certain nodes or topics.
  2170. - Added page.module:
  2171. * Allows creation of static (and dynamic) pages through the administration interface.
  2172. - Added help.module:
  2173. * Groups all available module documentation on a single page.
  2174. - Added forum.module:
  2175. * Added an integrated forum.
  2176. - Added cvs.module and cvs-to-sql.pl:
  2177. * Allows to display and mail CVS log messages as daily digests.
  2178. - Added book.module:
  2179. * Allows collaborative handbook writing: primary used for Drupal documentation.
  2180. - Removed cron.module and integrated it into conf.module.
  2181. - Removed module.module as it was no longer needed.
  2182. - Various updates:
  2183. * Added "auto-post new submissions" feature versus "moderate new submissions".
  2184. * Introduced links/Drupal tags: [[link]]
  2185. * Added preview functionality when submitting new content (such as a story) from the administration pages.
  2186. * Made the administration section only show those links a user has access to.
  2187. * Made all modules use specific form_* functions to guarantee a rock-solid forms and more consistent layout.
  2188. * Improved scheduler:
  2189. + Content can be scheduled to be 'posted', 'queued' and 'hidden'.
  2190. * Improved account module:
  2191. + Added "access control" to allow/deny certain usernames/e-mail addresses/hostnames.
  2192. * Improved locale module:
  2193. + Added new overview to easy the translation process.
  2194. * Improved comment module:
  2195. + Made it possible to permanently delete comments.
  2196. * Improved rating module
  2197. * Improved story module:
  2198. + Added preview functionality for administrators.
  2199. + Made it possible to permanently delete stories.
  2200. * Improved themes:
  2201. + W3C validation on a best effort basis.
  2202. + Removed $theme->control() from themes.
  2203. + Added theme "goofy".
  2204. - Collaboratively revised and expanded the Drupal documentation.
  2205. Drupal 2.0.0, 2001-03-15
  2206. ------------------------
  2207. - Rewrote the comment/discussion code:
  2208. * Comment navigation should be less confusing now.
  2209. * Additional/alternative display and order methods have been added.
  2210. * Modules can be extended with a "comment system": modules can embed the existing comment system without having to write their own, duplicate comment system.
  2211. - Added sections and section manager:
  2212. * Story sections can be maintained from the administration pages.
  2213. * 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.
  2214. - Multiple vhosts + multiple directories:
  2215. * You can set up multiple Drupal sites on top of the same physical source tree either by using vhosts or sub-directories.
  2216. - Added "user ratings" similar to SlashCode's Karma or Scoop's Mojo:
  2217. * All rating logic is packed into a module to ease experimenting with different rating heuristics/algorithms.
  2218. - Added "search infrastructure":
  2219. * Improved search page and integrated search functionality in the administration pages.
  2220. - Added translation / localization / internationalization support:
  2221. * 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.
  2222. - Added fine-grained user permission (or group) system:
  2223. * 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.
  2224. - Added FAQ module
  2225. - Changed the "open submission queue" into a (optional) module.
  2226. - Various updates:
  2227. * Improved account module:
  2228. + User accounts can be deleted.
  2229. + Added fine-grained permission support.
  2230. * Improved block module
  2231. * Improved diary module:
  2232. + Diary entries can be deleted
  2233. * Improved headline module:
  2234. + Improved parser to support more "generic" RDF/RSS/XML backend.
  2235. * Improved module module
  2236. * Improved watchdog module
  2237. * Improved database abstraction layer
  2238. * Improved themes:
  2239. + W3C validation on a best effort basis
  2240. + Added theme "example" (alias "Stone Age")
  2241. * Added new scripts to directory "scripts"
  2242. * Added directory "misc"
  2243. * Added CREDITS file
  2244. - Revised documentation
  2245. Drupal 1.0.0, 2001-01-15
  2246. ------------------------
  2247. - Initial release