[Pkg-owncloud-commits] [php-sabre-vobject] 04/25: Merge branch '3.5'
David Prévot
taffit at moszumanska.debian.org
Thu Apr 7 01:41:27 UTC 2016
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository php-sabre-vobject.
commit a5acd54f147304e78e3bb3dc824f53cf3066d85f
Merge: adcc2aa b193a7a
Author: Evert Pot <me at evertpot.com>
Date: Tue Mar 29 21:52:19 2016 -0400
Merge branch '3.5'
CHANGELOG.md | 11 +++-
lib/ITip/Broker.php | 12 +++--
lib/Recur/EventIterator.php | 13 ++---
tests/VObject/Component/VCalendarTest.php | 1 +
tests/VObject/ITip/BrokerProcessReplyTest.php | 61 ++++++++++++++++++++++
.../EventIterator/ExpandFloatingTimesTest.php | 2 +
.../Recur/EventIterator/IncorrectExpandTest.php | 1 +
.../Recur/EventIterator/MissingOverriddenTest.php | 1 +
8 files changed, 88 insertions(+), 14 deletions(-)
diff --cc CHANGELOG.md
index b03b5e6,752229f..7f7ca84
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@@ -1,119 -1,17 +1,128 @@@
ChangeLog
=========
+4.0.3 (2016-03-12)
+------------------
+
+* #300: Added `VCard::getByType()` to quickly get a property with a specific
+ `TYPE` parameter. (@kbond)
+* #302: `UNTIL` was not encoded correctly when converting to jCal.
+ (@GrahamLinagora)
+* #303: `COUNT` is now encoded as an int in jCal instead of a string. (@strokyl)
+* #295: `RRULE` now has more validation and repair rules.
+
+
+4.0.2 (2016-01-11)
+------------------
+
+* #288: Only decode `CHARSET` if we're reading vCard 2.1. If it appears
+ in any other document, we must ignore it.
+
+
+4.0.1 (2016-01-04)
+------------------
+
+* #284: When generating `CANCEL` iTip messages, we now include `DTEND`.
+ (@kewisch)
+
+
+4.0.0 (2015-12-11)
+------------------
+
+* #274: When creating new vCards, the default vCard version is now 4.0.
+* #275: `VEVENT`, `VTODO` and `VCARD` now automatically get a `UID` and
+ `DTSTAMP` property if this was not already specified.
+* `ParseException` now extends `\Exception`.
+* `Sabre\VObject\Reader::read` now has a `$charset` argument.
+* #272: `Sabre\VObject\Recur\EventIterator::$maxInstances` is now
+ `Sabre\VObject\Settings::$maxRecurrences` and is also honored by the
+ FreeBusyGenerator.
+* #278: `expand()` did not work correctly on events with sub-components.
+
+
+4.0.0-beta1 (2015-12-02)
+------------------------
+
+* #258: Support for expanding events that use `RDATE`. (@jabdoa2)
+* #258: Correctly support TZID for events that use `RDATE`. (@jabdoa2)
+* #240: `Component\VCalendar::expand()` now returns a new expanded `VCalendar`
+ object, instead of editing the existing `VCalendar` in-place. This is a BC
+ break.
+* #265: Using the new `InvalidDataException` in place of
+ `InvalidArgumentException` and `LogicException` in all places where we fail
+ because there was something wrong with input data.
+* #227: Always add `VALUE=URI` to `PHOTO` properties.
+* #235: Always add `VALUE=URI` to `URL` properties.
+* It's now possible to override which class is used instead of
+ `Component\VCalendar` or `Component\VCard` during parsing.
+* #263: Lots of small cleanups. (@jakobsack)
+* #220: Automatically stop recurring after 3500 recurrences.
+* #41: Allow user to set different encoding than UTF-8 when decoding vCards.
+* #41: Support the `ENCODING` parameter from vCard 2.1.
+ Both ISO-8859-1 and Windows-1252 are currently supported.
+* #185: Fix encoding/decoding of `TIME` values in jCal/jCard.
+
+
+4.0.0-alpha2 (2015-09-04)
+-------------------------
+
+* Updated windows timezone file to support new mexican timezone.
+* #239: Added a `BirthdayCalendarGenerator`. (@DominikTo)
+* #250: `isInTimeRange()` now considers the timezone for floating dates and
+ times. (@armin-hackmann)
+* Added a duplicate vcard merging tool for the command line.
+* #253: `isInTimeRange()` now correctly handles events that throw the
+ `NoInstancesException` exception. (@migrax, @DominikTo)
+* #254: The parser threw an `E_NOTICE` for certain invalid objects. It now
+ correctly throws a `ParseException`.
+
+
+4.0.0-alpha1 (2015-07-17)
+-------------------------
+
+* sabre/vobject now requires PHP 5.5.
+* #244: PHP7 support.
+* Lots of speedups and reduced memory usage!
+* #160: Support for xCal a.k.a. RFC6321! (@Hywan)
+* #192: Support for xCard a.k.a. RFC6351! (@Hywan)
+* #139: We now accept `DateTimeInterface` wherever it accepted `DateTime`
+ before in arguments. This means that either `DateTime` or
+ `DateTimeImmutable` may be used everywhere.
+* #242: Full support for the `VAVAILABILITY` component, and calculating
+ `VFREEBUSY` based on `VAVAILABILITY` data.
+* #186: Fixing conversion of `UTC-OFFSET` properties when going back and
+ forward between jCal and iCalendar.
+* Properties, Components and Parameters now implement PHP's `JsonSerializable`
+ interface.
+* #139: We now _always_ return `DateTimeImmutable` from any method. This could
+ potentially have big implications if you manipulate Date objects anywhere.
+* #161: Simplified `ElementList` by extending `ArrayIterator`.
+* Removed `RecurrenceIterator` (use Recur\EventIterator instead).
+* Now using php-cs-fixer to automatically enforce and correct CS.
+* #233: The `+00:00` timezone is now recognized as UTC. (@c960657)
+* #237: Added a `destroy()` method to all documents. This method breaks any
+ circular references, allowing PHP to free up memory.
+* #197: Made accessing properties and objects by their name a lot faster. This
+ especially helps objects that have a lot of sub-components or properties,
+ such as large iCalendar objects.
+* #197: The `$children` property on components has been changed from `public`
+ to `protected`. Use the `children()` method instead to get a flat list of
+ objects.
+* #244: The `Float` and `Integer` classes have been renamed to `FloatValue`
+ and `IntegerValue` to allow PHP 7 compatibility.
+
+
+ 3.5.1 (????-??-??)
+ ------------------
+
+ * #309: When expanding recurring events, the first event should also have a
+ `RECURRENCE-ID` property.
+ * #306: iTip REPLYs to the first instance of a recurring event was not handled
+ correctly.
+
+
3.5.0 (2016-01-11)
- -----------------
+ ------------------
* This release supports PHP 7, contrary to 3.4.x versions.
* BC Break: `Sabre\VObject\Property\Float` has been renamed to
diff --cc lib/ITip/Broker.php
index 3f2508b,e439196..fb27dba
--- a/lib/ITip/Broker.php
+++ b/lib/ITip/Broker.php
@@@ -814,11 -807,16 +814,17 @@@ class Broker
* 1. uid
* 2. organizer
* 3. organizerName
- * 4. attendees
- * 5. instances
- *
+ * 4. organizerScheduleAgent
+ * 5. organizerForceSend
+ * 6. instances
+ * 7. attendees
+ * 8. sequence
+ * 9. exdate
+ * 10. timezone
+ * 11. significantChangeHash
+ * 12. status
* @param VCalendar $calendar
+ *
* @return array
*/
protected function parseEventInfo(VCalendar $calendar = null) {
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-php/php-sabre-vobject.git
More information about the Pkg-owncloud-commits
mailing list