Releases: OzzyCzech/icalparser
Releases · OzzyCzech/icalparser
Remove redundant types
What's Changed
Full Changelog: v3.1.0...v3.1.1
Drop PHP 8.0 support
Drop support for PHP 8
v3.0.6
What's Changed
- Update readme.md by @Rotzbua in #70
- Fix issue #61 by @christiaangoossens in #71
New Contributors
- @christiaangoossens made their first contribution in #71
Full Changelog: v3.0.5...v3.0.6
v3.0.5
EventList instead of array
There are some BC breaks getEvents()
return EventList
ArrayObject instead of plain array.
Two methods getSortedEvents()
and getReverseSortedEvents()
are now deprecated in favor of getEvents()->sorted()
and getEvents()->reversed()
see EventList code for more details.
All PHP tests have been rewritten and refactored into a new modern form.
- 8566172 BC: getEvents() returns EventsList instead of array
- 7173aa9 Update readme example
- dc6461e Update example to new EventList ArrayObject
- dddcfed Remove windows_timezones.php from ignored
- d8de406 Move timezones to bin
- 3cc038e BC: Add EventList (Array object) that will be caring all events instead of array
- 00d4630 Freq: PHP is case insensitive
- 8b8e53f Freq: use printf instead of echo in debug messages
- cf088bd Freq: PHP ins case insensitive with function names
- 365a22c Freq: add types to constructor
- 9a32889 Freq reformat
- 3440258 Upgrade contact information and copyright
Bump Minimal PHP Version to 7.4
Compatibility with PHP 8.0
Merge pull request #53 from Rotzbua/fix_ci Fix ci & prepare php 8.0 thanks @Rotzbua
Fix multiple CATEGORIES issue
There can be multiple categories comma separated or in multiple lines
CATEGORIES:Anruf
CATEGORIES:Besondere Gelegenheit
CATEGORIES:Feiertag
CATEGORIES:Online
CATEGORIES:Suppliers
or
CATEGORIES:Anruf, Besondere Gelegenheit, Feiertag, Online, Suppliers
BC break: from this version CATEGORIES
are always array
Fix #51