chore(deps): Bump Ical.Net from 5.2.1 to 5.2.2#689
Merged
Conversation
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
--- updated-dependencies: - dependency-name: Ical.Net dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1ab509f to
e330ccf
Compare
Ical.Net 5.2.2 marks RecurringComponent.RecurrenceRules (the plural collection) [Obsolete], which our warnings-as-errors build promotes to CS0618, failing both `build` and `code-quality` (dotnet format) on the dependency-bump PR. Both call sites only ever added a single pattern, so swap the obsolete `RecurrenceRules.Add(new RecurrencePattern(...))` for the new singular `RecurrenceRule = new RecurrencePattern(...)` the obsolete message points to. - CalendarOccurrenceExpander.cs: recurrence expansion - CalendarService.cs: COUNT-bounded rule end-time computation Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated Ical.Net from 5.2.1 to 5.2.2.
Release notes
Sourced from Ical.Net's releases.
5.2.2
Fixes
Alarm.GetOccurrences(...) andAlarm.Poll(...)now have an optionalendTime` parameter to limit the evaluation of occurrences.This prevents potential performance issues when evaluating alarms with no end date or a very long recurrence pattern. If
endTimeis not provided, the methods will evaluate occurrences indefinitely until an exception is thrown or the system's maximum date is reached.What's Changed
Full Changelog: ical-org/ical.net@v5.2.1...v5.2.2
Commits viewable in compare view.