]> git.mxchange.org Git - friendica-addons.git/blob - dav/SabreDAV/ChangeLog
Heavily refactored, including multiple calendars per user and recurring events. Not...
[friendica-addons.git] / dav / SabreDAV / ChangeLog
1 1.7.0-alpha (2012-??-??)
2     * BC Break: The calendarobjects database table has a bunch of new
3           fields, and a migration script is required to ensure everything will
4           keep working. Read the wiki for more details.
5         * BC Break: The iCalendar interface now has a new method: calendarQuery.
6         * BC Break: In this version a number of classes have been deleted, that
7           have been previously deprecated. Namely:
8                 - Sabre_DAV_Directory (now: Sabre_DAV_Collection)
9                 - Sabre_DAV_SimpleDirectory (now: Sabre_DAV_SimpleCollection)
10             - Sabre_VObject_Element_DateTime (now: .._Property_DateTime)
11                 - Sabre_VObject_Element_MultiDateTime (-> .._Property_MultiDateTime)
12         * BC Break: Sabre_CalDAV_Schedule_IMip::sendMessage now has an extra
13           argument. If you extended this class, you should fix this method. It's
14           only used for informational purposes.
15         * New feature: Support for caldav notifications!
16         * Changed: Responsibility for dealing with the calendar-query is now
17           moved from the CalDAV plugin to the CalDAV backends. This allows for
18           heavy optimizations.
19         * Changed: The CalDAV PDO backend is now a lot faster for common
20           calendar queries.
21         * Fixed: Marking both the text/calendar and text/x-vcard as UTF-8
22           encoded.
23         * Fixed: Workaround for the SOGO connector, as it doesn't understand
24           receiving "text/x-vcard; charset=utf-8" for a contenttype.
25         * Added: Sabre_DAV_Client now throws more specific exceptions in cases
26           where we already has an exception class.
27         * Added: Sabre_DAV_PartialUpdate. This plugin allows you to use the
28           PATCH method to update parts of a file.
29         * Added: Tons of timezone name mappings for Microsoft Exchange.
30         * Added: Support for an 'exception' event.
31         * Fixed: Uploaded VCards without a UID are now rejected. (thanks Dominik!)
32         * Fixed: Rejecting calendar objects if they are not in the
33           supported-calendar-component list. (thanks Armin!)
34
35 1.6.4-stable (2012-??-??)
36         * Fixed: Issue 220: Calendar-query filters may fail when filtering on
37           alarms, if an overridden event has it's alarm removed.
38         * Fixed: Compatibility for OS/X 10.8 iCal in the IMipHandler.
39         * Fixed: Issue 222: beforeWriteContent shouldn't be called for lock
40           requests.
41         * Fixed: Problem with POST requests to the outbox if mailto: was not lower
42           cased.
43
44 1.6.3-stable (2012-06-12)
45         * Added: It's now possible to specify in Sabre_DAV_Client which type of
46           authentication is to be used.
47         * Fixed: Issue 206: Sabre_DAV_Client PUT requests are fixed.
48         * Fixed: Issue 205: Parsing an iCalendar 0-second date interval.
49         * Fixed: Issue 112: Stronger validation of iCalendar objects. Now making
50           sure every iCalendar object only contains 1 component, and disallowing
51           vcards, forcing every component to have a UID.
52         * Fixed: Basic validation for vcards in the CardDAV plugin.
53         * Fixed: Issue 213: Workaround for an Evolution bug, that prevented it
54           from updating events.
55         * Fixed: Issue 211: A time-limit query on a non-relative alarm trigger in
56           a recurring event could result in an endless loop.
57         * Fixed: All uri fields are now a maximum of 200 characters. The Bynari
58           outlook plugin used much longer strings so this should improve
59           compatibility.
60         * Fixed: Added a workaround for a bug in KDE 4.8.2 contact syncing. See
61           https://bugs.kde.org/show_bug.cgi?id=300047
62         * Fixed: Issue 217: Sabre_DAV_Tree_FileSystem was pretty broken.
63
64 1.6.2-stable (2012-04-16)
65         * Fixed: Sabre_VObject_Node::$parent should have been public.
66         * Fixed: Recurrence rules of events are now taken into consideration when
67           doing time-range queries on alarms.
68         * Fixed: Added a workaround for the fact that php's DateInterval cannot
69           parse weeks and days at the same time.
70         * Added: Sabre_DAV_Server::$exposeVersion, allowing you to hide SabreDAV's
71           version number from various outputs.
72         * Fixed: DTSTART values would be incorrect when expanding events.
73         * Fixed: DTSTART and DTEND would be incorrect for expansion of WEEKLY
74           BYDAY recurrences.
75         * Fixed: Issue 203: A problem with overridden events hitting the exact
76           date and time of a subsequent event in the recurrence set.
77         * Fixed: There was a problem with recurrence rules, for example the 5th
78           tuesday of the month, if this day did not exist.
79         * Added: New HTTP status codes from draft-nottingham-http-new-status-04.
80
81 1.6.1-stable (2012-03-05)
82         * Added: createFile and put() can now return an ETag.
83         * Added: Sending back an ETag on for operations on CardDAV backends. This
84           should help with OS X 10.6 Addressbook compatibility.
85         * Fixed: Fixed a bug where an infinite loop could occur in the recurrence
86           iterator if the recurrence was YEARLY, with a BYMONTH rule, and either
87           BYDAY or BYMONTHDAY match the first day of the month.
88         * Fixed: Events that are excluded using EXDATE are still counted in the
89           COUNT= parameter in the RRULE property.
90         * Added: Support for time-range filters on VALARM components.
91         * Fixed: Correctly filtering all-day events.
92         * Fixed: Sending back correct mimetypes from the browser plugin (thanks
93           Jürgen).
94         * Fixed: Issue 195: Sabre_CardDAV pear package had an incorrect dependency.
95         * Fixed: Calendardata would be destroyed when performing a MOVE request.
96
97 1.6.0-stable (2012-02-22)
98         * BC Break: Now requires PHP 5.3
99         * BC Break: Any node that implemented Sabre_DAVACL_IACL must now also
100           implement the getSupportedPrivilegeSet method. See website for details.
101         * BC Break: Moved functions from Sabre_CalDAV_XMLUtil to
102           Sabre_VObject_DateTimeParser.
103         * BC Break: The Sabre_DAVACL_IPrincipalCollection now has two new methods:
104           'searchPrincipals' and 'updatePrincipal'.
105         * BC Break: Sabre_DAV_ILockable is removed and all related per-node
106           locking functionality.
107         * BC Break: Sabre_DAV_Exception_FileNotFound is now deprecated in favor of
108           Sabre_DAV_Exception_NotFound. The former will be removed in a later
109           version.
110         * BC Break: Removed Sabre_CalDAV_ICalendarUtil, use Sabre_VObject instead.
111         * BC Break: Sabre_CalDAV_Server is now deprecated, check out the
112           documentation on how to setup a caldav server with just
113           Sabre_DAV_Server.
114         * BC Break: Default Principals PDO backend now needs a new field in the
115           'principals' table. See the website for details.
116         * Added: Ability to create new calendars and addressbooks from within the
117           browser plugin.
118         * Added: Browser plugin: icons for various nodes.
119         * Added: Support for FREEBUSY reports!
120         * Added: Support for creating principals with admin-level privileges.
121         * Added: Possibility to let server send out invitation emails on behalf of
122           CalDAV client, using Sabre_CalDAV_Schedule_IMip.
123         * Changed: beforeCreateFile event now passes data argument by reference.
124         * Changed: The 'propertyMap' property from Sabre_VObject_Reader, must now
125           be specified in Sabre_VObject_Property::$classMap.
126         * Added: Ability for plugins to tell the ACL plugin which principal
127           plugins are searchable.
128         * Added: [DAVACL] Per-node overriding of supported privileges. This allows
129           for custom privileges where needed.
130         * Added: [DAVACL] Public 'principalSearch' method on the DAVACL plugin,
131           which allows for easy searching for principals, based on their
132           properties.
133         * Added: Sabre_VObject_Component::getComponents() to return a list of only
134           components and not properties.
135         * Added: An includes.php file in every sub-package (CalDAV, CardDAV, DAV,
136           DAVACL, HTTP, VObject) as an alternative to the autoloader. This often
137           works much faster.
138         * Added: Support for the 'Me card', which allows Addressbook.app users
139           specify which vcard is their own.
140         * Added: Support for updating principal properties in the DAVACL principal
141           backends.
142         * Changed: Major refactoring in the calendar-query REPORT code. Should
143           make things more flexible and correct.
144         * Changed: The calendar-proxy-[read|write] principals will now only appear
145           in the tree, if they actually exist in the Principal backend. This should
146           reduce some problems people have been having with this.
147         * Changed: Sabre_VObject_Element_* classes are now renamed to
148           Sabre_VObject_Property. Old classes are retained for backwards
149           compatibility, but this will be removed in the future.
150         * Added: Sabre_VObject_FreeBusyGenerator to generate free-busy reports
151           based on lists of events.
152         * Added: Sabre_VObject_RecurrenceIterator to find all the dates and times
153           for recurring events.
154         * Fixed: Issue 97: Correctly handling RRULE for the calendar-query REPORT.
155         * Fixed: Issue 154: Encoding of VObject parameters with no value was
156           incorrect.
157         * Added: Support for {DAV:}acl-restrictions property from RFC3744.
158         * Added: The contentlength for calendar objects can now be supplied by a
159           CalDAV backend, allowing for more optimizations.
160         * Fixed: Much faster implementation of Sabre_DAV_URLUtil::encodePath.
161         * Fixed: {DAV:}getcontentlength may now be not specified.
162         * Fixed: Issue 66: Using rawurldecode instead of urldecode to decode paths
163           from clients. This means that + will now be treated as a literal rather
164           than a space, and this should improve compatibility with the Windows
165           built-in client.
166         * Added: Sabre_DAV_Exception_PaymentRequired exception, to emit HTTP 402
167           status codes.
168         * Added: Some mysql unique constraints to example files.
169         * Fixed: Correctly formatting HTTP dates.
170         * Fixed: Issue 94: Sending back Last-Modified header for 304 responses.
171         * Added: Sabre_VObject_Component_VEvent, Sabre_VObject_Component_VJournal,
172           Sabre_VObject_Component_VTodo and Sabre_VObject_Component_VCalendar.
173         * Changed: Properties are now also automatically mapped to their
174           appropriate classes, if they are created using the add() or __set()
175           methods.
176         * Changed: Cloning VObject objects now clones the entire tree, rather than
177       just the default shallow copy.
178         * Added: Support for recurrence expansion in the CALDAV:calendar-multiget
179           and CALDAV:calendar-query REPORTS.
180         * Changed: CalDAV PDO backend now sorts calendars based on the internal
181           'calendarorder' field.
182         * Added: Issue 181: Carddav backends may no optionally not supply the carddata in
183           getCards, if etag and size are specified. This may speed up certain
184           requests.
185         * Added: More arguments to beforeWriteContent and beforeCreateFile (see
186           WritingPlugins wiki document).
187         * Added: Hook for iCalendar validation. This allows us to validate
188           iCalendar objects when they're uploaded. At the moment we're just
189           validating syntax.
190         * Added: VObject now support Windows Timezone names correctly (thanks
191           mrpace2).
192         * Added: If a timezonename could not be detected, we fall back on the
193           default PHP timezone.
194         * Added: Now a Composer package (thanks willdurand).
195         * Fixed: Support for \N as a newline character in the VObject reader.
196         * Added: afterWriteContent, afterCreateFile and afterUnbind events.
197         * Added: Postgresql example files. Not part of the unittests though, so
198           use at your own risk.
199         * Fixed: Issue 182: Removed backticks from sql queries, so it will work
200           with Postgres.
201
202 1.5.9-stable (2012-04-16)
203         * Fixed: Issue with parsing timezone identifiers that were surrounded by
204           quotes. (Fixes emClient compatibility).
205
206 1.5.8-stable (2012-02-22)
207         * Fixed: Issue 95: Another timezone parsing issue, this time in
208           calendar-query.
209
210 1.5.7-stable (2012-02-19)
211         * Fixed: VObject properties are now always encoded before components.
212         * Fixed: Sabre_DAVACL had issues with multiple levels of privilege
213           aggregration.
214         * Changed: Added 'GuessContentType' plugin to fileserver.php example.
215         * Fixed: The Browser plugin will now trigger the correct events when
216           creating files.
217         * Fixed: The ICSExportPlugin now considers ACL's.
218         * Added: Made it optional to supply carddata from an Addressbook backend
219           when requesting getCards. This can make some operations much faster, and
220           could result in much lower memory use.
221         * Fixed: Issue 187: Sabre_DAV_UUIDUtil was missing from includes file.
222         * Fixed: Issue 191: beforeUnlock was triggered twice.
223
224 1.5.6-stable (2012-01-07)
225         * Fixed: Issue 174: VObject could break UTF-8 characters.
226         * Fixed: pear package installation issues.
227
228 1.5.5-stable (2011-12-16)
229         * Fixed: CalDAV time-range filter workaround for recurring events.
230         * Fixed: Bug in Sabre_DAV_Locks_Backend_File that didn't allow multiple
231           files to be locked at the same time.
232
233 1.5.4-stable (2011-10-28)
234         * Fixed: GuessContentType plugin now supports mixed case file extensions.
235         * Fixed: DATE-TIME encoding was wrong in VObject. (we used 'DATETIME').
236         * Changed: Sending back HTTP 204 after a PUT request on an existing resource
237           instead of HTTP 200. This should fix Evolution CardDAV client
238           compatibility.
239         * Fixed: Issue 95: Parsing X-LIC-LOCATION if it's available.
240         * Added: All VObject elements now have a reference to their parent node.
241
242 1.5.3-stable (2011-09-28)
243         * Fixed: Sabre_DAV_Collection was missing from the includes file.
244         * Fixed: Issue 152. iOS 1.4.2 apparantly requires HTTP/1.1 200 OK to be in
245           uppercase.
246         * Fixed: Issue 153: Support for files with mixed newline styles in
247           Sabre_VObject.
248         * Fixed: Issue 159: Automatically converting any vcard and icalendardata
249           to UTF-8.
250         * Added: Sabre_DAV_SimpleFile class for easy static file creation.
251         * Added: Issue 158: Support for the CARDDAV:supported-address-data
252           property.
253
254 1.5.2-stable (2011-09-21)
255         * Fixed: carddata and calendardata MySQL fields are now of type
256           'mediumblob'. 'TEXT' was too small sometimes to hold all the data.
257         * Fixed: {DAV:}supported-report-set is now correctly reporting the reports
258           for IAddressBook.
259         * Added: Sabre_VObject_Property::add() to add duplicate parameters to
260           properties.
261         * Added: Issue 151: Sabre_CalDAV_ICalendar and Sabre_CalDAV_ICalendarObject
262           interfaces.
263         * Fixed: Issue 140: Not returning 201 Created if an event cancelled the
264           creation of a file.
265         * Fixed: Issue 150: Faster URLUtil::encodePath() implementation.
266         * Fixed: Issue 144: Browser plugin could interfere with
267           TemporaryFileFilterPlugin if it was loaded first.
268         * Added: It's not possible to specify more 'alternate uris' in principal
269           backends.
270
271 1.5.1-stable (2011-08-24)
272         * Fixed: Issue 137. Hiding action interface in HTML browser for
273           non-collections.
274         * Fixed: addressbook-query is now correctly returned from the
275           {DAV:}supported-report-set property.
276         * Fixed: Issue 142: Bugs in groupwareserver.php example.
277         * Fixed: Issue 139: Rejecting PUT requests with Content-Range.
278
279 1.5.0-stable (2011-08-12)
280         * Added: CardDAV support.
281         * Added: An experimental WebDAV client.
282         * Added: MIME-Directory grouping support in the VObject library. This is
283           very useful for people attempting to parse vcards.
284         * BC Break: Adding parameters with the VObject libraries now overwrites
285           the previous parameter, rather than just add it. This makes more sense
286           for 99% of the cases.
287         * BC Break: lib/Sabre.autoload.php is now removed in favor of
288           lib/Sabre/autoload.php.
289         * Deprecated: Sabre_DAV_Directory is now deprecated and will be removed in
290           a future version. Use Sabre_DAV_Collection instead.
291         * Deprecated: Sabre_DAV_SimpleDirectory is now deprecated and will be
292           removed in a future version. Use Sabre_DAV_SimpleCollection instead.
293         * Fixed: Problem with overriding tablenames for the CalDAV backend.
294         * Added: Clark-notation parser to XML utility.
295         * Added: unset() support to VObject components.
296         * Fixed: Refactored CalDAV property fetching to be faster and simpler.
297         * Added: Central string-matcher for CalDAV and CardDAV plugins.
298         * Added: i;unicode-casemap support
299         * Fixed: VObject bug: wouldn't parse parameters if they weren't specified
300           in uppercase.
301         * Fixed: VObject bug: Parameters now behave more like Properties.
302         * Fixed: VObject bug: Parameters with no value are now correctly parsed.
303         * Changed: If calendars don't specify which components they allow, 'all'
304           components are assumed (e.g.: VEVENT, VTODO, VJOURNAL).
305         * Changed: Browser plugin now uses POST variable 'sabreAction' instead of
306           'action' to reduce the chance of collisions.
307
308 1.4.4-stable (2011-07-07)
309         * Fixed: Issue 131: Custom CalDAV backends could break in certain cases.
310         * Added: The option to override the default tablename all PDO backends
311           use. (Issue 60).
312         * Fixed: Issue 124: 'File' authentication backend now takes realm into
313           consideration.
314         * Fixed: Sabre_DAV_Property_HrefList now properly deserializes. This
315           allows users to update the {DAV:}group-member-set property.
316         * Added: Helper functions for DateTime-values in Sabre_VObject package.
317         * Added: VObject library can now automatically map iCalendar properties to
318           custom classes.
319
320 1.4.3-stable (2011-04-25)
321         * Fixed: Issue 123: Added workaround for Windows 7 UNLOCK bug.
322         * Fixed: datatype of lastmodified field in mysql.calendars.sql. Please
323           change the DATETIME field to an INT to ensure this field will work
324           correctly.
325         * Change: Sabre_DAV_Property_Principal is now renamed to
326           Sabre_DAVACL_Property_Principal.
327         * Added: API level support for ACL HTTP method.
328         * Fixed: Bug in serializing {DAV:}acl property.
329         * Added: deserializer for {DAV:}resourcetype property.
330         * Added: deserializer for {DAV:}acl property.
331         * Added: deserializer for {DAV:}principal property.
332
333 1.4.2-beta (2011-04-01)
334         * Added: It's not possible to disable listing of nodes that are denied
335           read access by ACL.
336         * Fixed: Changed a few properties in CalDAV classes from private to
337           protected.
338         * Fixed: Issue 119: Terrible things could happen when relying on
339           guessBaseUri, the server was running on the root of the domain and a user
340           tried to access a file ending in .php. This is a slight BC break.
341         * Fixed: Issue 118: Lock tokens in If headers without a uri should be
342           treated as the request uri, not 'all relevant uri's.
343         * Fixed: Issue 120: PDO backend was incorrectly fetching too much locks in
344           cases where there were similar named locked files in a directory.
345
346 1.4.1-beta (2011-02-26)
347         * Fixed: Sabre_DAV_Locks_Backend_PDO returned too many locks.
348         * Fixed: Sabre_HTTP_Request::getHeader didn't return Content-Type when
349           running on apache, so a few workarounds were added.
350         * Change: Slightly changed CalDAV Backend API's, to allow for heavy
351           optimizations. This is non-bc breaking.
352
353 1.4.0-beta (2011-02-12)
354         * Added: Partly RFC3744 ACL support.
355         * Added: Calendar-delegation (caldav-proxy) support.
356         * BC break: In order to fix Issue 99, a new argument had to be added to
357           Sabre_DAV_Locks_Backend_*::getLocks classes. Consult the classes for
358           details.
359         * Deprecated: Sabre_DAV_Locks_Backend_FS is now deprecated and will be
360           removed in a later version. Use PDO or the new File class instead.
361         * Deprecated: The Sabre_CalDAV_ICalendarUtil class is now marked
362           deprecated, and will be removed in a future version. Please use
363           Sabre_VObject instead.
364         * Removed: All principal-related functionality has been removed from the
365           Sabre_DAV_Auth_Plugin, and moved to the Sabre_DAVACL_Plugin.
366         * Added: VObject library, for easy vcard/icalendar parsing using a natural
367           interface.
368         * Added: Ability to automatically generate full .ics feeds off calendars.
369           To use: Add the Sabre_CalDAV_ICSExportPlugin, and add ?export to your
370           calendar url.
371         * Added: Plugins can now specify a pluginname, for easy access using
372           Sabre_DAV_Server::getPlugin().
373         * Added: beforeGetProperties event.
374         * Added: updateProperties event.
375         * Added: Principal listings and calendar-access can now be done privately,
376           disallowing users from accessing or modifying other users' data.
377         * Added: You can now pass arrays to the Sabre_DAV_Server constructor. If
378           it's an array with node-objects, a Root collection will automatically be
379           created, and the nodes are used as top-level children.
380         * Added: The principal base uri is now customizable. It used to be
381           hardcoded to 'principals/[user]'.
382         * Added: getSupportedReportSet method in ServerPlugin class. This allows
383           you to easily specify which reports you're implementing.
384         * Added: A '..' link to the HTML browser.
385         * Fixed: Issue 99: Locks on child elements were ignored when their parent
386           nodes were deleted.
387         * Fixed: Issue 90: lockdiscovery property and LOCK response now include a
388           {DAV}lockroot element.
389         * Fixed: Issue 96: support for 'default' collation in CalDAV text-match
390           filters.
391         * Fixed: Issue 102: Ensuring that copy and move with identical source and
392           destination uri's fails.
393         * Fixed: Issue 105: Supporting MKCALENDAR with no body.
394         * Fixed: Issue 109: Small fixes in Sabre_HTTP_Util.
395         * Fixed: Issue 111: Properly catching the ownername in a lock (if it's a
396           string)
397         * Fixed: Sabre_DAV_ObjectTree::nodeExist always returned false for the
398           root node.
399         * Added: Global way to easily supply new resourcetypes for certain node
400           classes.
401         * Fixed: Issue 59: Allowing the user to override the authentication realm
402           in Sabre_CalDAV_Server.
403         * Update: Issue 97: Looser time-range checking if there's a recurrence
404           rule in an event. This fixes 'missing recurring events'.
405
406 1.3.0 (2010-10-14)
407         * Added: childExists method to Sabre_DAV_ICollection. This is an api
408           break, so if you implement Sabre_DAV_ICollection directly, add the method.
409         * Changed: Almost all HTTP method implementations now take a uri argument,
410           including events. This allows for internal rerouting of certain calls.
411           If you have custom plugins, make sure they use this argument. If they
412           don't, they will likely still work, but it might get in the way of
413           future changes.
414         * Changed: All getETag methods MUST now surround the etag with
415           double-quotes. This was a mistake made in all previous SabreDAV
416           versions. If you don't do this, any If-Match, If-None-Match and If:
417           headers using Etags will work incorrectly. (Issue 85).
418         * Added: Sabre_DAV_Auth_Backend_AbstractBasic class, which can be used to
419           easily implement basic authentication.
420         * Removed: Sabre_DAV_PermissionDenied class. Use Sabre_DAV_Forbidden
421           instead.
422         * Removed: Sabre_DAV_IDirectory interface, use Sabre_DAV_ICollection
423           instead.
424         * Added: Browser plugin now uses {DAV:}displayname if this property is
425           available.
426         * Added: Cache layer in the ObjectTree.
427         * Added: Tree classes now have a delete and getChildren method.
428         * Fixed: If-Modified-Since and If-Unmodified-Since would be incorrect if
429           the date is an exact match.
430         * Fixed: Support for multiple ETags in If-Match and If-None-Match headers.
431         * Fixed: Improved baseUrl handling.
432         * Fixed: Issue 67: Non-seekable stream support in ::put()/::get().
433         * Fixed: Issue 65: Invalid dates are now ignored.
434         * Updated: Refactoring in Sabre_CalDAV to make everything a bit more
435           ledgable.
436         * Fixed: Issue 88, Issue 89: Fixed compatibility for running SabreDAV on
437            Windows.
438         * Fixed: Issue 86: Fixed Content-Range top-boundary from 'file size' to
439           'file size'-1.
440
441 1.2.4 (2010-07-13)
442         * Fixed: Issue 62: Guessing baseUrl fails when url contains a
443           query-string.
444         * Added: Apache configuration sample for CGI/FastCGI setups.
445         * Fixed: Issue 64: Only returning calendar-data when it was actually
446           requested.
447
448 1.2.3 (2010-06-26)
449         * Fixed: Issue 57: Supporting quotes around etags in If-Match and
450           If-None-Match
451
452 1.2.2 (2010-06-21)
453         * Updated: SabreDAV now attempts to guess the BaseURI if it's not set.
454         * Updated: Better compatibility with BitKinex
455         * Fixed: Issue 56: Incorrect behaviour for If-None-Match headers and GET
456           requests.
457         * Fixed: Issue with certain encoded paths in Browser Plugin.
458
459 1.2.1 (2010-06-07)
460         * Fixed: Issue 50, patch by Mattijs Hoitink.
461         * Fixed: Issue 51, Adding windows 7 lockfiles to TemporaryFileFilter.
462         * Fixed: Issue 38, Allowing custom filters to be added to
463           TemporaryFileFilter.
464         * Fixed: Issue 53, ETags in the If: header were always failing. This
465           behaviour is now corrected.
466         * Added: Apache Authentication backend, in case authentication through
467           .htaccess is desired.
468         * Updated: Small improvements to example files.
469
470 1.2.0 (2010-05-24)
471         * Fixed: Browser plugin now displays international characters.
472         * Changed: More properties in CalDAV classes are now protected instead of
473           private.
474
475 1.2.0beta3 (2010-05-14)
476         * Fixed: Custom properties were not properly sent back for allprops
477           requests.
478         * Fixed: Issue 49, incorrect parsing of PROPPATCH, affecting Office 2007.
479         * Changed: Removed CalDAV items from includes.php, and added a few missing
480           ones.
481
482 1.2.0beta2 (2010-05-04)
483         * Fixed: Issue 46: Fatal error for some non-existent nodes.
484         * Updated: some example sql to include email address.
485         * Added: 208 and 508 statuscodes from RFC5842.
486         * Added: Apache2 configuration examples
487
488 1.2.0beta1 (2010-04-28)
489         * Fixed: redundant namespace declaration in resourcetypes.
490         * Fixed: 2 locking bugs triggered by litmus when no Sabre_DAV_ILockable
491           interface is used.
492         * Changed: using http://sabredav.org/ns for all custom xml properties.
493         * Added: email address property to principals.
494         * Updated: CalendarObject validation.
495
496 1.2.0alpha4 (2010-04-24)
497         * Added: Support for If-Range, If-Match, If-None-Match, If-Modified-Since,
498           If-Unmodified-Since.
499         * Changed: Brand new build system. Functionality is split up between
500           Sabre, Sabre_HTTP, Sabre_DAV and Sabre_CalDAV packages. In addition to
501           that a new non-pear package will be created with all this functionality
502           combined.
503         * Changed: Autoloader moved to Sabre/autoload.php.
504         * Changed: The Allow: header is now more accurate, with appropriate HTTP
505           methods per uri.
506         * Changed: Now throwing back Sabre_DAV_Exception_MethodNotAllowed on a few
507           places where Sabre_DAV_Exception_NotImplemented was used.
508
509 1.2.0alpha3 (2010-04-20)
510         * Update: Complete rewrite of property updating. Now easier to use and
511           atomic.
512         * Fixed: Issue 16, automatically adding trailing / to baseUri.
513         * Added: text/plain is used for .txt files in GuessContentType plugin.
514         * Added: support for principal-property-search and
515           principal-search-property-set reports.
516         * Added: Issue 31: Hiding exception information by default. Can be turned
517           on with the Sabre_DAV_Server::$debugExceptions property.
518
519 1.2.0alpha2 (2010-04-08)
520         * Added: Calendars are now private and can only be read by the owner.
521         * Fixed: double namespace declaration in multistatus responses.
522         * Added: MySQL database dumps. MySQL is now also supported next to SQLite.
523         * Added: expand-properties REPORT from RFC 3253.
524         * Added: Sabre_DAV_Property_IHref interface for properties exposing urls.
525         * Added: Issue 25: Throwing error on broken Finder behaviour.
526         * Changed: Authentication backend is now aware of current user.
527
528 1.2.0alpha1 (2010-03-31)
529         * Fixed: Issue 26: Workaround for broken GVFS behaviour with encoded
530           special characters.
531         * Fixed: Issue 34: Incorrect Lock-Token response header for LOCK. Fixes
532           Office 2010 compatibility.
533         * Added: Issue 35: SabreDAV version to header to OPTIONS response to ease
534           debugging.
535         * Fixed: Issue 36: Incorrect variable name, throwing error in some
536           requests.
537         * Fixed: Issue 37: Incorrect smultron regex in temporary filefilter.
538         * Fixed: Issue 33: Converting ISO-8859-1 characters to UTF-8.
539         * Fixed: Issue 39 & Issue 40: Basename fails on non-utf-8 locales.
540         * Added: More unittests.
541         * Added: SabreDAV version to all error responses.
542         * Added: URLUtil class for decoding urls.
543         * Changed: Now using pear.sabredav.org pear channel.
544         * Changed: Sabre_DAV_Server::getCopyAndMoveInfo is now a public method.
545
546 1.1.2-alpha (2010-03-18)
547         * Added: RFC5397 - current-user-principal support.
548         * Fixed: Issue 27: encoding entities in property responses.
549         * Added: naturalselection script now allows the user to specify a 'minimum
550           number of bytes' for deletion. This should reduce load due to less
551           crawling
552         * Added: Full support for the calendar-query report.
553         * Added: More unittests.
554         * Added: Support for complex property deserialization through the static
555           ::unserialize() method.
556         * Added: Support for modifying calendar-component-set
557         * Fixed: Issue 29: Added TIMEOUT_INFINITE constant
558
559 1.1.1-alpha (2010-03-11)
560         * Added: RFC5689 - Extended MKCOL support.
561         * Fixed: Evolution support for CalDAV.
562         * Fixed: PDO-locks backend was pretty much completely broken. This is
563           100% unittested now.
564         * Added: support for ctags.
565         * Fixed: Comma's between HTTP methods in 'Allow' method.
566         * Changed: default argument for Sabre_DAV_Locks_Backend_FS. This means a
567           datadirectory must always be specified from now on.
568         * Changed: Moved Sabre_DAV_Server::parseProps to
569           Sabre_DAV_XMLUtil::parseProperties.
570         * Changed: Sabre_DAV_IDirectory is now Sabre_DAV_ICollection.
571         * Changed: Sabre_DAV_Exception_PermissionDenied is now
572           Sabre_DAV_Exception_Forbidden.
573         * Changed: Sabre_CalDAV_ICalendarCollection is removed.
574         * Added: Sabre_DAV_IExtendedCollection.
575         * Added: Many more unittests.
576         * Added: support for calendar-timezone property.
577
578 1.1.0-alpha (2010-03-01)
579         * Note: This version is forked from version 1.0.5, so release dates may be
580           out of order.
581         * Added: CalDAV - RFC 4791
582         * Removed: Sabre_PHP_Exception. PHP has a built-in ErrorException for
583           this.
584         * Added: PDO authentication backend.
585         * Added: Example sql for auth, caldav, locks for sqlite.
586         * Added: Sabre_DAV_Browser_GuessContentType plugin
587         * Changed: Authentication plugin refactored, making it possible to
588           implement non-digest authentication.
589         * Fixed: Better error display in browser plugin.
590         * Added: Support for {DAV:}supported-report-set
591         * Added: XML utility class with helper functions for the WebDAV protocol.
592         * Added: Tons of unittests
593         * Added: PrincipalCollection and Principal classes
594         * Added: Sabre_DAV_Server::getProperties for easy property retrieval
595         * Changed: {DAV:}resourceType defaults to 0
596         * Changed: Any non-null resourceType now gets a / appended to the href
597           value. Before this was just for {DAV:}collection's, but this is now also
598           the case for for example {DAV:}principal.
599         * Changed: The Href property class can now optionally create non-relative
600           uri's.
601         * Changed: Sabre_HTTP_Response now returns false if headers are already
602           sent and header-methods are called.
603         * Fixed: Issue 19: HEAD requests on Collections
604         * Fixed: Issue 21: Typo in Sabre_DAV_Property_Response
605         * Fixed: Issue 18: Doesn't work with Evolution Contacts
606
607 1.0.15-stable (2010-05-28)
608         * Added: Issue 31: Hiding exception information by default. Can be turned
609           on with the Sabre_DAV_Server::$debugExceptions property.
610         * Added: Moved autoload from lib/ to lib/Sabre/autoload.php. This is also
611           the case in the upcoming 1.2.0, so it will improve future compatibility.
612
613 1.0.14-stable (2010-04-15)
614         * Fixed: double namespace declaration in multistatus responses.
615
616 1.0.13-stable (2010-03-30)
617         * Fixed: Issue 40: Last references to basename/dirname
618
619 1.0.12-stable (2010-03-30)
620         * Fixed: Issue 37: Incorrect smultron regex in temporary filefilter.
621         * Fixed: Issue 26: Workaround for broken GVFS behaviour with encoded
622           special characters.
623         * Fixed: Issue 33: Converting ISO-8859-1 characters to UTF-8.
624         * Fixed: Issue 39: Basename fails on non-utf-8 locales.
625         * Added: More unittests.
626         * Added: SabreDAV version to all error responses.
627         * Added: URLUtil class for decoding urls.
628         * Updated: Now using pear.sabredav.org pear channel.
629
630 1.0.11-stable (2010-03-23)
631         * Non-public release. This release is identical to 1.0.10, but it is used
632           to test releasing packages to pear.sabredav.org.
633
634 1.0.10-stable (2010-03-22)
635         * Fixed: Issue 34: Invalid Lock-Token header response.
636         * Added: Issue 35: Addign SabreDAV version to HTTP OPTIONS responses.
637
638 1.0.9-stable (2010-03-19)
639         * Fixed: Issue 27: Entities not being encoded in PROPFIND responses.
640         * Fixed: Issue 29: Added missing TIMEOUT_INFINITE constant.
641
642 1.0.8-stable (2010-03-03)
643         * Fixed: Issue 21: typos causing errors
644         * Fixed: Issue 23: Comma's between methods in Allow header.
645         * Added: Sabre_DAV_ICollection interface, to aid in future compatibility.
646         * Added: Sabre_DAV_Exception_Forbidden exception. This will replace
647           Sabre_DAV_Exception_PermissionDenied in the future, and can already be
648           used to ensure future compatibility.
649
650 1.0.7-stable (2010-02-24)
651         * Fixed: Issue 19 regression for MS Office
652
653 1.0.6-stable (2010-02-23)
654         * Fixed: Issue 19: HEAD requests on Collections
655
656 1.0.5-stable (2010-01-22)
657         * Fixed: Fatal error when a malformed url was used for unlocking, in
658           conjuction with Sabre.autoload.php due to a incorrect filename.
659         * Fixed: Improved unittests and build system
660
661 1.0.4-stable (2010-01-11)
662         * Fixed: needed 2 different releases. One for googlecode and one for
663           pearfarm. This is to retain the old method to install SabreDAV until
664           pearfarm becomes the standard installation method.
665
666 1.0.3-stable (2010-01-11)
667         * Added: RFC4709 support (davmount)
668         * Added: 6 unittests
669         * Added: naturalselection. A tool to keep cache directories below a
670           specified theshold.
671         * Changed: Now using pearfarm.org channel server.
672
673 1.0.1-stable (2009-12-22)
674         * Fixed: Issue 15: typos in examples
675         * Fixed: Minor pear installation issues
676
677 1.0.0-stable (2009-11-02)
678         * Added: SimpleDirectory class. This class allows creating static
679           directory structures with ease.
680         * Changed: Custom complex properties and exceptions now get an instance of
681           Sabre_DAV_Server as their first argument in serialize()
682         * Changed: Href complex property now prepends server's baseUri
683         * Changed: delete before an overwriting copy/move is now handles by server
684           class instead of tree classes
685         * Changed: events must now explicitly return false to stop execution.
686           Before, execution would be stopped by anything loosely evaluating to
687           false.
688         * Changed: the getPropertiesForPath method now takes a different set of
689           arguments, and returns a different response. This allows plugin
690           developers to return statuses for properties other than 200 and 404. The
691           hrefs are now also always calculated relative to the baseUri, and not
692           the uri of the request.
693         * Changed: generatePropFindResponse is renamed to generateMultiStatus, and
694           now takes a list of properties similar to the response of
695           getPropertiesForPath. This was also needed to improve flexibility for
696           plugin development.
697         * Changed: Auth plugins are no longer included. They were not yet stable
698           quality, so they will probably be reintroduced in a later version.
699         * Changed: PROPPATCH also used generateMultiStatus now.
700         * Removed: unknownProperties event. This is replaced by the
701           afterGetProperties event, which should provide more flexibility.
702         * Fixed: Only calling getSize() on IFile instances in httpHead()
703         * Added: beforeBind event. This is invoked upon file or directory creation
704         * Added: beforeWriteContent event, this is invoked by PUT and LOCK on an
705           existing resource.
706         * Added: beforeUnbind event. This is invoked right before deletion of any
707           resource.
708         * Added: afterGetProperties event. This event can be used to make
709           modifications to property responses.
710         * Added: beforeLock and beforeUnlock events.
711         * Added: afterBind event.
712         * Fixed: Copy and Move could fail in the root directory. This is now
713           fixed.
714         * Added: Plugins can now be retrieved by their classname. This is useful
715           for inter-plugin communication.
716         * Added: The Auth backend can now return usernames and user-id's.
717         * Added: The Auth backend got a getUsers method
718         * Added: Sabre_DAV_FSExt_Directory now returns quota info
719
720 0.12.1-beta (2009-09-11)
721         * Fixed: UNLOCK bug. Unlock didn't work at all
722
723 0.12-beta (2009-09-10)
724         * Updated: Browser plugin now shows multiple {DAV:}resourcetype values
725           if available.
726         * Added: Experimental PDO backend for Locks Manager
727         * Fixed: Sending Content-Length: 0 for every empty response. This
728           improves NGinx compatibility.
729         * Fixed: Last modification time is reported in UTC timezone. This improves
730           Finder compatibility.
731
732 0.11-beta (2009-08-11)
733         * Updated: Now in Beta
734         * Updated: Pear package no longer includes docs/ directory. These just
735           contained rfc's, which are publically available. This reduces the
736           package from ~800k to ~60k
737         * Added: generatePropfindResponse now takes a baseUri argument
738         * Added: ResourceType property can now contain multiple resourcetypes.
739         * Fixed: Issue 13.
740
741 0.10-alpha (2009-08-03)
742         * Added: Plugin to automatically map GET requests to non-files to
743           PROPFIND (Sabre_DAV_Browser_MapGetToPropFind). This should allow
744           easier debugging of complicated WebDAV setups.
745         * Added: Sabre_DAV_Property_Href class. For future use.
746         * Added: Ability to choose to use auth-int, auth or both for HTTP Digest
747           authentication. (Issue 11)
748         * Changed: Made more methods in Sabre_DAV_Server public.
749         * Fixed: TemporaryFileFilter plugin now intercepts HTTP LOCK requests
750           to non-existent files. (Issue 12)
751         * Added: Central list of defined xml namespace prefixes. This can reduce
752           Bandwidth and legibility for xml bodies with user-defined namespaces.
753         * Added: now a PEAR-compatible package again, thanks to Michael Gauthier
754         * Changed: moved default copy and move logic from ObjectTree to Tree class
755
756 0.9-alpha (2009-07-21)
757         * Changed: Major refactoring, removed most of the logic from the Tree
758           objects. The Server class now directly works with the INode, IFile
759           and IDirectory objects. If you created your own Tree objects,
760           this will most likely break in this release.
761         * Changed: Moved all the Locking logic from the Tree and Server classes
762           into a separate plugin.
763         * Changed: TemporaryFileFilter is now a plugin.
764         * Added: Comes with an autoloader script. This can be used instead of
765           the includer script, and is preferred by some people.
766         * Added: AWS Authentication class.
767         * Added: simpleserversetup.py script. This will quickly get a fileserver
768           up and running.
769         * Added: When subscribing to events, it is now possible to supply a
770           priority. This is for example needed to ensure that the Authentication
771           Plugin is used before any other Plugin.
772         * Added: 22 new tests.
773         * Added: Users-manager plugin for .htdigest files. Experimental and
774           subject to change.
775         * Added: RFC 2324 HTTP 418 status code
776         * Fixed: Exclusive locks could in some cases be picked up as shared locks
777         * Fixed: Digest auth for non-apache servers had a bug (still not actually
778           tested this well).
779
780 0.8-alpha (2009-05-30)
781         * Changed: Renamed all exceptions! This is a compatibility break. Every
782           Exception now follows Sabre_DAV_Exception_FileNotFound convention
783           instead of Sabre_DAV_FileNotFoundException.
784         * Added: Browser plugin now allows uploading and creating directories
785           straight from the browser.
786         * Added: 12 more unittests
787         * Fixed: Locking bug, which became prevalent on Windows Vista.
788         * Fixed: Netdrive support
789         * Fixed: TemporaryFileFilter filtered out too many files. Fixed some
790           of the regexes.
791         * Fixed: Added README and ChangeLog to package
792
793 0.7-alpha (2009-03-29)
794         * Added: System to return complex properties from PROPFIND.
795         * Added: support for {DAV:}supportedlock.
796         * Added: support for {DAV:}lockdiscovery.
797         * Added: 6 new tests.
798         * Added: New plugin system.
799         * Added: Simple HTML directory plugin, for browser access.
800         * Added: Server class now sends back standard pre-condition error xml
801         bodies. This was new since RFC4918.
802         * Added: Sabre_DAV_Tree_Aggregrate, which can 'host' multiple Tree objects
803         into one.
804         * Added: simple basis for HTTP REPORT method. This method is not used yet,
805         but can be used by plugins to add reports.
806         * Changed: ->getSize is only called for files, no longer for collections.
807         r303
808         * Changed: Sabre_DAV_FilterTree is now Sabre_DAV_Tree_Filter
809         * Changed: Sabre_DAV_TemporaryFileFilter is now called
810         Sabre_DAV_Tree_TemporaryFileFilter.
811         * Changed: removed functions (get(/set)HTTPRequest(/Response)) from Server
812         class, and using a public property instead.
813         * Fixed: bug related to parsing proppatch and propfind requests. Didn't
814         show up in most clients, but it needed fixing regardless. (r255)
815         * Fixed: auth-int is now properly supported within HTTP Digest.
816         * Fixed: Using application/xml for a mimetype vs. text/xml as per RFC4918
817         sec 8.2.
818         * Fixed: TemporaryFileFilter now lets through GET's if they actually
819         exist on the backend. (r274)
820         * FIxed: Some methods didn't get passed through in the FilterTree (r283).
821         * Fixed: LockManager is now slightly more complex, Tree classes slightly
822         less. (r287)
823
824 0.6-alpha (2009-02-16)
825         * Added: Now uses streams for files, instead of strings.
826           This means it won't require to hold entire files in memory, which can be
827           an issue if you're dealing with big files. Note that this breaks
828           compatibility for put() and createFile methods.
829         * Added: HTTP Digest Authentication helper class.
830         * Added: Support for HTTP Range header
831         * Added: Support for ETags within If: headers
832         * Added: The API can now return ETags and override the default Content-Type
833         * Added: starting with basic framework for unittesting, using PHPUnit.
834         * Added: 49 unittests.
835         * Added: Abstraction for the HTTP request.
836         * Updated: Using Clark Notation for tags in properties. This means tags
837         are serialized as {namespace}tagName instead of namespace#tagName
838         * Fixed: HTTP_BasicAuth class now works as expected.
839         * Fixed: DAV_Server uses / for a default baseUrl.
840         * Fixed: Last modification date is no longer ignored in PROPFIND.
841         * Fixed: PROPFIND now sends back information about the requestUri even
842           when "Depth: 1" is specified.
843
844 0.5-alpha (2009-01-14)
845         * Added: Added a very simple example for implementing a mapping to PHP
846           file streams. This should allow easy implementation of for example a
847           WebDAV to FTP proxy.
848         * Added: HTTP Basic Authentication helper class.
849         * Added: Sabre_HTTP_Response class. This centralizes HTTP operations and
850           will be a start towards the creating of a testing framework.
851         * Updated: Backwards compatibility break: all require_once() statements
852           are removed
853           from all the files. It is now recommended to use autoloading of
854           classes, or just including lib/Sabre.includes.php. This fix was made
855           to allow easier integration into applications not using this standard
856           inclusion model.
857         * Updated: Better in-file documentation.
858         * Updated: Sabre_DAV_Tree can now work with Sabre_DAV_LockManager.
859         * Updated: Fixes a shared-lock bug.
860         * Updated: Removed ?> from the bottom of each php file.
861         * Updated: Split up some operations from Sabre_DAV_Server to
862           Sabre_HTTP_Response.
863         * Fixed: examples are now actually included in the pear package.
864
865 0.4-alpha (2008-11-05)
866         * Passes all litmus tests!
867         * Added: more examples
868         * Added: Custom property support
869         * Added: Shared lock support
870         * Added: Depth support to locks
871         * Added: Locking on unmapped urls (non-existent nodes)
872         * Fixed: Advertising as WebDAV class 3 support
873
874 0.3-alpha (2008-06-29)
875         * Fully working in MS Windows clients.
876         * Added: temporary file filter: support for smultron files.
877         * Added: Phing build scripts
878         * Added: PEAR package
879         * Fixed: MOVE bug identified using finder.
880         * Fixed: Using gzuncompress instead of gzdecode in the temporary file
881           filter. This seems more common.
882
883 0.2-alpha (2008-05-27)
884         * Somewhat working in Windows clients
885         * Added: Working PROPPATCH method (doesn't support custom properties yet)
886         * Added: Temporary filename handling system
887         * Added: Sabre_DAV_IQuota to return quota information
888         * Added: PROPFIND now reads the request body and only supplies the
889           requested properties
890
891 0.1-alpha (2008-04-04)
892         * First release!
893         * Passes litmus: basic, http and copymove test.
894         * Fully working in Finder and DavFSv2
895
896 Project started: 2007-12-13