NEWS.rst 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. ======
  2. News
  3. ======
  4. 2.1.0rc1
  5. ========
  6. This release is compatible with version 2.0.0.
  7. * Built-in web interface for creating and managing address books and calendars
  8. * can be extended with web plugins
  9. * Much faster storage backend
  10. * Significant reduction in memory usage
  11. * Improved logging
  12. * Include paths (of invalid items / requests) in log messages
  13. * Include configuration values causing problems in log messages
  14. * Log warning message for invalid requests by clients
  15. * Log error message for invalid files in the storage backend
  16. * No stack traces unless debugging is enabled
  17. * Time range filter also regards overwritten recurrences
  18. * Items that couldn't be filtered because of bugs in VObject are always
  19. returned (and a warning message is logged)
  20. * Basic error checking of configuration files
  21. * File system locking isn't disabled implicitly anymore, instead a new
  22. configuration option gets introduced
  23. * The permissions of the lock file are not changed anymore
  24. * Support for sync-token
  25. * Support for external authentication managed by the WSGI server or reverse
  26. proxy
  27. * Support for client-side SSL certificates
  28. * Rights plugins can decide if access to an item is granted explicitly
  29. * Respond with 403 instead of 404 for principal collections of non-existing
  30. users when `owner_only plugin` is used (information leakage)
  31. * Authentication plugins can provide login and password from environment
  32. * new `remote_user plugin`, that gets login from REMOTE_USER environment
  33. variable
  34. * new `http_x_remote_user` plugin, that gets login from X-Remote-User HTTP
  35. header
  36. 2.0.0 - Little Big Radish
  37. =========================
  38. This feature is not compatible with the 1.x.x versions. See
  39. http://radicale.org/1to2/ if you want to switch from 1.x.x to
  40. 2.0.0.
  41. * Support Python 3.3+ only, Python 2 is not supported anymore
  42. * Keep only one simple filesystem-based storage system
  43. * Remove built-in Git support
  44. * Remove built-in authentication modules
  45. * Keep the WSGI interface, use Python HTTP server by default
  46. * Use a real iCal parser, rely on the "vobject" external module
  47. * Add a solid calendar discovery
  48. * Respect the difference between "files" and "folders", don't rely on slashes
  49. * Remove the calendar creation with GET requests
  50. * Be stateless
  51. * Use a file locker
  52. * Add threading
  53. * Get atomic writes
  54. * Support new filters
  55. * Support read-only permissions
  56. * Allow External plugins for authentication, rights management, storage and
  57. version control
  58. 1.1.3 - Fourth Law of Nature
  59. ============================
  60. * Add a ``--export-storage=FOLDER`` command-line argument (by Unrud, see #606)
  61. 1.1.2 - Third Law of Nature
  62. ===========================
  63. * **Security fix**: Add a random timer to avoid timing oracles and simple
  64. bruteforce attacks when using the htpasswd authentication method.
  65. * Various minor fixes.
  66. 1.1.1 - Second Law of Nature
  67. ============================
  68. * Fix the owner_write rights rule
  69. 1.1 - Law of Nature
  70. ===================
  71. One feature in this release is **not backward compatible**:
  72. * Use the first matching section for rights (inspired from daald)
  73. Now, the first section matching the path and current user in your custom rights
  74. file is used. In the previous versions, the most permissive rights of all the
  75. matching sections were applied. This new behaviour gives a simple way to make
  76. specific rules at the top of the file independant from the generic ones.
  77. Many **improvements in this release are related to security**, you should
  78. upgrade Radicale as soon as possible:
  79. * Improve the regex used for well-known URIs (by Unrud)
  80. * Prevent regex injection in rights management (by Unrud)
  81. * Prevent crafted HTTP request from calling arbitrary functions (by Unrud)
  82. * Improve URI sanitation and conversion to filesystem path (by Unrud)
  83. * Decouple the daemon from its parent environment (by Unrud)
  84. Some bugs have been fixed and little enhancements have been added:
  85. * Assign new items to corret key (by Unrud)
  86. * Avoid race condition in PID file creation (by Unrud)
  87. * Improve the docker version (by cdpb)
  88. * Encode message and commiter for git commits
  89. * Test with Python 3.5
  90. 1.0.1 - Sunflower Again
  91. =======================
  92. * Update the version because of a **stupid** "feature"™ of PyPI
  93. 1.0 - Sunflower
  94. ===============
  95. * Enhanced performances (by Mathieu Dupuy)
  96. * Add MD5-APR1 and BCRYPT for htpasswd-based authentication (by Jan-Philip Gehrcke)
  97. * Use PAM service (by Stephen Paul Weber)
  98. * Don't discard PROPPATCH on empty collections (by Markus Unterwaditzer)
  99. * Write the path of the collection in the git message (by Matthew Monaco)
  100. * Tests launched on Travis
  101. 0.10 - Lovely Endless Grass
  102. ===========================
  103. * Support well-known URLs (by Mathieu Dupuy)
  104. * Fix collection discovery (by Markus Unterwaditzer)
  105. * Reload logger config on SIGHUP (by Élie Bouttier)
  106. * Remove props files when deleting a collection (by Vincent Untz)
  107. * Support salted SHA1 passwords (by Marc Kleine-Budde)
  108. * Don't spam the logs about non-SSL IMAP connections to localhost (by Giel van Schijndel)
  109. 0.9 - Rivers
  110. ============
  111. * Custom handlers for auth, storage and rights (by Sergey Fursov)
  112. * 1-file-per-event storage (by Jean-Marc Martins)
  113. * Git support for filesystem storages (by Jean-Marc Martins)
  114. * DB storage working with PostgreSQL, MariaDB and SQLite (by Jean-Marc Martins)
  115. * Clean rights manager based on regular expressions (by Sweil)
  116. * Support of contacts for Apple's clients
  117. * Support colors (by Jochen Sprickerhof)
  118. * Decode URLs in XML (by Jean-Marc Martins)
  119. * Fix PAM authentication (by Stepan Henek)
  120. * Use consistent etags (by 9m66p93w)
  121. * Use consistent sorting order (by Daniel Danner)
  122. * Return 401 on unauthorized DELETE requests (by Eduard Braun)
  123. * Move pid file creation in child process (by Mathieu Dupuy)
  124. * Allow requests without base_prefix (by jheidemann)
  125. 0.8 - Rainbow
  126. =============
  127. * New authentication and rights management modules (by Matthias Jordan)
  128. * Experimental database storage
  129. * Command-line option for custom configuration file (by Mark Adams)
  130. * Root URL not at the root of a domain (by Clint Adams, Fabrice Bellet, Vincent Untz)
  131. * Improved support for iCal, CalDAVSync, CardDAVSync, CalDavZAP and CardDavMATE
  132. * Empty PROPFIND requests handled (by Christoph Polcin)
  133. * Colon allowed in passwords
  134. * Configurable realm message
  135. 0.7.1 - Waterfalls
  136. ==================
  137. * Many address books fixes
  138. * New IMAP ACL (by Daniel Aleksandersen)
  139. * PAM ACL fixed (by Daniel Aleksandersen)
  140. * Courier ACL fixed (by Benjamin Frank)
  141. * Always set display name to collections (by Oskari Timperi)
  142. * Various DELETE responses fixed
  143. 0.7 - Eternal Sunshine
  144. ======================
  145. * Repeating events
  146. * Collection deletion
  147. * Courier and PAM authentication methods
  148. * CardDAV support
  149. * Custom LDAP filters supported
  150. 0.6.4 - Tulips
  151. ==============
  152. * Fix the installation with Python 3.1
  153. 0.6.3 - Red Roses
  154. =================
  155. * MOVE requests fixed
  156. * Faster REPORT answers
  157. * Executable script moved into the package
  158. 0.6.2 - Seeds
  159. =============
  160. * iPhone and iPad support fixed
  161. * Backslashes replaced by slashes in PROPFIND answers on Windows
  162. * PyPI archive set as default download URL
  163. 0.6.1 - Growing Up
  164. ==================
  165. * Example files included in the tarball
  166. * htpasswd support fixed
  167. * Redirection loop bug fixed
  168. * Testing message on GET requests
  169. 0.6 - Sapling
  170. =============
  171. * WSGI support
  172. * IPv6 support
  173. * Smart, verbose and configurable logs
  174. * Apple iCal 4 and iPhone support (by Łukasz Langa)
  175. * KDE KOrganizer support
  176. * LDAP auth backend (by Corentin Le Bail)
  177. * Public and private calendars (by René Neumann)
  178. * PID file
  179. * MOVE requests management
  180. * Journal entries support
  181. * Drop Python 2.5 support
  182. 0.5 - Historical Artifacts
  183. ==========================
  184. * Calendar depth
  185. * MacOS and Windows support
  186. * HEAD requests management
  187. * htpasswd user from calendar path
  188. 0.4 - Hot Days Back
  189. ===================
  190. * Personal calendars
  191. * Last-Modified HTTP header
  192. * ``no-ssl`` and ``foreground`` options
  193. * Default configuration file
  194. 0.3 - Dancing Flowers
  195. =====================
  196. * Evolution support
  197. * Version management
  198. 0.2 - Snowflakes
  199. ================
  200. * Sunbird pre-1.0 support
  201. * SSL connection
  202. * Htpasswd authentication
  203. * Daemon mode
  204. * User configuration
  205. * Twisted dependency removed
  206. * Python 3 support
  207. * Real URLs for PUT and DELETE
  208. * Concurrent modification reported to users
  209. * Many bugs fixed (by Roger Wenham)
  210. 0.1 - Crazy Vegetables
  211. ======================
  212. * First release
  213. * Lightning/Sunbird 0.9 compatibility
  214. * Easy installer