Skip to content

Latest commit

 

History

History
375 lines (295 loc) · 15.9 KB

CHANGELOG.md

File metadata and controls

375 lines (295 loc) · 15.9 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Added

Changed

  • Removed use of delegate method added in 66f1d797 , reverting to previous implementation. (#522) by @pacso
  • Updated supported versions of Ruby and Rails and fixed standardrb lint issues. (#552) by @pacso

Fixed

  • Fix for weekly interval results when requesting occurrences_between on a narrow range (#487) by @jakebrady5
  • When using a rule with hour_of_day validations, and asking for occurrences on the day that DST skips forward, valid occurrences would be missed. (#464) by @jakebrady5
  • Include exrules when exporting a schedule to YAML, JSON or a Hash. (#519) by @pacso
  • Documentation links updated to point to the new repository location. (#553) by @pacso

0.16.4 - 2021-10-21

Added

  • Italian translations

0.16.3 - 2018-07-23

Added

  • Support for parsing RDATE from iCal format

0.16.2 - 2017-07-10

Fixed

  • Fix serialization of Date values (for until) (#399)
  • Fix double DST occurrences (#398)
  • Realign first wday for monday-based weekly rules (#402)
  • Fix weekly realignment for spans: true option (#402)

0.16.1 - 2017-05-03

Added

  • Add pt-BR i18n locale (#388)

Fixed

  • Misaligned first weekly occurrence (#387)

0.16.0 - 2017-04-12

Added

  • Support for Ruby 2.4

Changed

  • Raise ArgumentError on empty values for remaining rules (#373)

Fixed

  • Fix biweekly realign with spans option (#377)
  • Fix day_of_year with negative offsets (#326)
  • Fix weekly rule alignment with non-Sunday week start (#383)

0.15.0 - 2017-01-27

Added

  • I18n translations for Russian, Swedish, German, and French

Changed

  • Support testing with different RAILS_VERSION
  • Support "until" Date with local Time conversion (#327)
  • Validate rules (and raise ArgumentError) on empty from_hash

Fixed

  • Fix validations on Rule.from_hash with empty array (#281)

0.14.0 - 2016-02-23

Added

  • Option to include prior occurrences with overlapping duration (#302)

0.13.3 - 2016-01-30

Changed

  • Performance optimizations
  • Default deprecation compatibility to track the current version

0.13.2 - 2015-12-09

No changes.

0.13.1 - 2015-12-07

Added

  • I18n support!
  • Option to include prior occurrences with overlapping duration (#154)

0.13.0 - 2015-05-26

NOTE: the commit for the v0.13.0 release tag incorrectly says Release 0.13.1

Added

  • Add from_ical! (#258)

Fixed

  • Method arity for ActiveSupport::TimeZone.to_s (#255)
  • Fix whole-day skip with date inputs
  • Missed times selected from gap week with weekly interval > 1 (#241)
  • Fix occurs_on? miss near midnight for DST (#245)

0.12.1 - 2014-07-04

Added

  • Support for deserialization of times via Time.parse

Changed

  • Added interval validations
  • Deprecation message improvements

Fixed

  • Coerce validation intervals to Fixnum
  • Fix YAML serialization on blank values in ActiveRecord (#231)
  • Yearly interval should return self like others

0.12.0 - 2014-04-06

Added

  • Rename to start_time as a hash key (see UPGRADING) (#102)
  • Notify of deprecated usage (#219)

Fixed

  • Skip double occurrences over DST (#189)
  • Avoid symbolizing hash keys from input
  • Ensure time comparisons are done in schedule time zone (#209)
  • Occurrence#overnight? now works on the last day of the month (#218)

0.11.3 - 2014-02-07

Fixed

  • Fix a StopIteration leak

0.11.2 - 2014-01-25

Changed

  • Use Enumerator for schedule occurrences

Fixed

  • Fix high CPU usage on minutely schedules

0.11.1 - 2013-10-28

Changed

  • Move deprecated into IceCube namespace
  • Standardize the exceptions that we raise

Fixed

  • Fix ActiveSupport edge case restoring serialized TZ

0.11.0 - 2013-06-13

Added

  • schedule.last(n) method (#117)
  • previous_occurrence & previous_occurrences methods (#170)

Fixed

  • Occurrence to_s accepts format to comply with Rails

0.10.1 - 2013-05-17

Changed

  • Accept arrays in multiparameter DSL methods (#139)

Fixed

  • Match time zone from schedule when finding times (#152)
  • Reliably calculate distance to same day in next month (#171)
  • Updating interval on a rule shouldn't leave duplicate validations (#158) (#157)
  • Allow Occurrence to work transparently with Arel (#168)
  • Raise errors for invalid input (#139)

0.10.0 - 2013-02-25

Added

  • Add support for week_start (@masquita) (#75)
  • Schedule occurrences have end times (#119)

Changed

  • Add block initialization, new schedule yields itself (#146)
  • Warn on use of DateTime and convert to local Time (#144)
  • Start time counts as an implicit occurrence (no more empty schedule) (#135)

Fixed

  • Fix monthly intervals to not skip short months (#105)
  • Fix occurring_between? for zero-length occurrences at start boundary (#147)
  • Bug fix for count limit across multiple rules (#149)
  • Fix occurrences in DST transition (#150)

0.9.3 - 2013-01-03

Added

  • Duration is dependent upon end_time (#120)

Changed

  • Duration defaults to 0

Fixed

  • Match the subseconds of start_time when finding occurrences (#89)
  • Avoid microseconds when comparing times (#83)
  • Handle DateTime's lack of subseconds

0.9.2 - 2012-12-08

Added

  • Allow passing Time, Date, or DateTime to all calls

0.9.1 - 2012-10-19

Fixed

  • A fix for removing until validations (#106)
  • A DST edge fix

0.9.0 - 2012-10-12

Added

  • Fix the effect on end_time on IceCube::Schedule (#99)
  • Allow deserialization of string structures easily (#93)
  • Added occurring_between? (#88)

Changed

  • Remove end_time from to_s (#99)

Fixed

  • Single recurrences now work properly with conflict_with? (#71)
  • Fix a bug with interval > 1 when using occurrences_between (#92)
  • Allow count, until removal by setting to nil (#94)
  • Ignore usecs when creating Time.now for *_occurrences (#84)
  • DST bug fix (#98)

Added

Added

  • Added INTERVAL to to_ical for all interval validations

Fixed

  • Various bug fixes

Added

  • Added "Weekends" and "Weekdays" to day's to_s

Added

  • Support for terminating? and conflicts_with?

Fixed

  • Fix an issue with occurrences_between when using count (#54)

Fixed

  • NameError when serializing schedule with end_time by @digx

Fixed

  • Fix for time interval buckets (affects hour, minute, sec)

Fixed

  • Fix for interval to/from YAML issue

Fixed

  • Fix for comparing rules with nil

Added

  • Support for each_occurrence which iterates as it builds forever

Changed

  • Large rewrite, fixing a few small bugs and including some large optimizations to the spidering algo

Added

  • Deserialize until_date properly in to_hash and to_yaml by @promisedlandt

Fixed

  • Fixed a skipping issue around DST ending

Added

  • Additional accessor methods on validations and rules for easy use in microformats (thanks @jamesarosen)

Fixed

  • Fix by Ben Fyvie for daily rule crossing over a year boundary
  • Fix for changing start date affecting schedules without reloading
  • Fix for typo in active_support_occurs_between? causing load issues with ActiveSupport (thanks @carlthuringer)

Added

  • Be able to set the start_date and duration after creating a schedule

Added

  • Added the ability to add and remove rdates, rrules, exdates, and exrules from a schedule

Added

  • UNTIL date now serialized with time information

Added

  • Added support for Schedule#occurs_between?

Added

  • Added a :start_date_override option to from_hash / from_yaml (@sakrafd)

Added

  • Added next_occurrences function to schedule, allowing you to get the next N occurrences after a given date

Fixed

  • 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

Changed

  • Change how active_support_occurs_on works

Fixed

  • Fixed bug where next_occurrence wouldn't work if no end_date was set

Changed

  • Patch release for to_yaml performance issue

Changed

  • Lessen the amount of info we store in yaml on the time zone

Changed

  • 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

  • Fixed next occurrence to work on never-ending schedules (#11)