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