icalendar 2.10.1 → 2.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +4 -3
- data/CHANGELOG.md +206 -0
- data/README.md +1 -1
- data/icalendar.gemspec +1 -1
- data/lib/icalendar/parser.rb +4 -1
- data/lib/icalendar/version.rb +1 -1
- metadata +5 -5
- data/History.txt +0 -200
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25be453368a5f3878e1914626da23ed5116c8e7835f60bf67c2cf0d87f6766dc
|
|
4
|
+
data.tar.gz: 00163247da24fc8057dcd4e1955f72a709ad3fd668526e35af17004232d4b173
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d812eaf1f48875019ce982e7c6fc9ce900a1dccd315ae072867d62407ff8a13fbb0b2dae9e7c0c9b83870e1630fc5c63c09a4d0812eb539f7c8ffb799d5656b1
|
|
7
|
+
data.tar.gz: dcadb2f20833a329b0e4b3845ec2cf41c5b415f739cb34489f8987837892280b888f328dc3e07c6c2aeff6bc5cf5b1db24a9e061993b2868a51cf89444e037e2
|
data/.github/workflows/main.yml
CHANGED
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
## Unreleased
|
|
2
|
+
|
|
3
|
+
## 2.10.2 - 2024-07-21
|
|
4
|
+
- Raise Icalendar::Parser::ParseError on bad .ics file input instead of RuntimeError - Micah Geisel
|
|
5
|
+
- Remove Ruby 3.0 from the test matrix - still should work for now with ice_cube < 0.17.0
|
|
6
|
+
- Add Ruby 3.3 to the test matrix
|
|
7
|
+
- Move from old History.txt file to modern CHANGELOG.md - Guillaume Briday
|
|
8
|
+
|
|
9
|
+
## 2.10.1 - 2023-12-01
|
|
10
|
+
- Parsing now handles VTIMEZONE blocks defined after their TZID is used in events and other components
|
|
11
|
+
|
|
12
|
+
## 2.10.0 - 2023-11-01
|
|
13
|
+
- Add changelog metadata to gemspec - Juri Hahn
|
|
14
|
+
- Attempt to rescue timezone info when given a nonstandard tzid with no VTIMEZONE
|
|
15
|
+
- Move Values classes that shouldn't be directly used into Helpers module
|
|
16
|
+
|
|
17
|
+
## 2.9.0 - 2023-08-11
|
|
18
|
+
- Always include the VALUE of Event URLs for improved compatibility - Sean Kelley
|
|
19
|
+
- Improved parse performance - Thomas Cannon
|
|
20
|
+
- Add helper methods for other Calendar method verbs
|
|
21
|
+
- bugfix: Require stringio before use in Parser - vwyu
|
|
22
|
+
|
|
23
|
+
## 2.8.0 - 2022-07-10
|
|
24
|
+
- Fix compatibility with ActiveSupport 7 - Pat Allan
|
|
25
|
+
- Set default action of "DISPLAY" on alarms - Rikson
|
|
26
|
+
- Add license information to gemspec - Robert Reiz
|
|
27
|
+
- Support RFC7986 properties - Daniele Frisanco
|
|
28
|
+
|
|
29
|
+
## 2.7.1 - 2021-03-14
|
|
30
|
+
- Recover from bad line-wrapping code that splits in the middle of Unicode code points
|
|
31
|
+
- Add a verbose option to the Parser to quiet some of the chattier log entries
|
|
32
|
+
|
|
33
|
+
## 2.7.0 - 2020-09-12
|
|
34
|
+
- Handle custom component names, with and without X- prefix
|
|
35
|
+
- Fix Component lookup to avoid namespace collisions
|
|
36
|
+
|
|
37
|
+
## 2.6.1 - 2019-12-07
|
|
38
|
+
- Improve performance when generating large ICS files - Alex Balhatchet
|
|
39
|
+
|
|
40
|
+
## 2.6.0 - 2019-11-26
|
|
41
|
+
- Improve performance for calculating timezone offsets - Justin Howard
|
|
42
|
+
- Make it possible to de/serialize with Marshal - Pawel Niewiadomski
|
|
43
|
+
- Avoid FrozenError when running with frozen_string_literal
|
|
44
|
+
- Update minimum Ruby version to supported versions
|
|
45
|
+
|
|
46
|
+
## 2.5.3 - 2019-03-04
|
|
47
|
+
- Improve parsing performance - nehresma
|
|
48
|
+
- Support tzinfo 2.0 - Misty De Meo
|
|
49
|
+
|
|
50
|
+
## 2.5.2 - 2018-12-08
|
|
51
|
+
- Remove usage of the global TimezoneStore instance, in favor of a local variable in the parser
|
|
52
|
+
- Deprecate TimezoneStore class methods
|
|
53
|
+
|
|
54
|
+
## 2.5.1 - 2018-10-30
|
|
55
|
+
- Fix usage without ActiveSupport installed.
|
|
56
|
+
|
|
57
|
+
## 2.5.0 - 2018-09-10
|
|
58
|
+
- Set timezone information from VTIMEZONE components in cases that ActiveSupport can't figure it out (or isn't installed)
|
|
59
|
+
- Prevent rewinding the Parser IO input during parsing - Niels Laukens
|
|
60
|
+
- Update tested/supported ruby versions & documentation updates.
|
|
61
|
+
|
|
62
|
+
## 2.4.1 - 2016-09-03
|
|
63
|
+
- Fix parsing multiple calendars or components in same file - Patrick Schnetger
|
|
64
|
+
- Fix multi-byte folding bug - Niels Laukens
|
|
65
|
+
- Fix typos across the code - Martin Edenhofer & yuuji.yaginuma
|
|
66
|
+
|
|
67
|
+
## 2.4.0 - 2016-07-04
|
|
68
|
+
- Enable parsing individual ICalendar components - Patrick Schnetger
|
|
69
|
+
- many bug fixes. Thanks to Quan Sun, Garry Shutler, Ryan Bigg, Patrick Schnetger and others
|
|
70
|
+
- README/documentation updates. Thanks to JonMidhir and Hendrik Sollich
|
|
71
|
+
|
|
72
|
+
## 2.3.0 - 2015-04-26
|
|
73
|
+
- fix value parameter for properties with multiple values
|
|
74
|
+
- fix error when assigning Icalendar::Values::Array to a component
|
|
75
|
+
- Fall back to Icalendar::Values::Date if Icalendar::Values::DateTime is not given a properly formatted value
|
|
76
|
+
- Downcase the keys in ical_params to ensure we aren't assigning both tzid and TZID
|
|
77
|
+
|
|
78
|
+
## 2.2.2 - 2014-12-27
|
|
79
|
+
- add a `has_#{component}?` method for testing if component exists - John Hope
|
|
80
|
+
- add documentation & tests for organizer attribute - Ben Walding
|
|
81
|
+
|
|
82
|
+
## 2.2.1 - 2014-12-03
|
|
83
|
+
- Prevent crashes when using ActiveSupport::TimeWithZone in multi-property DateTime fields - Danny (tdg5)
|
|
84
|
+
- Ensure TimeWithZone is loaded before using, not just ActiveSupport - Jeremy Evans
|
|
85
|
+
- Improve error message on unparseable DateTimes - Garry Shutler
|
|
86
|
+
|
|
87
|
+
## 2.2.0 - 2014-09-23
|
|
88
|
+
- Default to non-strict parsing
|
|
89
|
+
- Enable sorting events by dtstart - Mark Rickert
|
|
90
|
+
- Better tolerate malformed lines in parser - Garry Shutler
|
|
91
|
+
- Deduplicate timezone code - Jan Vlnas
|
|
92
|
+
- Eliminate warnings - rochefort
|
|
93
|
+
|
|
94
|
+
## 2.1.2 - 2014-09-10
|
|
95
|
+
- Fix timezone abbreviation generation - Jan Vlnas
|
|
96
|
+
- Fix timezone repeat rules for end of month
|
|
97
|
+
|
|
98
|
+
## 2.1.1 - 2014-07-23
|
|
99
|
+
- Quiet TimeWithZone support logging
|
|
100
|
+
- Use SecureRandom.uuid - antoinelyset
|
|
101
|
+
|
|
102
|
+
## 2.1.0 - 2014-06-17
|
|
103
|
+
- Enable parsing all custom properties, not just X- prefixed ones
|
|
104
|
+
Requires non-strict parsing
|
|
105
|
+
- Fixed bugs when using non-MRI ruby interpreters
|
|
106
|
+
- Fix bug copying OpenStruct-backed value types
|
|
107
|
+
|
|
108
|
+
## 2.0.1 - 2014-04-27
|
|
109
|
+
- Re-add support for ruby 1.9.2
|
|
110
|
+
|
|
111
|
+
## 2.0.0 - 2014-04-22
|
|
112
|
+
- Add Icalendar.logger class & logging in Parser
|
|
113
|
+
- Support tzinfo ~> 0.3 and ~> 1.1
|
|
114
|
+
|
|
115
|
+
## 2.0.0.beta.2 - 2014-04-11
|
|
116
|
+
- Add uid & acknowledged fields from valarm extensions
|
|
117
|
+
- Swallow NoMethodError on non-strict parsers
|
|
118
|
+
- Expose a parse_property method on Icalendar::Parser
|
|
119
|
+
|
|
120
|
+
## 2.0.0.beta.1 - 2014-03-30
|
|
121
|
+
- Rewrite for easier development going forward.
|
|
122
|
+
|
|
123
|
+
## 1.5.2 - 2014-02-22
|
|
124
|
+
- Output timezone components first
|
|
125
|
+
- Fix undefined local variable or method 'e' - Jason Stirk
|
|
126
|
+
|
|
127
|
+
## 1.5.1 - 2014-02-27
|
|
128
|
+
- Check for dtend existence before setting timezone - Jonas Grau
|
|
129
|
+
- Clean up and refactor components - Kasper Timm Hansen
|
|
130
|
+
|
|
131
|
+
## 1.5.0 - 2013-12-06
|
|
132
|
+
- Support for custom x- properties - Jake Craige
|
|
133
|
+
|
|
134
|
+
## 1.4.5 - 2013-11-14
|
|
135
|
+
- Fix Geo accessor methods - bouzuya
|
|
136
|
+
- Add ical_multiline_property :related_to for Alarm
|
|
137
|
+
- Allow using multi setters to append single values
|
|
138
|
+
|
|
139
|
+
## 1.4.4 - 2013-11-05
|
|
140
|
+
- Allow user to handle TZInfo::AmbiguousTime error - David Bradford
|
|
141
|
+
- Better handling of multiple exdate and rdate values
|
|
142
|
+
|
|
143
|
+
## 1.4.3 - 2013-09-18
|
|
144
|
+
- Fix concatenation of multiple BYWEEK or BYMONTH recurrence rules
|
|
145
|
+
|
|
146
|
+
## 1.4.2 - 2013-09-11
|
|
147
|
+
- Double Quote parameter values that contain forbidden characters
|
|
148
|
+
- Update Component#respond_to? to match Ruby 2.0 - Keith Marcum
|
|
149
|
+
|
|
150
|
+
## 1.4.1 - 2013-06-25
|
|
151
|
+
- Don't escape semicolon in GEO property - temirov
|
|
152
|
+
- Allow access to various parts of RRule class
|
|
153
|
+
|
|
154
|
+
## 1.4.0 - 2013-05-21
|
|
155
|
+
- Implement ACKNOWLEDGED property for VALARM - tsuzuki08
|
|
156
|
+
- Output VERSION property as first line after BEGIN:VCALENDAR
|
|
157
|
+
- Check for unbounded timezone transitions in tzinfo
|
|
158
|
+
|
|
159
|
+
## 1.3.0 - 2013-03-31
|
|
160
|
+
- Lenient parsing mode ignores unknown properties - David Grandinetti
|
|
161
|
+
- VTIMEZONE positive offsets properly have "+" prepended (Fixed issue
|
|
162
|
+
#18) - Benjamin Jorgensen (sorry for misspelling your last name)
|
|
163
|
+
|
|
164
|
+
## 1.2.4 - 2013-03-26
|
|
165
|
+
- Proxy component values now frozen in Ruby 2.0 (Fixed issue #17)
|
|
166
|
+
- Clean up gemspec for cleaner installing via bundler/git
|
|
167
|
+
|
|
168
|
+
## 1.2.3 - 2013-03-09
|
|
169
|
+
- Call `super` from Component#method_missing
|
|
170
|
+
- Clean up warnings in test suite
|
|
171
|
+
- Add Gemfile for installing development dependencies
|
|
172
|
+
|
|
173
|
+
## 1.2.2 - 2013-02-16
|
|
174
|
+
- added TZURL property to Timezone component - spacepixels
|
|
175
|
+
- correct days in RRule ("[TU,WE]" -> "TU,WE") - Christoph Finkensiep
|
|
176
|
+
|
|
177
|
+
## 1.2.1 - 2012-11-12
|
|
178
|
+
- Adds uid property to alarms to support iCloud - Jeroen Jacobs
|
|
179
|
+
- Fix up testing docs - Eric Carty-Fickes
|
|
180
|
+
- Fix parsing property params that have : in them - Sean Dague
|
|
181
|
+
- Clean up warnings in test suite - Sean Dague
|
|
182
|
+
|
|
183
|
+
## 1.2.0 - 2012-08-30
|
|
184
|
+
* Fix calendar handling for dates < 1000 - Ryan Ahearn
|
|
185
|
+
* Updated license to GPL/BSD/Ruby at users option
|
|
186
|
+
|
|
187
|
+
## 1.1.6 - 2011-03-10
|
|
188
|
+
* Fix todo handling (thanks to Frank Schwarz)
|
|
189
|
+
* clean up a number of warnings during test runs
|
|
190
|
+
|
|
191
|
+
## 1.1.5 - 2010-06-21
|
|
192
|
+
* Fix for windows line endings (thanks to Rowan Collins)
|
|
193
|
+
|
|
194
|
+
## 1.1.4 - 2010-04-23
|
|
195
|
+
* Fix for RRULE escaping
|
|
196
|
+
* Fix tests so they run under 1.8.7 in multiple environments
|
|
197
|
+
* Readme fix
|
|
198
|
+
|
|
199
|
+
## 1.1.3 - 2010-03-15
|
|
200
|
+
* Revert component sorting behavior that I was trying to make
|
|
201
|
+
the tests run more consistantly on different platforms.
|
|
202
|
+
* Added new test for multiple events in a calendar which caught that break.
|
|
203
|
+
|
|
204
|
+
## 1.1.2 - 2010-03-10
|
|
205
|
+
|
|
206
|
+
* Convert project to newgem to make for easier publishing
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
iCalendar -- Internet calendaring, Ruby style
|
|
2
2
|
===
|
|
3
3
|
|
|
4
|
-
[](https://github.com/icalendar/icalendar/actions/workflows/main.yml)
|
|
5
5
|
[](https://codeclimate.com/github/icalendar/icalendar)
|
|
6
6
|
|
|
7
7
|
<http://github.com/icalendar/icalendar>
|
data/icalendar.gemspec
CHANGED
|
@@ -21,7 +21,7 @@ ActiveSupport is required for TimeWithZone support, but not required for general
|
|
|
21
21
|
EOM
|
|
22
22
|
|
|
23
23
|
s.metadata = {
|
|
24
|
-
'changelog_uri' => 'https://github.com/icalendar/icalendar/blob/main/
|
|
24
|
+
'changelog_uri' => 'https://github.com/icalendar/icalendar/blob/main/CHANGELOG.md'
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
s.files = `git ls-files`.split "\n"
|
data/lib/icalendar/parser.rb
CHANGED
|
@@ -197,7 +197,7 @@ module Icalendar
|
|
|
197
197
|
value = parts[:value]
|
|
198
198
|
else
|
|
199
199
|
parts = BAD_LINE_REGEX.match(input) unless strict?
|
|
200
|
-
parts or fail "Invalid iCalendar input line: #{input}"
|
|
200
|
+
parts or fail ParseError, "Invalid iCalendar input line: #{input}"
|
|
201
201
|
# Non-strict and bad line so use a value of empty string
|
|
202
202
|
value = ''
|
|
203
203
|
end
|
|
@@ -227,5 +227,8 @@ module Icalendar
|
|
|
227
227
|
value: value
|
|
228
228
|
}
|
|
229
229
|
end
|
|
230
|
+
|
|
231
|
+
class ParseError < RuntimeError
|
|
232
|
+
end
|
|
230
233
|
end
|
|
231
234
|
end
|
data/lib/icalendar/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: icalendar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.10.
|
|
4
|
+
version: 2.10.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Ahearn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-07-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ice_cube
|
|
@@ -163,8 +163,8 @@ files:
|
|
|
163
163
|
- ".github/workflows/main.yml"
|
|
164
164
|
- ".gitignore"
|
|
165
165
|
- ".rspec"
|
|
166
|
+
- CHANGELOG.md
|
|
166
167
|
- Gemfile
|
|
167
|
-
- History.txt
|
|
168
168
|
- LICENSE
|
|
169
169
|
- README.md
|
|
170
170
|
- Rakefile
|
|
@@ -249,7 +249,7 @@ licenses:
|
|
|
249
249
|
- GPL-3.0-only
|
|
250
250
|
- icalendar
|
|
251
251
|
metadata:
|
|
252
|
-
changelog_uri: https://github.com/icalendar/icalendar/blob/main/
|
|
252
|
+
changelog_uri: https://github.com/icalendar/icalendar/blob/main/CHANGELOG.md
|
|
253
253
|
post_install_message: 'ActiveSupport is required for TimeWithZone support, but not
|
|
254
254
|
required for general use.
|
|
255
255
|
|
|
@@ -268,7 +268,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
268
268
|
- !ruby/object:Gem::Version
|
|
269
269
|
version: '0'
|
|
270
270
|
requirements: []
|
|
271
|
-
rubygems_version: 3.3.
|
|
271
|
+
rubygems_version: 3.3.27
|
|
272
272
|
signing_key:
|
|
273
273
|
specification_version: 4
|
|
274
274
|
summary: A ruby implementation of the iCalendar specification (RFC-5545).
|
data/History.txt
DELETED
|
@@ -1,200 +0,0 @@
|
|
|
1
|
-
=== Unreleased
|
|
2
|
-
|
|
3
|
-
=== 2.10.1 2023-12-01
|
|
4
|
-
* Parsing now handles VTIMEZONE blocks defined after their TZID is used in events and other components
|
|
5
|
-
|
|
6
|
-
=== 2.10.0 2023-11-01
|
|
7
|
-
* Add changelog metadata to gemspec - Juri Hahn
|
|
8
|
-
* Attempt to rescue timezone info when given a nonstandard tzid with no VTIMEZONE
|
|
9
|
-
* Move Values classes that shouldn't be directly used into Helpers module
|
|
10
|
-
|
|
11
|
-
=== 2.9.0 2023-08-11
|
|
12
|
-
* Always include the VALUE of Event URLs for improved compatibility - Sean Kelley
|
|
13
|
-
* Improved parse performance - Thomas Cannon
|
|
14
|
-
* Add helper methods for other Calendar method verbs
|
|
15
|
-
* bugfix: Require stringio before use in Parser - vwyu
|
|
16
|
-
|
|
17
|
-
=== 2.8.0 2022-07-10
|
|
18
|
-
* Fix compatibility with ActiveSupport 7 - Pat Allan
|
|
19
|
-
* Set default action of "DISPLAY" on alarms - Rikson
|
|
20
|
-
* Add license information to gemspec - Robert Reiz
|
|
21
|
-
* Support RFC7986 properties - Daniele Frisanco
|
|
22
|
-
|
|
23
|
-
=== 2.7.1 2021-03-14
|
|
24
|
-
* Recover from bad line-wrapping code that splits in the middle of Unicode code points
|
|
25
|
-
* Add a verbose option to the Parser to quiet some of the chattier log entries
|
|
26
|
-
|
|
27
|
-
=== 2.7.0 2020-09-12
|
|
28
|
-
* Handle custom component names, with and without X- prefix
|
|
29
|
-
* Fix Component lookup to avoid namespace collisions
|
|
30
|
-
|
|
31
|
-
=== 2.6.1 2019-12-07
|
|
32
|
-
* Improve performance when generating large ICS files - Alex Balhatchet
|
|
33
|
-
|
|
34
|
-
=== 2.6.0 2019-11-26
|
|
35
|
-
* Improve performance for calculating timezone offsets - Justin Howard
|
|
36
|
-
* Make it possible to de/serialize with Marshal - Pawel Niewiadomski
|
|
37
|
-
* Avoid FrozenError when running with frozen_string_literal
|
|
38
|
-
* Update minimum Ruby version to supported versions
|
|
39
|
-
|
|
40
|
-
=== 2.5.3 2019-03-04
|
|
41
|
-
* Improve parsing performance - nehresma
|
|
42
|
-
* Support tzinfo 2.0 - Misty De Meo
|
|
43
|
-
|
|
44
|
-
=== 2.5.2 2018-12-08
|
|
45
|
-
* Remove usage of the global TimezoneStore instance, in favor of a local variable in the parser
|
|
46
|
-
* Deprecate TimezoneStore class methods
|
|
47
|
-
|
|
48
|
-
=== 2.5.1 2018-10-30
|
|
49
|
-
* Fix usage without ActiveSupport installed.
|
|
50
|
-
|
|
51
|
-
=== 2.5.0 2018-09-10
|
|
52
|
-
* Set timezone information from VTIMEZONE components in cases that ActiveSupport can't figure it out (or isn't installed)
|
|
53
|
-
* Prevent rewinding the Parser IO input during parsing - Niels Laukens
|
|
54
|
-
* Update tested/supported ruby versions & documentation updates.
|
|
55
|
-
|
|
56
|
-
=== 2.4.1 2016-09-03
|
|
57
|
-
* Fix parsing multiple calendars or components in same file - Patrick Schnetger
|
|
58
|
-
* Fix multi-byte folding bug - Niels Laukens
|
|
59
|
-
* Fix typos across the code - Martin Edenhofer & yuuji.yaginuma
|
|
60
|
-
|
|
61
|
-
=== 2.4.0 2016-07-04
|
|
62
|
-
* Enable parsing individual ICalendar components - Patrick Schnetger
|
|
63
|
-
* many bug fixes. Thanks to Quan Sun, Garry Shutler, Ryan Bigg, Patrick Schnetger and others
|
|
64
|
-
* README/documentation updates. Thanks to JonMidhir and Hendrik Sollich
|
|
65
|
-
|
|
66
|
-
=== 2.3.0 2015-04-26
|
|
67
|
-
* fix value parameter for properties with multiple values
|
|
68
|
-
* fix error when assigning Icalendar::Values::Array to a component
|
|
69
|
-
* Fall back to Icalendar::Values::Date if Icalendar::Values::DateTime is not given a properly formatted value
|
|
70
|
-
* Downcase the keys in ical_params to ensure we aren't assigning both tzid and TZID
|
|
71
|
-
|
|
72
|
-
=== 2.2.2 2014-12-27
|
|
73
|
-
* add a `has_#{component}?` method for testing if component exists - John Hope
|
|
74
|
-
* add documentation & tests for organizer attribute - Ben Walding
|
|
75
|
-
|
|
76
|
-
=== 2.2.1 2014-12-03
|
|
77
|
-
* Prevent crashes when using ActiveSupport::TimeWithZone in multi-property DateTime fields - Danny (tdg5)
|
|
78
|
-
* Ensure TimeWithZone is loaded before using, not just ActiveSupport - Jeremy Evans
|
|
79
|
-
* Improve error message on unparseable DateTimes - Garry Shutler
|
|
80
|
-
|
|
81
|
-
=== 2.2.0 2014-09-23
|
|
82
|
-
* Default to non-strict parsing
|
|
83
|
-
* Enable sorting events by dtstart - Mark Rickert
|
|
84
|
-
* Better tolerate malformed lines in parser - Garry Shutler
|
|
85
|
-
* Deduplicate timezone code - Jan Vlnas
|
|
86
|
-
* Eliminate warnings - rochefort
|
|
87
|
-
|
|
88
|
-
=== 2.1.2 2014-09-10
|
|
89
|
-
* Fix timezone abbreviation generation - Jan Vlnas
|
|
90
|
-
* Fix timezone repeat rules for end of month
|
|
91
|
-
|
|
92
|
-
=== 2.1.1 2014-07-23
|
|
93
|
-
* Quiet TimeWithZone support logging
|
|
94
|
-
* Use SecureRandom.uuid - antoinelyset
|
|
95
|
-
|
|
96
|
-
=== 2.1.0 2014-06-17
|
|
97
|
-
* Enable parsing all custom properties, not just X- prefixed ones
|
|
98
|
-
Requires non-strict parsing
|
|
99
|
-
* Fixed bugs when using non-MRI ruby interpreters
|
|
100
|
-
* Fix bug copying OpenStruct-backed value types
|
|
101
|
-
|
|
102
|
-
=== 2.0.1 2014-04-27
|
|
103
|
-
* Re-add support for ruby 1.9.2
|
|
104
|
-
|
|
105
|
-
=== 2.0.0 2014-04-22
|
|
106
|
-
* Add Icalendar.logger class & logging in Parser
|
|
107
|
-
* Support tzinfo ~> 0.3 and ~> 1.1
|
|
108
|
-
|
|
109
|
-
=== 2.0.0.beta.2 2014-04-11
|
|
110
|
-
* Add uid & acknowledged fields from valarm extensions
|
|
111
|
-
* Swallow NoMethodError on non-strict parsers
|
|
112
|
-
* Expose a parse_property method on Icalendar::Parser
|
|
113
|
-
|
|
114
|
-
=== 2.0.0.beta.1 2014-03-30
|
|
115
|
-
* Rewrite for easier development going forward.
|
|
116
|
-
|
|
117
|
-
=== 1.5.2 2014-02-22
|
|
118
|
-
* Output timezone components first
|
|
119
|
-
* Fix undefined local variable or method 'e' - Jason Stirk
|
|
120
|
-
|
|
121
|
-
=== 1.5.1 2014-02-27
|
|
122
|
-
* Check for dtend existence before setting timezone - Jonas Grau
|
|
123
|
-
* Clean up and refactor components - Kasper Timm Hansen
|
|
124
|
-
|
|
125
|
-
=== 1.5.0 2013-12-06
|
|
126
|
-
* Support for custom x- properties - Jake Craige
|
|
127
|
-
|
|
128
|
-
=== 1.4.5 2013-11-14
|
|
129
|
-
* Fix Geo accessor methods - bouzuya
|
|
130
|
-
* Add ical_multiline_property :related_to for Alarm
|
|
131
|
-
* Allow using multi setters to append single values
|
|
132
|
-
|
|
133
|
-
=== 1.4.4 2013-11-05
|
|
134
|
-
* Allow user to handle TZInfo::AmbiguousTime error - David Bradford
|
|
135
|
-
* Better handling of multiple exdate and rdate values
|
|
136
|
-
|
|
137
|
-
=== 1.4.3 2013-09-18
|
|
138
|
-
* Fix concatenation of multiple BYWEEK or BYMONTH recurrence rules
|
|
139
|
-
|
|
140
|
-
=== 1.4.2 2013-09-11
|
|
141
|
-
* Double Quote parameter values that contain forbidden characters
|
|
142
|
-
* Update Component#respond_to? to match Ruby 2.0 - Keith Marcum
|
|
143
|
-
|
|
144
|
-
=== 1.4.1 2013-06-25
|
|
145
|
-
* Don't escape semicolon in GEO property - temirov
|
|
146
|
-
* Allow access to various parts of RRule class
|
|
147
|
-
|
|
148
|
-
=== 1.4.0 2013-05-21
|
|
149
|
-
* Implement ACKNOWLEDGED property for VALARM - tsuzuki08
|
|
150
|
-
* Output VERSION property as first line after BEGIN:VCALENDAR
|
|
151
|
-
* Check for unbounded timezone transitions in tzinfo
|
|
152
|
-
|
|
153
|
-
=== 1.3.0 2013-03-31
|
|
154
|
-
* Lenient parsing mode ignores unknown properties - David Grandinetti
|
|
155
|
-
* VTIMEZONE positive offsets properly have "+" prepended (Fixed issue
|
|
156
|
-
#18) - Benjamin Jorgensen (sorry for misspelling your last name)
|
|
157
|
-
|
|
158
|
-
=== 1.2.4 2013-03-26
|
|
159
|
-
* Proxy component values now frozen in Ruby 2.0 (Fixed issue #17)
|
|
160
|
-
* Clean up gemspec for cleaner installing via bundler/git
|
|
161
|
-
|
|
162
|
-
=== 1.2.3 2013-03-09
|
|
163
|
-
* Call `super` from Component#method_missing
|
|
164
|
-
* Clean up warnings in test suite
|
|
165
|
-
* Add Gemfile for installing development dependencies
|
|
166
|
-
|
|
167
|
-
=== 1.2.2 2013-02-16
|
|
168
|
-
* added TZURL property to Timezone component - spacepixels
|
|
169
|
-
* correct days in RRule ("[TU,WE]" -> "TU,WE") - Christoph Finkensiep
|
|
170
|
-
|
|
171
|
-
=== 1.2.1 2012-11-12
|
|
172
|
-
* Adds uid property to alarms to support iCloud - Jeroen Jacobs
|
|
173
|
-
* Fix up testing docs - Eric Carty-Fickes
|
|
174
|
-
* Fix parsing property params that have : in them - Sean Dague
|
|
175
|
-
* Clean up warnings in test suite - Sean Dague
|
|
176
|
-
|
|
177
|
-
=== 1.2.0 2012-08-30
|
|
178
|
-
* Fix calendar handling for dates < 1000 - Ryan Ahearn
|
|
179
|
-
* Updated license to GPL/BSD/Ruby at users option
|
|
180
|
-
|
|
181
|
-
=== 1.1.6 2011-03-10
|
|
182
|
-
* Fix todo handling (thanks to Frank Schwarz)
|
|
183
|
-
* clean up a number of warnings during test runs
|
|
184
|
-
|
|
185
|
-
=== 1.1.5 2010-06-21
|
|
186
|
-
* Fix for windows line endings (thanks to Rowan Collins)
|
|
187
|
-
|
|
188
|
-
=== 1.1.4 2010-04-23
|
|
189
|
-
* Fix for RRULE escaping
|
|
190
|
-
* Fix tests so they run under 1.8.7 in multiple environments
|
|
191
|
-
* Readme fix
|
|
192
|
-
|
|
193
|
-
=== 1.1.3 2010-03-15
|
|
194
|
-
* Revert component sorting behavior that I was trying to make
|
|
195
|
-
the tests run more consistantly on different platforms.
|
|
196
|
-
* Added new test for multiple events in a calendar which caught that break.
|
|
197
|
-
|
|
198
|
-
=== 1.1.2 2010-03-10
|
|
199
|
-
|
|
200
|
-
* Convert project to newgem to make for easier publishing
|