1ChangeLog
2=========
3
44.2.2 (2020-01-14)
5------------------
6
7* #465: Add TZ in iTip REPLY iTip messages
8* #486: Add PHONE-NUMBER value type (used for TEL in vCard 3.0)
9
104.2.1 (2019-12-18)
11------------------
12
13* #469, #451: fix compat with php 7.4
14* #443: prevent running in indefinte loop
15* #449: Preventing creating a component for a root document
16* #450: Fix parse with option Forgiving with trailing equal
17* #459: fixed typo in VCalendar which resulting in usage of the wrong TimeZone
18* #462: Broker::parseEventForOrganizer copies DTSTAMP from $eventInfo that causes broken scheduling
19
204.2.0 (2019-02-19)
21------------------
22
23* #432: DTSTAMP must be specified in UTC
24* #435: ORGANIZER e-mail address are case-insensitive
25* #441: Repairing BASE64 encoded vCard version 3
26
274.2.0-alpha1 (2018-09-26)
28-------------------------
29
30* #412: Broker: add timezone to CANCEL messages
31* #424: Support php7.3
32
334.1.6 (2018-04-20)
34------------------
35
36* #406, #407, #408, #409: Another round of performance improvements in serialization of properties (@gharlan, @staabm)
37* #410: Fixes in iTip for handling `BYDAY=SA,SO` (@gharlan)
38* #381: Fixes in iTip handling of `SCHEDULE-FORCE-SEND` (@alecpl)
39
404.1.5 (2018-03-08)
41------------------
42
43* #404: Serialization: Performance boost for long properties (@gharlan)
44
454.1.4 (2017-12-22)
46------------------
47
48* #383: Fix possible infinite loop in RRuleIterator, when the RRule FREQ
49  is YEARLY and it uses BYYEARDAY only (@mvdnes).
50* #392: Improved significant change detection. This should reduce the number of
51  unneeded update emails in scheduling systems. (@alecpl).
52* #395: Removed `Canada/East-Saskatchewan` timezone, as it got removed
53  from PHP as well. (@remicollet).
54
55
564.1.3 (2017-10-18)
57------------------
58
59* #363: Repair script and de-duplicate properties that are only allowed once,
60  but appear more than once. (@ddolcimascolo).
61* #377: Added Pacific Time (US & Canada) as exchange timezone
62* #384: Added fallback for VCards without `FN`
63
64
654.1.2 (2016-12-15)
66------------------
67
68* #340: Support for `BYYEARDAY` recurrence when `FREQ=YEARLY`. (@PHPGangsta)
69* #341: Support for `BYWEEKNO` recurrence when `FREQ=YEARLY`. (@PHPGangsta)
70* Updated to the latest windows timezone data mappings.
71* #344: Auto-detecting more Outlook 365-generated timezone identifiers.
72  (@jpirkey)
73* #348: `FreeBusyGenerator` can now accept streams.
74* Support sabre/xml 1.5 and 2.0.
75* #355: Support `DateTimeInterface` in more places where only `DateTime` was
76  supported. (@gharlan).
77* #351: Fixing an inclusive/exclusive problem with `isInTimeRange` and
78  `fastForward` with all-day events. (@strokyl, thanks you are brilliant).
79
80
814.1.1 (2016-07-15)
82------------------
83
84* #327: Throwing `InvalidDataException` in more cases where invalid iCalendar
85  dates and times were provided. (@rsto)
86* #331: Fix dealing with multiple overridden instances falling on the same
87  date/time (@afedyk-sugarcrm).
88* #333: Fix endless loop on invalid `BYMONTH` values in recurrence.
89  (@PHPGangsta)
90* #339: Fixed a few `validate()` results when repair is off. (@PHPGangsta)
91* #338: Stripping invalid `BYMONTH=` rules during `validate()` (@PHPGangsta)
92* #336: Fix incorrect `BYSECOND=` validation. (@PHPGangsta)
93
94
954.1.0 (2016-04-06)
96------------------
97
98* #309: When expanding recurring events, the first event should also have a
99  `RECURRENCE-ID` property.
100* #306: iTip REPLYs to the first instance of a recurring event was not handled
101  correctly.
102* Slightly better error message during validation of `N` and `ADR` properties.
103* #312: Correctly extracing timezone in the iTip broker, even when we don't
104  have a master event. (@vkomrakov-sugar).
105* When validating a component's property that must appear once and which could
106  automatically be repaired, make sure we report the change as 'repaired'.
107* Added a PHPUnitAssertions trait. This trait makes it easy to compare two
108  vcards or iCalendar objects semantically.
109* Better error message when parsing objects with an invalid `VALUE` parameter.
110
111
1124.0.3 (2016-03-12)
113------------------
114
115* #300: Added `VCard::getByType()` to quickly get a property with a specific
116  `TYPE` parameter. (@kbond)
117* #302: `UNTIL` was not encoded correctly when converting to jCal.
118  (@GrahamLinagora)
119* #303: `COUNT` is now encoded as an int in jCal instead of a string. (@strokyl)
120* #295: `RRULE` now has more validation and repair rules.
121
122
1234.0.2 (2016-01-11)
124------------------
125
126* #288: Only decode `CHARSET` if we're reading vCard 2.1. If it appears
127  in any other document, we must ignore it.
128
129
1304.0.1 (2016-01-04)
131------------------
132
133* #284: When generating `CANCEL` iTip messages, we now include `DTEND`.
134  (@kewisch)
135
136
1374.0.0 (2015-12-11)
138------------------
139
140* #274: When creating new vCards, the default vCard version is now 4.0.
141* #275: `VEVENT`, `VTODO` and `VCARD` now automatically get a `UID` and
142  `DTSTAMP` property if this was not already specified.
143* `ParseException` now extends `\Exception`.
144* `Sabre\VObject\Reader::read` now has a `$charset` argument.
145* #272: `Sabre\VObject\Recur\EventIterator::$maxInstances` is now
146  `Sabre\VObject\Settings::$maxRecurrences` and is also honored by the
147  FreeBusyGenerator.
148* #278: `expand()` did not work correctly on events with sub-components.
149
150
1514.0.0-beta1 (2015-12-02)
152------------------------
153
154* #258: Support for expanding events that use `RDATE`. (@jabdoa2)
155* #258: Correctly support TZID for events that use `RDATE`. (@jabdoa2)
156* #240: `Component\VCalendar::expand()` now returns a new expanded `VCalendar`
157  object, instead of editing the existing `VCalendar` in-place. This is a BC
158  break.
159* #265: Using the new `InvalidDataException` in place of
160  `InvalidArgumentException` and `LogicException` in all places where we fail
161  because there was something wrong with input data.
162* #227: Always add `VALUE=URI` to `PHOTO` properties.
163* #235: Always add `VALUE=URI` to `URL` properties.
164* It's now possible to override which class is used instead of
165  `Component\VCalendar` or `Component\VCard` during parsing.
166* #263: Lots of small cleanups. (@jakobsack)
167* #220: Automatically stop recurring after 3500 recurrences.
168* #41: Allow user to set different encoding than UTF-8 when decoding vCards.
169* #41: Support the `ENCODING` parameter from vCard 2.1.
170  Both ISO-8859-1 and Windows-1252 are currently supported.
171* #185: Fix encoding/decoding of `TIME` values in jCal/jCard.
172
173
1744.0.0-alpha2 (2015-09-04)
175-------------------------
176
177* Updated windows timezone file to support new mexican timezone.
178* #239: Added a `BirthdayCalendarGenerator`. (@DominikTo)
179* #250: `isInTimeRange()` now considers the timezone for floating dates and
180  times. (@armin-hackmann)
181* Added a duplicate vcard merging tool for the command line.
182* #253: `isInTimeRange()` now correctly handles events that throw the
183  `NoInstancesException` exception. (@migrax, @DominikTo)
184* #254: The parser threw an `E_NOTICE` for certain invalid objects. It now
185  correctly throws a `ParseException`.
186
187
1884.0.0-alpha1 (2015-07-17)
189-------------------------
190
191* sabre/vobject now requires PHP 5.5.
192* #244: PHP7 support.
193* Lots of speedups and reduced memory usage!
194* #160: Support for xCal a.k.a. RFC6321! (@Hywan)
195* #192: Support for xCard a.k.a. RFC6351! (@Hywan)
196* #139: We now accept `DateTimeInterface` wherever it accepted `DateTime`
197   before in arguments. This means that either `DateTime` or
198  `DateTimeImmutable` may be used everywhere.
199* #242: Full support for the `VAVAILABILITY` component, and calculating
200  `VFREEBUSY` based on `VAVAILABILITY` data.
201* #186: Fixing conversion of `UTC-OFFSET` properties when going back and
202  forward between jCal and iCalendar.
203* Properties, Components and Parameters now implement PHP's `JsonSerializable`
204  interface.
205* #139: We now _always_ return `DateTimeImmutable` from any method. This could
206  potentially have big implications if you manipulate Date objects anywhere.
207* #161: Simplified `ElementList` by extending `ArrayIterator`.
208* Removed `RecurrenceIterator` (use Recur\EventIterator instead).
209* Now using php-cs-fixer to automatically enforce and correct CS.
210* #233: The `+00:00` timezone is now recognized as UTC. (@c960657)
211* #237: Added a `destroy()` method to all documents. This method breaks any
212  circular references, allowing PHP to free up memory.
213* #197: Made accessing properties and objects by their name a lot faster. This
214  especially helps objects that have a lot of sub-components or properties,
215  such as large iCalendar objects.
216* #197: The `$children` property on components has been changed from `public`
217  to `protected`. Use the `children()` method instead to get a flat list of
218  objects.
219* #244: The `Float` and `Integer` classes have been renamed to `FloatValue`
220  and `IntegerValue` to allow PHP 7 compatibility.
221
222
2233.5.3 (2016-10-06)
224------------------
225
226* #331: Fix dealing with multiple overridden instances falling on the same
227  date/time (@afedyk-sugarcrm).
228
229
2303.5.2 (2016-04-24)
231-----------------
232
233* #312: Backported a fix related to iTip processing of events with timezones,
234  without a master event.
235
236
2373.5.1 (2016-04-06)
238------------------
239
240* #309: When expanding recurring events, the first event should also have a
241  `RECURRENCE-ID` property.
242* #306: iTip REPLYs to the first instance of a recurring event was not handled
243  correctly.
244
245
2463.5.0 (2016-01-11)
247------------------
248
249* This release supports PHP 7, contrary to 3.4.x versions.
250* BC Break: `Sabre\VObject\Property\Float` has been renamed to
251  `Sabre\VObject\Property\FloatValue`.
252* BC Break: `Sabre\VObject\Property\Integer` has been renamed to
253  `Sabre\VObject\Property\IntegerValue`.
254
255
2563.4.9 (2016-01-11)
257------------------
258
259* This package now specifies in composer.json that it does not support PHP 7.
260  For PHP 7, use version 3.5.x or 4.x.
261
262
2633.4.8 (2016-01-04)
264------------------
265
266* #284: When generating `CANCEL` iTip messages, we now include `DTEND`.
267  (@kewisch).
268
269
2703.4.7 (2015-09-05)
271------------------
272
273* #253: Handle `isInTimeRange` for recurring events that have 0 valid
274  instances. (@DominikTo, @migrax).
275
276
2773.4.6 (2015-08-06)
278------------------
279
280* #250: Recurring all-day events are incorrectly included in time range
281  requests when not using UTC in the time range. (@armin-hackmann)
282
283
2843.4.5 (2015-06-02)
285------------------
286
287* #229: Converting vcards from 3.0 to 4.0 that contained a `LANG` property
288  would throw an error.
289
290
2913.4.4 (2015-05-27)
292------------------
293
294* #228: Fixed a 'party crasher' bug in the iTip broker. This would break
295  scheduling in some cases.
296
297
2983.4.3 (2015-05-19)
299------------------
300
301* #219: Corrected validation of `EXDATE` properties with more than one value.
302* #212: `BYSETPOS` with values below `-1` was broken and could cause infinite
303  loops.
304* #211: Fix `BYDAY=-5TH` in recurrence iterator. (@lindquist)
305* #216: `ENCODING` parameter is now validated for all document types.
306* #217: Initializing vCard `DATE` objects with a PHP DateTime object will now
307  work correctly. (@thomascube)
308
309
3103.4.2 (2015-02-25)
311------------------
312
313* #210: iTip: Replying to an event without a master event was broken.
314
315
3163.4.1 (2015-02-24)
317------------------
318
319* A minor change to ensure that unittests work correctly in the sabre/dav
320  test-suite.
321
322
3233.4.0 (2015-02-23)
324------------------
325
326* #196: Made parsing recurrence rules a lot faster on big calendars.
327* Updated windows timezone mappings to latest unicode version.
328* #202: Support for parsing and validating `VAVAILABILITY` components. (@Hywan)
329* #195: PHP 5.3 compatibility in 'generatevcards' script. (@rickdenhaan)
330* #205: Improving handling of multiple `EXDATE` when processing iTip changes.
331  (@armin-hackmann)
332* #187: Fixed validator rules for `LAST-MODIFIED` properties.
333* #188: Retain floating times when generating instances using
334  `Recur\EventIterator`.
335* #203: Skip tests for timezones that are not supported on older PHP versions,
336  instead of a hard fail.
337* #204: Dealing a bit better with vCard date-time values that contained
338  milliseconds. (which is normally invalid). (@armin-hackmann)
339
340
3413.3.5 (2015-01-09)
342------------------
343
344* #168: Expanding calendars now removes objects with recurrence rules that
345  don't have a valid recurrence instance.
346* #177: SCHEDULE-STATUS should not contain a reason phrase, only a status
347  code.
348* #175: Parser can now read and skip the UTF-8 BOM.
349* #179: Added `isFloating` to `DATE-TIME` properties.
350* #179: Fixed jCal serialization of floating `DATE-TIME` properties.
351* #173: vCard converter failed for `X-ABDATE` properties that had no
352  `X-ABLABEL`.
353* #180: Added `PROFILE_CALDAV` and `PROFILE_CARDDAV` to enable validation rules
354  specific for CalDAV/CardDAV servers.
355* #176: A missing `UID` is no longer an error, but a warning for the vCard
356  validator, unless `PROFILE_CARDDAV` is specified.
357
358
3593.3.4 (2014-11-19)
360------------------
361
362* #154: Converting `ANNIVERSARY` to `X-ANNIVERSARY` and `X-ABDATE` and
363  vice-versa when converting to/from vCard 4.
364* #154: It's now possible to easily select all vCard properties belonging to
365  a single group with `$vcard->{'ITEM1.'}` syntax. (@armin-hackmann)
366* #156: Simpler way to check if a string is UTF-8. (@Hywan)
367* Unittest improvements.
368* #159: The recurrence iterator, freebusy generator and iCalendar DATE and
369  DATE-TIME properties can now all accept a reference timezone when working
370  floating times or all-day events.
371* #159: Master events will no longer get a `RECURRENCE-ID` when expanding.
372* #159: `RECURRENCE-ID` for all-day events will now be correct when expanding.
373* #163: Added a `getTimeZone()` method to `VTIMEZONE` components.
374
375
3763.3.3 (2014-10-09)
377------------------
378
379* #142: `CANCEL` and `REPLY` messages now include the `DTSTART` from the
380  original event.
381* #143: `SCHEDULE-AGENT` on the `ORGANIZER` property is respected.
382* #144: `PARTSTAT=NEEDS-ACTION` is now set for new invites, if no `PARTSTAT` is
383  set to support the inbox feature of iOS.
384* #147: Bugs related to scheduling all-day events.
385* #148: Ignore events that have attendees but no organizer.
386* #149: Avoiding logging errors during timezone detection. This is a workaround
387  for a PHP bug.
388* Support for "Line Islands Standard Time" windows timezone.
389* #154: Correctly work around vCard parameters that have a value but no name.
390
391
3923.3.2 (2014-09-19)
393------------------
394
395* Changed: iTip broker now sets RSVP status to false when replies are received.
396* #118: iTip Message now has a `getScheduleStatus()` method.
397* #119: Support for detecting 'significant changes'.
398* #120: Support for `SCHEDULE-FORCE-SEND`.
399* #121: iCal demands parameters containing the + sign to be quoted.
400* #122: Don't generate REPLY messages for events that have been cancelled.
401* #123: Added `SUMMARY` to iTip messages.
402* #130: Incorrect validation rules for `RELATED` (should be `RELATED-TO`).
403* #128: `ATTACH` in iCalendar is `URI` by default, not `BINARY`.
404* #131: RRULE that doesn't provide a single valid instance now throws an
405  exception.
406* #136: Validator rejects *all* control characters. We were missing a few.
407* #133: Splitter objects will throw exceptions when receiving incompatible
408  objects.
409* #127: Attendees who delete recurring event instances events they had already
410  declined earlier will no longer generate another reply.
411* #125: Send CANCEL messages when ORGANIZER property gets deleted.
412
413
4143.3.1 (2014-08-18)
415------------------
416
417* Changed: It's now possible to pass DateTime objects when using the magic
418  setters on properties. (`$event->DTSTART = new DateTime('now')`).
419* #111: iTip Broker does not process attendee adding events to EXDATE.
420* #112: EventIterator now sets TZID on RECURRENCE-ID.
421* #113: Timezone support during creation of iTip REPLY messages.
422* #114: VTIMEZONE is retained when generating new REQUEST objects.
423* #114: Support for 'MAILTO:' style email addresses (in uppercase) in the iTip
424  broker. This improves evolution support.
425* #115: Using REQUEST-STATUS from REPLY messages and now propegating that into
426  SCHEDULE-STATUS.
427
428
4293.3.0 (2014-08-07)
430------------------
431
432* We now use PSR-4 for the directory structure. This means that everything
433  that was used to be in the `lib/Sabre/VObject` directory is now moved to
434  `lib/`. If you use composer to load this library, you shouldn't have to do
435  anything about that though.
436* VEVENT now get populated with a DTSTAMP and UID property by default.
437* BC Break: Removed the 'includes.php' file. Use composer instead.
438* #103: Added support for processing [iTip][iTip] messages. This allows a user
439  to parse incoming iTip messages and apply the result on existing calendars,
440  or automatically generate invites/replies/cancellations based on changes that
441  a user made on objects.
442* #75, #58, #18: Fixes related to overriding the first event in recurrences.
443* Added: VCalendar::getBaseComponent to find the 'master' component in a
444  calendar.
445* #51: Support for iterating RDATE properties.
446* Fixed: Issue #101: RecurrenceIterator::nextMonthly() shows events that are
447  excluded events with wrong time
448
449
4503.2.4 (2014-07-14)
451------------------
452
453* Added: Issue #98. The VCardConverter now takes `X-APPLE-OMIT-YEAR` into
454  consideration when converting between vCard 3 and 4.
455* Fixed: Issue #96. Some support for Yahoo's broken vcards.
456* Fixed: PHP 5.3 support was broken in the cli tool.
457
458
4593.2.3 (2014-06-12)
460------------------
461
462* Validator now checks if DUE and DTSTART are of the same type in VTODO, and
463  ensures that DUE is always after DTSTART.
464* Removed documentation from source repository, to http://sabre.io/vobject/
465* Expanded the vobject cli tool validation output to make it easier to find
466  issues.
467* Fixed: vobject repair. It was not working for iCalendar objects.
468
469
4703.2.2 (2014-05-07)
471------------------
472
473* Minor tweak in unittests to make it run on PHP 5.5.12. Json-prettifying
474  slightly changed which caused the test to fail.
475
476
4773.2.1 (2014-05-03)
478------------------
479
480* Minor tweak to make the unittests run with the latest hhvm on travis.
481* Updated timezone definitions.
482* Updated copyright links to point to http://sabre.io/
483
484
4853.2.0 (2014-04-02)
486------------------
487
488* Now hhvm compatible!
489* The validator can now detect a _lot_ more problems. Many rules for both
490  iCalendar and vCard were added.
491* Added: bin/generate_vcards, a utility to generate random vcards for testing
492  purposes. Patches are welcome to add more data.
493* Updated: Windows timezone mapping to latest version from unicode.org
494* Changed: The timezone maps are now loaded in from external files, in
495  lib/Sabre/VObject/timezonedata.
496* Added: Fixing badly encoded URL's from google contacts vcards.
497* Fixed: Issue #68. Couldn't decode properties ending in a colon.
498* Fixed: Issue #72. RecurrenceIterator should respect timezone in the UNTIL
499  clause.
500* Fixed: Issue #67. BYMONTH limit on DAILY recurrences.
501* Fixed: Issue #26. Return a more descriptive error when coming across broken
502  BYDAY rules.
503* Fixed: Issue #28. Incorrect timezone detection for some timezones.
504* Fixed: Issue #70. Casting a parameter with a null value to string would fail.
505* Added: Support for rfc6715 and rfc6474.
506* Added: Support for DateTime objects in the VCard DATE-AND-OR-TIME property.
507* Added: UUIDUtil, for easily creating unique identifiers.
508* Fixed: Issue #83. Creating new VALUE=DATE objects using php's DateTime.
509* Fixed: Issue #86. Don't go into an infinite loop when php errors are
510  disabled and an invalid file is read.
511
512
5133.1.4 (2014-03-30)
514------------------
515
516* Fixed: Issue #87: Several compatibility fixes related to timezone handling
517  changes in PHP 5.5.10.
518
519
5203.1.3 (2013-10-02)
521------------------
522
523* Fixed: Support from properties from draft-daboo-valarm-extensions-04. Issue
524  #56.
525* Fixed: Issue #54. Parsing a stream of multiple vcards separated by more than
526  one newline. Thanks @Vedmak for the patch.
527* Fixed: Serializing vcard 2.1 parameters with no name caused a literal '1' to
528  be inserted.
529* Added: VCardConverter removed properties that are no longer supported in vCard
530  4.0.
531* Added: vCards with a minimum number of values (such as N), but don't have that
532  many, are now automatically padded with empty components.
533* Added: The vCard validator now also checks for a minimum number of components,
534  and has the ability to repair these.
535* Added: Some support for vCard 2.1 in the VCard converter, to upgrade to vCard
536  3.0 or 4.0.
537* Fixed: Issue 60 Use Document::$componentMap when instantiating the top-level
538  VCalendar and VCard components.
539* Fixed: Issue 62: Parsing iCalendar parameters with no value.
540* Added: --forgiving option to vobject utility.
541* Fixed: Compound properties such as ADR were not correctly split up in vCard
542  2.1 quoted printable-encoded properties.
543* Fixed: Issue 64: Encoding of binary properties of converted vCards. Thanks
544  @DominikTo for the patch.
545
546
5473.1.2 (2013-08-13)
548------------------
549
550* Fixed: Setting correct property group on VCard conversion
551
552
5533.1.1 (2013-08-02)
554------------------
555
556* Fixed: Issue #53. A regression in RecurrenceIterator.
557
558
5593.1.0 (2013-07-27)
560------------------
561
562* Added: bad-ass new cli debugging utility (in bin/vobject).
563* Added: jCal and jCard parser.
564* Fixed: URI properties should not escape ; and ,.
565* Fixed: VCard 4 documents now correctly use URI as a default value-type for
566  PHOTO and others. BINARY no longer exists in vCard 4.
567* Added: Utility to convert between 2.1, 3.0 and 4.0 vCards.
568* Added: You can now add() multiple parameters to a property in one call.
569* Added: Parameter::has() for easily checking if a parameter value exists.
570* Added: VCard::preferred() to find a preferred email, phone number, etc for a
571  contact.
572* Changed: All $duration properties are now public.
573* Added: A few validators for iCalendar documents.
574* Fixed: Issue #50. RecurrenceIterator gives incorrect result when exception
575  events are out of order in the iCalendar file.
576* Fixed: Issue #48. Overridden events in the recurrence iterator that were past
577  the UNTIL date were ignored.
578* Added: getDuration for DURATION values such as TRIGGER. Thanks to
579  @SimonSimCity.
580* Fixed: Issue #52. vCard 2.1 parameters with no name may lose values if there's
581  more than 1. Thanks to @Vedmak.
582
583
5843.0.0 (2013-06-21)
585------------------
586
587* Fixed: includes.php file was still broken. Our tool to generate it had some
588  bugs.
589
590
5913.0.0-beta4 (2013-06-21)
592------------------------
593
594* Fixed: includes.php was no longer up to date.
595
596
5973.0.0-beta3 (2013-06-17)
598------------------------
599
600* Added: OPTION_FORGIVING now also allows slashes in property names.
601* Fixed: DateTimeParser no longer fails on dates with years < 1000 & > 4999
602* Fixed: Issue 36: Workaround for the recurrenceiterator and caldav events with
603  a missing base event.
604* Fixed: jCard encoding of TIME properties.
605* Fixed: jCal encoding of REQUEST-STATUS, GEO and PERIOD values.
606
607
6083.0.0-beta2 (2013-06-10)
609------------------------
610
611* Fixed: Corrected includes.php file.
612* Fixed: vCard date-time parser supported extended-format dates as well.
613* Changed: Properties have been moved to an ICalendar or VCard directory.
614* Fixed: Couldn't parse vCard 3 extended format dates and times.
615* Fixed: Couldn't export jCard DATE values correctly.
616* Fixed: Recursive loop in ICalendar\DateTime property.
617
618
6193.0.0-beta1 (2013-06-07)
620------------------------
621
622* Added: jsonSerialize() for creating jCal and jCard documents.
623* Added: helper method to parse vCard dates and times.
624* Added: Specialized classes for FLOAT, LANGUAGE-TAG, TIME, TIMESTAMP,
625  DATE-AND-OR-TIME, CAL-ADDRESS, UNKNOWN and UTC-OFFSET properties.
626* Removed: CommaSeparatedText property. Now included into Text.
627* Fixed: Multiple parameters with the same name are now correctly encoded.
628* Fixed: Parameter values containing a comma are now enclosed in double-quotes.
629* Fixed: Iterating parameter values should now fully work as expected.
630* Fixed: Support for vCard 2.1 nameless parameters.
631* Changed: $valueMap, $componentMap and $propertyMap now all use fully-qualified
632  class names, so they are actually overridable.
633* Fixed: Updating DATE-TIME to DATE values now behaves like expected.
634
635
6363.0.0-alpha4 (2013-05-31)
637-------------------------
638
639* Added: It's now possible to send parser options to the splitter classes.
640* Added: A few tweaks to improve component and property creation.
641
642
6433.0.0-alpha3 (2013-05-13)
644-------------------------
645
646* Changed: propertyMap, valueMap and componentMap are now static properties.
647* Changed: Component::remove() will throw an exception when trying to a node
648  that's not a child of said component.
649* Added: Splitter objects are now faster, line numbers are accurately reported
650  and use less memory.
651* Added: MimeDir parser can now continue parsing with the same stream buffer.
652* Fixed: vobjectvalidate.php is operational again.
653* Fixed: \r is properly stripped in text values.
654* Fixed: QUOTED-PRINTABLE is now correctly encoded as well as encoded, for
655  vCards 2.1.
656* Fixed: Parser assumes vCard 2.1, if no version was supplied.
657
658
6593.0.0-alpha2 (2013-05-22)
660-------------------------
661
662* Fixed: vCard URL properties were referencing a non-existant class.
663
664
6653.0.0-alpha1 (2013-05-21)
666-------------------------
667
668* Fixed: Now correctly dealing with escaping of properties. This solves the
669  problem with double-backslashes where they don't belong.
670* Added: Easy support for properties with more than one value, using setParts
671  and getParts.
672* Added: Support for broken 2.1 vCards produced by microsoft.
673* Added: Automatically decoding quoted-printable values.
674* Added: Automatically decoding base64 values.
675* Added: Decoding RFC6868 parameter values (uses ^ as an escape character).
676* Added: Fancy new MimeDir parser that can also parse streams.
677* Added: Automatically mapping many, many properties to a property-class with
678  specialized API's.
679* Added: remove() method for easily removing properties and sub-components
680  components.
681* Changed: Components, Properties and Parameters can no longer be created with
682  Component::create, Property::create and Parameter::create. They must instead
683  be created through the root component. (A VCalendar or VCard object).
684* Changed: API for DateTime properties has slightly changed.
685* Changed: the ->value property is now protected everywhere. Use getParts() and
686  getValue() instead.
687* BC Break: No support for mac newlines (\r). Never came across these anyway.
688* Added: add() method to the Property class.
689* Added: It's now possible to easy set multi-value properties as arrays.
690* Added: When setting date-time properties you can just pass PHP's DateTime
691  object.
692* Added: New components automatically get a bunch of default properties, such as
693  VERSION and CALSCALE.
694* Added: You can add new sub-components much quicker with the magic setters, and
695  add() method.
696
697
6982.1.7 (2015-01-21)
699------------------
700
701* Fixed: Issue #94, a workaround for bad escaping of ; and , in compound
702  properties. It's not a full solution, but it's an improvement for those
703  stuck in the 2.1 versions.
704
705
7062.1.6 (2014-12-10)
707------------------
708
709* Fixed: Minor change to make sure that unittests succeed on every PHP version.
710
711
7122.1.5 (2014-06-03)
713------------------
714
715* Fixed: #94: Better parameter escaping.
716* Changed: Documentation cleanups.
717
718
7192.1.4 (2014-03-30)
720------------------
721
722* Fixed: Issue #87: Several compatibility fixes related to timezone handling
723  changes in PHP 5.5.10.
724
725
7262.1.3 (2013-10-02)
727------------------
728
729* Fixed: Issue #55. \r must be stripped from property values.
730* Fixed: Issue #65. Putting quotes around parameter values that contain a colon.
731
732
7332.1.2 (2013-08-02)
734------------------
735
736* Fixed: Issue #53. A regression in RecurrenceIterator.
737
738
7392.1.1 (2013-07-27)
740------------------
741
742* Fixed: Issue #50. RecurrenceIterator gives incorrect result when exception
743  events are out of order in the iCalendar file.
744* Fixed: Issue #48. Overridden events in the recurrence iterator that were past
745  the UNTIL date were ignored.
746
747
7482.1.0 (2013-06-17)
749------------------
750
751* This version is fully backwards compatible with 2.0.\*. However, it contains a
752  few new API's that mimic the VObject 3 API. This allows it to be used a
753  'bridge' version. Specifically, this new version exists so SabreDAV 1.7 and
754  1.8 can run with both the 2 and 3 versions of this library.
755* Added: Property\DateTime::hasTime().
756* Added: Property\MultiDateTime::hasTime().
757* Added: Property::getValue().
758* Added: Document class.
759* Added: Document::createComponent and Document::createProperty.
760* Added: Parameter::getValue().
761
762
7632.0.7 (2013-03-05)
764------------------
765
766* Fixed: Microsoft re-uses their magic numbers for different timezones,
767  specifically id 2 for both Sarajevo and Lisbon). A workaround was added to
768  deal with this.
769
770
7712.0.6 (2013-02-17)
772------------------
773
774* Fixed: The reader now properly parses parameters without a value.
775
776
7772.0.5 (2012-11-05)
778------------------
779
780* Fixed: The FreeBusyGenerator is now properly using the factory methods for
781  creation of components and properties.
782
783
7842.0.4 (2012-11-02)
785------------------
786
787* Added: Known Lotus Notes / Domino timezone id's.
788
789
7902.0.3 (2012-10-29)
791------------------
792
793* Added: Support for 'GMT+????' format in TZID's.
794* Added: Support for formats like SystemV/EST5EDT in TZID's.
795* Fixed: RecurrenceIterator now repairs recurrence rules where UNTIL < DTSTART.
796* Added: Support for BYHOUR in FREQ=DAILY (@hollodk).
797* Added: Support for BYHOUR and BYDAY in FREQ=WEEKLY.
798
799
8002.0.2 (2012-10-06)
801------------------
802
803* Added: includes.php file, to load the entire library in one go.
804* Fixed: A problem with determining alarm triggers for TODO's.
805
806
8072.0.1 (2012-09-22)
808------------------
809
810* Removed: Element class. It wasn't used.
811* Added: Basic validation and repair methods for broken input data.
812* Fixed: RecurrenceIterator could infinitely loop when an INTERVAL of 0 was
813  specified.
814* Added: A cli script that can validate and automatically repair vcards and
815  iCalendar objects.
816* Added: A new 'Compound' property, that can automatically split up parts for
817  properties such as N, ADR, ORG and CATEGORIES.
818* Added: Splitter classes, that can split up large objects (such as exports)
819  into individual objects (thanks @DominikTo and @armin-hackmann).
820* Added: VFREEBUSY component, which allows easily checking wether timeslots are
821  available.
822* Added: The Reader class now has a 'FORGIVING' option, which allows it to parse
823  properties with incorrect characters in the name (at this time, it just allows
824  underscores).
825* Added: Also added the 'IGNORE_INVALID_LINES' option, to completely disregard
826  any invalid lines.
827* Fixed: A bug in Windows timezone-id mappings for times created in Greenlands
828  timezone (sorry Greenlanders! I do care!).
829* Fixed: DTEND was not generated correctly for VFREEBUSY reports.
830* Fixed: Parser is at least 25% faster with real-world data.
831
832
8332.0.0 (2012-08-08)
834------------------
835
836* VObject is now a separate project from SabreDAV. See the SabreDAV changelog
837  for version information before 2.0.
838* New: VObject library now uses PHP 5.3 namespaces.
839* New: It's possible to specify lists of parameters when constructing
840  properties.
841* New: made it easier to construct the FreeBusyGenerator.
842
843[iTip]: http://tools.ietf.org/html/rfc5546
844