[Pkg-owncloud-commits] [php-sabre-vobject] branch master updated (484f13a -> f65d3c6)

David Prévot taffit at moszumanska.debian.org
Thu Dec 10 02:12:37 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a change to branch master
in repository php-sabre-vobject.

      from  484f13a   Update changelog for 4.0.0~alpha2-1 release
       new  265405a   More tags.
       new  3fb58fd   CS fix
       new  930b47f   Merge pull request #257 from DavidPrevot/cs
       new  a8afbb0   use correct timezone
       new  1a6e996   also iterate events with rdate in calendar
       new  e6b3307   add test for RDateIterator and timezones
       new  654f718   add test for VCalendar expand with RDate
       new  5027e63   Merge pull request #258 from jabdoa2/fix_rdate_in_vcalendar
       new  5f675d5   Updated changelog, bumped version.
       new  3d45bcb   Fix issue #259: add missing date format change in Recur object
       new  a1d975e   Merge pull request #261 from GrahamLinagora/jcal_with_until
       new  9a0f531   Merge branch 'master' of github.com:fruux/sabre-vobject
       new  46d89c4   Updated installation instructions to use `composer require`.
       new  afa5cbf   VCalendar::expand now returns an expanded version of itself.
       new  0010426   Updated changelog
       new  15cb42c   Merge pull request #264 from fruux/return-from-expand
       new  b6d40b0   Changelog should refer to the original issue. #240
       new  2038532   Using InvalidDataException whereever it makes sense
       new  65fdcf5   Updated changelog
       new  68c3323   CS
       new  dac1708   Merge pull request #265 from fruux/invalidDataException
       new  84361b1   Always encode VALUE=URI for PHOTO and URL properties.
       new  ee615b0   Merge pull request #266 from fruux/always-encode-uri
       new  24b48ff   Lots of small cleanups.
       new  50fdd08   Running sabre-cs-fixer on the enitre codebase
       new  11fdffd   We must support PHP7
       new  fa57eb2   Automatically stop recurring after 3500 iterations.
       new  23d7c8b   Merge pull request #267 from fruux/max-instances
       new  9d4558b   Automatically decode from ISO-8859-1
       new  737bef8   Error cases
       new  2c5cd51   Updated changelog.
       new  57b949c   CS
       new  d0f2d78   Merge pull request #268 from fruux/charset-support
       new  35c25dc   Fix encoding/decoding of TIME values in jCard/jCal.
       new  0e37760   Merge pull request #269 from fruux/fix-json-time-encoding
       new  9f080f3   Support Windows-1252 when decoding.
       new  3deda73   Support PHP 5.5
       new  907597b   Should have been static.
       new  b690ed8   CS
       new  20f86ec   Merge pull request #270 from fruux/windows-1252
       new  e1640e6   Moving hoa/bench from `require-dev` to `suggest` until the double-loading for Core is fixed.
       new  e047a3c   Releasing as vobject 4 beta1
       new  d9a938e   Imported Upstream version 4.0.0~beta1
       new  d124ea1   Merge tag 'upstream/4.0.0_beta1'
       new  998828f   Refresh patches
       new  f65d3c6   Update changelog for 4.0.0~beta1-1 release

The 46 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                        |   3 +-
 CHANGELOG.md                                       |  23 +++++
 README.md                                          |  11 +--
 bin/mergeduplicates.php                            |  32 +++---
 composer.json                                      |   9 +-
 debian/changelog                                   |   7 ++
 .../patches/0001-Use-homemade-autoloader.php.patch |   4 +-
 debian/patches/0003-CS-fix.patch                   |  22 -----
 debian/patches/series                              |   1 -
 lib/BirthdayCalendarGenerator.php                  |   2 +-
 lib/Component/VAlarm.php                           |   5 +-
 lib/Component/VCalendar.php                        | 105 ++++++++++----------
 lib/Component/VCard.php                            |   9 ++
 lib/DateTimeParser.php                             |  14 ++-
 lib/FreeBusyData.php                               |   2 +-
 ...ParseException.php => InvalidDataException.php} |   5 +-
 lib/Parameter.php                                  |   2 +-
 lib/ParseException.php                             |   2 +-
 lib/Parser/MimeDir.php                             |  71 ++++++++++++--
 lib/Property.php                                   |   4 +-
 lib/Property/ICalendar/DateTime.php                |   5 +-
 lib/Property/ICalendar/Recur.php                   |   4 +-
 lib/Property/Time.php                              |  33 ++++++-
 lib/Property/Uri.php                               |  24 +++++
 lib/Property/VCard/DateAndOrTime.php               |   9 +-
 lib/Recur/EventIterator.php                        |  18 ++++
 ...ption.php => MaxInstancesExceededException.php} |   8 +-
 lib/Recur/RDateIterator.php                        |   3 +-
 lib/Recur/RRuleIterator.php                        |  10 +-
 lib/Version.php                                    |   2 +-
 tests/VObject/Component/VAlarmTest.php             |   2 +-
 tests/VObject/Component/VCalendarTest.php          |   8 +-
 tests/VObject/DateTimeParserTest.php               |  10 +-
 tests/VObject/Issue259Test.php                     |  21 ++++
 tests/VObject/Parser/JsonTest.php                  |  10 +-
 tests/VObject/Parser/MimeDirTest.php               | 107 +++++++++++++++++++++
 tests/VObject/Property/ICalendar/DateTimeTest.php  |   2 +-
 tests/VObject/Property/UriTest.php                 |  27 ++++++
 tests/VObject/PropertyTest.php                     |   2 +-
 tests/VObject/ReaderTest.php                       |   4 +-
 .../Recur/EventIterator/ByMonthInDailyTest.php     |   2 +-
 .../Recur/EventIterator/BySetPosHangTest.php       |   2 +-
 .../EventIterator/ExpandFloatingTimesTest.php      |  24 ++---
 .../Recur/EventIterator/HandleRDateExpandTest.php  |  60 ++++++++++++
 .../Recur/EventIterator/IncorrectExpandTest.php    |  12 +--
 .../EventIterator/InfiniteLoopProblemTest.php      |   2 +-
 .../{ => Recur/EventIterator}/Issue26Test.php      |   9 +-
 tests/VObject/Recur/EventIterator/MainTest.php     |   2 +-
 .../Recur/EventIterator/MaxInstancesTest.php       |  42 ++++++++
 .../Recur/EventIterator/MissingOverriddenTest.php  |  13 ++-
 .../Recur/EventIterator/OverrideFirstEventTest.php |  26 +++--
 tests/VObject/Recur/RDateIteratorTest.php          |  24 +++++
 tests/VObject/Recur/RRuleIteratorTest.php          |   8 +-
 53 files changed, 648 insertions(+), 220 deletions(-)
 delete mode 100644 debian/patches/0003-CS-fix.patch
 copy lib/{ParseException.php => InvalidDataException.php} (58%)
 copy lib/Recur/{NoInstancesException.php => MaxInstancesExceededException.php} (56%)
 create mode 100644 tests/VObject/Issue259Test.php
 create mode 100644 tests/VObject/Property/UriTest.php
 create mode 100644 tests/VObject/Recur/EventIterator/HandleRDateExpandTest.php
 rename tests/VObject/{ => Recur/EventIterator}/Issue26Test.php (68%)
 create mode 100644 tests/VObject/Recur/EventIterator/MaxInstancesTest.php

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/php-sabre-vobject.git



More information about the Pkg-owncloud-commits mailing list