- [FEATURE] Italian translations
- [FEATURE] Added support for parsing RDATE from iCal format
- [BUGFIX] Fix serialization of Date values (for
until
) (#399) - [BUGFIX] Fix double DST occurrences (#398)
- [BUGFIX] Realign first wday for monday-based weekly rules (#402)
- [BUGFIX] Fix weekly realignment for
spans: true
option (#402)
- [FEATURE] Add pt-BR i18n locale (#388)
- [BUGFIX] Fix misaligned first weekly occurrence (#387)
- [FEATURE] Support ruby 2.4
- [ENHANCEMENT] Raise ArgumentError on empty values for remaining rules (#373)
- [BUGFIX] Fix biweekly realign with spans option (#377)
- [BUGFIX] Fix
day_of_year
with negative offsets (#326) - [BUGFIX] Fix weekly rule alignment with non-Sunday week start (#383)
- [FEATURE] Added i18n translations for Russian, Swedish, German, and French
- [ENHANCEMENT] Support testing with different
RAILS_VERSION
- [ENHANCEMENT] Support "until" Date with local Time conversion (#327)
- [ENHANCEMENT] Validate rules (and raise ArgumentError) on empty
from_hash
- [BUGFIX] Fix validations on
Rule.from_hash
with empty array (#281)
- [FEATURE] Option to include prior occurrences with overlapping duration (#302)
- [ENHANCEMENT] Performance optimizations
- [ENHANCEMENT] Default deprecation compatibility to track the current version
No changes.
- [FEATURE] Added i18n support!
- [FEATURE] Option to include prior occurrences with overlapping duration (#154)
NOTE: the commit for the v0.13.0 release tag incorrectly says Release 0.13.1
- [FEATURE] Add
from_ical
! (#258) - [BUGFIX] Method arity for
ActiveSupport::TimeZone.to_s
(#255) - [BUGFIX] Fix whole-day skip with date inputs
- [BUGFIX] Missed times selected from gap week with weekly interval > 1 (#241)
- [BUGFIX] Fix
occurs_on?
miss near midnight for DST (#245)
- [FEATURE] Added support for deserialization of times via Time.parse
- [ENHANCEMENT] Added interval validations
- [ENHANCEMENT] Deprecation message improvements
- [BUGFIX] Coerce validation intervals to Fixnum
- [BUGFIX] Fix YAML serialization on blank values in ActiveRecord (#231)
- [BUGFIX] Yearly interval should return self like others
- [FEATURE] Rename to
start_time
as a hash key (see UPGRADING) (#102) - [FEATURE] Notify of deprecated usage (#219)
- [BUGFIX] Skip double occurrences over DST (#189)
- [BUGFIX] Avoid symbolizing hash keys from input
- [BUGFIX] Ensure time comparisons are done in schedule time zone (#209)
- [BUGFIX] Occurrence#overnight? now works on the last day of the month (#218)
- [BUGFIX] Fix a StopIteration leak
- [ENHANCEMENT] Use Enumerator for schedule occurrences
- [BUGFIX] Fix high CPU usage on minutely schedules
- [ENHANCEMENT] Move deprecated into IceCube namespace
- [ENHANCEMENT] Standardize the exceptions that we raise
- [BUGFIX] Fix ActiveSupport edge case restoring serialized TZ
- [FEATURE]
schedule.last(n)
method (#117) - [FEATURE]
previous_occurrence
&previous_occurrences
methods (#170) - [BUGFIX] Occurrence
to_s
accepts format to comply with Rails
- [BUGFIX] Match time zone from schedule when finding times (#152)
- [BUGFIX] Reliably calculate distance to same day in next month (#171)
- [ENHANCEMENT] Accept arrays in multiparameter DSL methods (#139)
- [BUGFIX] Updating interval on a rule shouldn't leave duplicate validations (#158) (#157)
- [BUGFIX] Allow Occurrence to work transparently with Arel (#168)
- [BUGFIX] Raise errors for invalid input (#139)
- [BUGFIX] Fix monthly intervals to not skip short months (#105)
- [FEATURE] Add support for
week_start
(@masquita) (#75) - [BUGFIX] Fix
occurring_between?
for zero-length occurrences at start boundary (#147) - [ENHANCEMENT] Add block initialization, new schedule yields itself (#146)
- [ENHANCEMENT] Warn on use of DateTime and convert to local Time (#144)
- [BUGFIX] Bug fix for count limit across multiple rules (#149)
- [BUGFIX] Fix occurrences in DST transition (#150)
- [ENHANCEMENT] Start time counts as an implicit occurrence (no more empty schedule) (#135)
- [FEATURE] Schedule occurrences have end times (#119)
- [BUGFIX] Match the subseconds of
start_time
when finding occurrences (#89) - [FEATURE] Duration is dependent upon
end_time
(#120) - [ENHANCEMENT] Duration defaults to 0
- [BUGFIX] Avoid microseconds when comparing times (#83)
- [BUGFIX] Handle DateTime's lack of subseconds
- [FEATURE] Allow passing Time, Date, or DateTime to all calls
- [BUGFIX] A fix for removing
until
validations (#106) - [BUGFIX] A DST edge fix
- [FEATURE] Fix the effect on
end_time
on IceCube::Schedule (#99) - [ENHANCEMENT] Remove
end_time
fromto_s
(#99) - [BUGFIX] Single recurrences now work properly with
conflict_with?
(#71) - [BUGFIX] Fix a bug with interval > 1 when using
occurrences_between
(#92) - [BUGFIX] Allow count, until removal by setting to nil (#94)
- [FEATURE] Allow deserialization of string structures easily (#93)
- [BUGFIX] Ignore usecs when creating Time.now for
*_occurrences
(#84) - [BUGFIX] DST bug fix (#98)
- [FEATURE] Added
occurring_between?
(#88)
- Added support for WEEKST (thanks @devwout)
- Added INTERVAL to
to_ical
for all interval validations
- Bug fixes
- Added "Weekends" and "Weekdays" to day's
to_s
- Support for
terminating?
andconflicts_with?
- Fix an issue with
occurrences_between
when using count (#54)
- NameError when serializing schedule with
end_time
(thanks @digx)
- Fix for time interval buckets (affects hour, minute, sec)
- Fix for interval to/from YAML issue
- Fix for comparing rules with nil
- Large rewrite, fixing a few small bugs and including some large optimizations to the spidering algo
- Support for
each_occurrence
which iterates as it builds forever
- Deserialize
until_date
properly into_hash
andto_yaml
(thanks @promisedlandt)
- Fixed a skipping issue around DST ending
- Fix by Ben Fyvie for daily rule crossing over a year boundary
- Additional accessor methods on validations and rules for easy use in microformats (thanks @jamesarosen)
- Fix for changing start date affecting schedules without reloading
- Fix for typo in
active_support_occurs_between
? causing load issues with ActiveSupport (thanks @carlthuringer)
- Be able to set the
start_date
and duration after creating a schedule
- Added the ability to add and remove rdates, rrules, exdates, and exrules from a schedule
- UNTIL date now serialized with time information
- Added support for
Schedule#occurs_between?
- Added a
:start_date_override
option tofrom_hash
/from_yaml
(@sakrafd)
- Fixed bug where
next_occurrence
wouldn't actually grab the correct next occurrence with schedules that had more than one recurrence rule and/or a recurrence rule and a recurrence date - Added
next_occurrences
function to schedule, allowing you to get the next N occurrences after a given date
- Change how
active_support_occurs_on
works - Fixed bug where
next_occurrence
wouldn't work if noend_date
was set
- Patch release for
to_yaml
performance issue
- Lessen the amount of info we store in yaml on the time zone
- Changed how time serialization is done to preserve TimeWithZone when appropriate. (#8)
- Backward compatibility is intact, but bumping the minor version for the YAML format change.
- Fixed next occurrence to work on never-ending schedules (#11)