mirror of
https://github.com/rlanvin/php-rrule.git
synced 2024-11-29 06:24:10 +01:00
3.3 KiB
Executable File
3.3 KiB
Executable File
Changelog
Unreleased
[1.4] - 2016-11-11
Added
- Add
RRule::getRule()
method to return original rule array #17 - Add
RSet::getRRules()
,RSet::getExRules()
,RSet::getDates()
andRSet::getExDates()
- Tests for PHP 7.0
Fixed
- Fix a bug in
rfcString
when using a frequency constant (instead of a string) to create the rule #16 - Fix a undefined index bug in RFC parser
1.3.1 - 2016-08-09
Added
- Italian translation (it) #14
Fixed
- Fixed a bug when combining values with an integer modifier and regular values in
BYDAY
(example1MO,FR
) - Fixed RRule created with a timestamp start date generates an invalid RFC string #15
1.3.0 - 2016-07-08
Added
- Spanish translation (es) #12
$include_timezone
parameter toRRule::rfcString()
to produce a RFC string without timezone information
Fixed
RRule::parseRfcString()
is strictier and will not accept invalidDTSTART
andUNTIL
formats (use the array syntax in the constructor withDateTime
objects if you need to create rules with complex combinations of timezones). #13
1.2.0 - 2016-04-09
Added
Fixed
- Fixed fatal error Locale class not found when intl extension is not loaded #10
1.1.0 - 2016-03-30
Added
- New class
RRule\RSet
(recurrence set) that can combine multiple RRULE, EXRULE, RDATE and EXDATE. #7 - New interface
RRule\RRuleInterface
to unifyRRule
andRSet
- New methods:
isFinite()
,isInfinite()
Fixed
- Fix bug preventing the iteration of multiple instances of RRule at the same time
- Fix occursAt failing when the date passed was a different timezone #8
- Fix bug at WEEKLY frequency with a partially filled cache in some circumstances
- Fix various reference bugs causing corruption of the cache in some circumstances (related to DateTime object being mutable)
Removed
- The alias
RRule::occursOn
has been removed (useoccursAt
instead)
1.0.1 - 2016-03-11
Fixed
- Ensure the results are returned in the same timezone as DTSTART. #6
- LogicException namespacing bug. #3
1.0.0 - 2016-03-02
Added
- First release, everything before that was unversioned (
dev-master
was used).