Releases: ical-org/ical.net
Releases · ical-org/ical.net
v5.0.0-pre.41
v5.0.0-pre.40
What's Changed
- Fix: Derive correct file and assembly version from package version in #726
- Fix inverted limiting behavior of
BYMONTHDAY
by @minichma in #730
Full Changelog: v5.0.0-pre.39...v5.0.0-pre.40
v5.0.0-pre.39
v5.0.0-pre.39
- This is the first public pre-release of the next major version of Ical.Net. It's an extensive rewrite of the library, with a focus on performance, correctness and usability. All issues reported in prior versions have been addressed, and the library has been thoroughly tested, also using the libical test suite.
- We strongly recommend using the pre-release packages, as they are more stable and feature-complete than the v4.x versions.
- Feedback is highly appreciated.
- Breaking changes from v4 are currently listed here.
What's Changed in Detail
- Update CI Publish Workflow in #600
- Set CI Publish PackageVersion to ${{env.VERSION}} in #601
- Update release-notes.md in #604
- Fix/update ICal.Net.Benchmarks in #605
- Update README.md in #612
- Migrated Ical.Net.Tests project from NUnit3 to NUnit 4 in #613
- Define behavior for time-based FREQ and date-only DTSTART in #616
- Implement deep copy methods for components in #620
- RRULE evaluation: Ignore BYtime if DTSTART is date-only in #619
- RRULE Evaluation: Apply
BYYEARDAY=366
only in leap years. in #621 - Test: Run recurrence test cases from the libical project and introduce generic file-based test cases. in #617
- Add GitHub workflow for code coverage calculation in #624
- Fix BOM causing error on line 1 in coverage.yml in #625
- Improve recurrence handling, remove restrictions in #627
- Nullable=disable for CI builds in #634
- Unify utf8 file encoding and code style settings in #632
- Fix copying of
Attendee
sUri
-typed properties in #643 - Keep apart
VEVENT.DTEND
and.DURATION
in #598 - Fix some recurrence evaluation issues in #645
- Enhance CalDateTime and DateTimeSerializer in #638
- Remove UTF7 encoding from EncodingProvider in #651
- Recurrence evaluation: Fix calculation of week numbering. in #652
- Recurrence evaluation: Implement support for negative
BYWEEKNO
values. in #654 - Recurrence: Reproduce and fix issues if
BYWEEKNO
andINTERVAL
are used together in #657 - Remove mutable state from Evaluators and some related, poorly tested functions in #655
- Reproduce and fix issues related to
RECURRENCE-ID
in #659 - Refactor to use DateOnly and TimeOnly for date/time handling in #658
- Refactor
MatchTimeZone method
inRecurrencePatternEvaluator
in #664 - Let
GetOccurrences()
et al return anIEnumerable
rather thanHashSet
. in #665 - Change RecurrencePattern.Until to Nullable in #666
- Make
RecurrencePattern.Count
,.Interval
andWeekDay.Offset
nullable to avoid usingMinValue
as magic number. in #667 - Remove remaining usages of MinValue and clean up related code in #668
- Fix when no "SENT-BY" defined, get SentBy will throw exception by @idiotsky in #669
- Disable NRT warnings for netstandard2.0 in #674
- Fix: Calculation for occurrences include DST transitions correctly in #673
- CalDateTime Arithmetic Operations in #672
- Update issue templates in #683
- Introduce
Duration
type to keep apart nominal vs exact durations. in #680 - Update GitHub Actions workflows in #685
- Make CalendarObjectBase an abstract class in #686
- Use
ubuntu-22.04
for GitHub Actions in #688 - Set Git line endings to autocrlf in #689
- Add abstraction layer to create
EXDATE
andRDATE
properties in #684 - Add values causing an
Exception
to exception message in #694 - Add permission section to daily_build workflow in #696
- Change token for publishing a GitHub pkg in #697
- GHITHUB_TOKEN write access in #698
- Remove obsolete recurrence restriction and evaluation types in #699
- Improve line folding and serialization performance in #695
- Minor folding improvements by @ssratkevich in #701
- Disallow initializing
CalDateTime
fromDateTimeKind.Local
and some cleanup in #704 - Update README in #708
- Correction in
RecurrenceDates.GetAllPeriods()
in #707 - Enable NRT for classes in namespace Ical.Net.Utility in #706
- Remove interface
IDateTime
and replace any use withCalDateTime
in #705 - Upload ICal.Net_pkg_5.0.0-daily.4 in #721
- Fix v5 daily build folder link in #722
- Make parameterless CTOR of CalDateTime private in #719
- Type of RecurrencePattern.Until is CalDateTime in #723
- Upload 5.0.0-daily.5 in #724
- Bump version to v5.0.0-pre.39 in #725
New Contributors
- @axunonb made their first contribution in #600
- @minichma made their first contribution in #616
- @idiotsky made their first contribution in #669
- @ssratkevich made their first contribution in #701
Full Changelog: v4.3.1...v5.0.0-pre.39
v4.3.1
What's Changed
- Update Ical.Net.csproj to use NodaTime 3.2.0 instead of 3.1.12. NodaTime v3.2.0 (released yesterday) brings some welcome changes
- Replace Ical.Net.nuspec with Directory.Build.props
- Remove unnecessary nuget dependencies, so
NodaTime
is again the only one
Resolves #596
Full Changelog: v4.3.0...v4.3.1
v4.3.0
- Update the repository from fork
laget.se/ical net
Apply the following change after the update:
- Remove net5.0 as target framework from all projects
- Update nuget-specific settings
- Update icon.png file used in Ical.Net.nuspec
- Update package metadata
- Remove net5.0 package target framework
- Update README.md to reflect the current project state with ical-org
- Fix: Update publish.yml to create deterministic builds for packages, update action versions
- Update GitHub actions to reflect the changed main branch name
- Update
readme.md
- Update CI workflows
publish.yml
andtests.yml
- Changed
runs-on
toubuntu-latest
. - Added
fetch-depth: 0
toactions/checkout@v4
in both workflows. - Added
Get version tag
step inpublish.yml
. - Included
-p:nowarn=1591
inBuild
steps to suppress warnings. - Changed
Test
verbosity toquiet
in both workflows. - Updated
Build and pack for publishing
inpublish.yml
to useVERSION
. - Updated
Store artifacts
step inpublish.yml
for new naming convention. - Updated
Push package to NuGet
step inpublish.yml
to useVERSION
.
- Changed
- Update ProdId constant and NodaTime package version
- Add back assembly signing to projects and include strong name key
- Update
Ical.Net.Tests.csproj
andIcal.Net.csproj
to include assembly signing by addingSignAssembly
andAssemblyOriginatorKeyFile
properties.- Replace
InternalsVisibleTo
withAssemblyAttribute
including a public key inIcal.Net.csproj
. - Add
IcalNetStrongnameKey.snk
for strong name key. - Move InternalsVisibleTo from AssemblyInfo.cs to project file
- Replace
- Add class
RegexDefaults
and update all Regex withRegexDefaults.Timeout
which is set to 200 milliseconds
This PR closes the following PRs which have previously been merged into laget.se/ical net
Closes #491
Closes #443
Closes #525
Closes #528
Closes #571
Closes #579
Closes #584
Closes #595
v4.2.0
What's Changed
- Fix grammar-error/typo in README by @josteink in #504
- Migrate to netstandard 2.0 and nodatime 3 + cleanup by @davidroth in #499
- Ordering of week numbers should not matter by @gabet1337 in #513
- A few updates by @rianjs in #515
- Fixed potential stack overflow when calculating changes to DtStart, DtEnd, etc. by @Carbonitex in #473
- Fix for timezone exception by @bigfighter in #468
- Closes #449, fixing an IsActive bug thanks to thoemy by @rianjs in #516
- Array parameter bug by @rianjs in #517
- BYWEEKNO & BYMONTH fix & ISO 8601 week number fix by @rianjs in #518
- deserialize STANDARD and DAYLIGHT timezone infos - closes #420 by @rianjs in #519
- Fix Infinite Loop with MaxDate for GetOccurrences - closes #364 by @rianjs in #520
New Contributors
- @davidroth made their first contribution in #499
- @gabet1337 made their first contribution in #513
- @Carbonitex made their first contribution in #473
- @bigfighter made their first contribution in #468
Full Changelog: v4.1.11...v4.2.0
v4.1.11
v4.1.10
What's Changed
- Associate attachments with their events when VALUE is BINARY. by @chescock in #411
- Serialize any calendar component, like a VEVENT, instead of needing to do a whole VCALENDAR by @rianjs in #423
- Add strong-name signing to ical.NET assemblies. by @josteink in #435
- Fix strong-name signing to .NET Core assemblies by @josteink in #436
Full Changelog: v4.1.9...v4.1.10
v4.1.9
v4.1.8
What's Changed
- AsUtc should return the right UTC time associated with the CalDateTim… by @rianjs in #388
- Release notes and nuspec #387 by @rianjs in #389
- Only override DateTimeKind when we know for sure what it should be #390 by @rianjs in #391
- Net46 by @rianjs in #394
- Update readme by @rianjs in #396
- Fix for #378 - handle timezones which do not observe DST by @mfields3 in #379
- Net46 by @rianjs in #398
- Target net46 again by @rianjs in #401
New Contributors
Full Changelog: v4.1.7...v4.1.8