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