Skip to content

Latest commit

 

History

History
81 lines (76 loc) · 13 KB

release-notes.md

File metadata and controls

81 lines (76 loc) · 13 KB

Release notes

A listing of what each Nuget package version represents.

v4

  • 4.1.11 - (2019-03-21) - Add some conditional debug symbols so VSTS doesn't choke on strong-named assemblies. Thanks, eriknuds #442
  • 4.1.10 - (2019-01-31) - Strong-named assemblies. Thanks, josteink #159
  • 4.1.9 - (2018-07-18) - Associate attachments with their events when VALUE is BINARY. Without the association, parameters such as FMTTYPE would be lost. PR 411
  • 4.1.8 - (2018-06-12) - PRODID and VERSION are unconditionally set when serializing a calendar so as not to mislead consumers about where the serialized output came from. Previous behavior would use the values that came from deserialization. #403
  • 4.1.6 - (2018-06-01) - Target net46 instead of net45. It seems that System.Reflection.TypeExtensions, doesn't support framework versions below 4.6. Bummer.
  • 4.1.5 - (2018-05-28)
    • Target net45 instead of net46 which opens up the applications that can consume the latest version! #392
    • NodaTime doesn't specify an end times for time zones which don't observe DST (such as America/Phoenix). We need to handle unbounded end times. #378
    • Better null handling for CalDateTimes. #372
  • 4.1.4 - (2018-05-24) - #392. .NET Standard (still) doesn't play nicely with .NET Framework applications, so I have also targeted .NET 4.6 (net46). As a consequence of that, I had to downgrade System.Reflection.TypeExtensions to 4.1.0, because the original targeted version (4.3.0) was retargeted as netstandard2.0, rendering it incompatible with a netstandard1.3 library.
  • 4.1.2 - (2018-05-21) - #388. Bugfix: Specifying a time zone identifier in the CalDateTime constructor should override the backing DateTime's Kind property. If no time zone identifier is specified, then the Kind property shouldn't be changed.
  • 4.1.1 - (2018-05-21) - #387. Bugfix: Calling CalDateTime.AsUtc caches the UTC time, but the cache was not being reset if the TzId property changed.
  • 4.1.0/4.0.7 - (2018-05-15) - #383. Add a read-only AsDateTimeOffset property to IDateTime. Add a few docs to RecurrencePattern.
  • 4.0.6 - (2017-11-28) - #344. Fix the VERSION property so it's 2.0 as RFC-5545 requires.
  • 4.0.4 PR 341. Cache the UTC representation for CalDateTimes. This results in a 12-16% reduction in unit test runtime.
  • 4.0.3 #337. Fixed a bug in SimpleDeserializer where tab characters (\t) were excluded from regex match.
  • 4.0.1 #335. Technically this should be 5.0, but given 4.0.0 only has 24 downloads, I've just done a minor version bump.
    • Moved everything from Ical.Net.Collections into the Ical.Net assembly.
    • Updated the PRODID stamp to say 4.0.
    • Fixed a bug with a missing nuget dependency
  • 4.0.0:
    • DateTimeKind is preserved during serialization round trips. Z suffixed (i.e. UTC) DATE-TIMEs produce a DateTimeKind.Utc, and everything else produces a DateTimeKind.Local. Similarly, when creating CalDateTimes with ambiguous timezones, the DateTimeKind is examined in an attempt to infer whether it's a UTC time or not. In order of importance, the way of determining DateTimeKind is: time zone id, DateTimeKind on the incoming DateTime, and then a fallback. This should improve interop with other ical libraries like Telerik. #331
    • RRULE's UNTIL property is now inclusive, and doesn't rely on UTC time comparisons. #320
    • CalDateTime.ToTimeZone produces the correct local time #330
    • VEVENT status should be uppercase during serialization. A subtle (but breaking) change, necessitating a major version bump. #318
    • VTIMEZONEs are once again serialized, this time pulling historic time zone data from NodaTime -- thanks beriniwlew! PR 304
    • Entry points are now consolidated into the right places, and make sense:
      • CalendarCollection.Load() loads a CalendarCollection
      • Calendar.Load loads a Calendar.
      • CalendarComponent.Load() loads whatever type you're looking for.
    • The ANTLR-based parser is gone. chescock's SimpleDeserializer is used everywhere.

v3

  • 3.0.15: .NET Standard version (aka v3 aka net-core) is missing System.Reflection.TypeExtensions dependency. #326
  • 3.0.14: .NET Standard version (aka v3 aka net-core) is missing System.Runtime.Serialization.Primitives dependency. #324
  • 3.0.13: DTSTART is not required for VTODO components. PR 322
  • 3.0.12: Several improvements rolled up:
    • CalendarEvent now considers Summary and Description for equality and hashing. PR 309.
    • Protection against InvalidOperationExceptions in some collections usage scenarios PR 312
    • Normalized Journal implementation. PR 310
  • 3.0.11-net-core-beta: Targeting netstandard1.3 and net46
  • 3.0.10-net-core-beta: Reverts a change made in 3.0.3 which allowed UTC timestamps to specify TZID=UTC instead of being suffixed with Z. The spec requires Z suffixes, and broke many applications, including Outlook. #263
  • 3.0.9-net-core-beta: Bugfixes: PeriodList now fully implements IList<Period>. Keep data structures in sync in GroupedList.Remove() #253. Fix for StackOverflow exception #257. UnitTests can now be run in VS test runner!
  • 3.0.8-net-core-alpha: Bugfix: Better CalDateTime equality and hashing, because time zones matter. #275
  • 3.0.7-net-core-alpha: Bugfix: Fixed a small ordering bug when evaluating EXDATEs and RDATEs #275
  • 3.0.6-net-core-alpha: Bugfix: CalendarEvent's Equals() and GetHashCode() were buggy in that they did not consider RecurrenceDates and ExceptionDates properly. Both methods treated these properties as if they were a single collection. Now they are normalized by time zone when before determining whether complete set of RDATEs or EXDATEs are the same. #275
  • 3.0.4-net-core-alpha: CalendarEvent's Equals() and GetHashCode() methods were asymmetric. Both now consider Attachments. In addition, several calendar components did not implement Equals() and GetHashCode(), namely Journal and Todo. They both delegate to RecurringComponent for the properties owned by that parent object, and extend the methods for the child properties that they respectively own. #271
  • 3.0.3-net-core-alpha: Bringing in 2.2.34's changes: serializing EXDATEs and RDATEs now includes time zone information when specified. UTC timestamps are now allowed to be specified either in Z-suffixed form (which was mandatory before), OR explicitly with a time zone id (TZID=UTC). This allows greater interop with third-party libraries like Telerik's RadSchedule. #259 PeriodList now implements IList<Period>.
  • 3.0.2-net-core-alpha: Fix nuspec file to declare NodaTime as dependency
  • 3.0.1-alpha: Initial publishing of .NET Core release

v2

  • 2.3.6 - (2019-01-30) - Strong-named assemblies. Thanks, josteink #159
  • 2.3.5: VTIMEZONEs are once again serialized, this time pulling historic time zone data from NodaTime -- thanks beriniwlew! PR 304
  • 2.3.4: DTSTART is not required for VTODO components. PR 322
  • 2.3.3: Several improvements rolled up:
    • Event now considers Summary and Description for equality and hashing. PR 309.
    • Protection against InvalidOperationExceptions in some collections usage scenarios PR 312
    • Normalized Journal implementation. PR 310
  • 2.3.2: Reverts a change made in 2.2.34 which allowed UTC timestamps to specify TZID=UTC instead of being suffixed with Z. The spec requires Z suffixes, and broke many applications, including Outlook. #263
  • 2.3.0: PeriodList now implements IList #280
  • 2.2.39: Bugfix: Better CalDateTime equality and hashing, because time zones matter. #275
  • 2.2.38: Bugfix: Fixed a small ordering bug when evaluating EXDATEs and RDATEs #275
  • 2.2.37: Bugfix: Event's Equals() and GetHashCode() were buggy in that they did not consider RecurrenceDates and ExceptionDates properly. Both methods treated these properties as if they were a single collection. Now they are normalized by time zone when before determining whether complete set of RDATEs or EXDATEs are the same. #275
  • 2.2.35: Bugfix: Event's Equals() and GetHashCode() methods were asymmetric. Both now consider Attachments. In addition, several calendar components did not implement Equals() and GetHashCode(), namely Journal and Todo. They both delegate to RecurringComponent for the properties owned by that parent object, and extend the methods for the child properties that they respectively own. #271
  • 2.2.34: Serializing EXDATEs and RDATEs now includes time zone information when specified. UTC timestamps are now allowed to be specified either in Z-suffixed form (which was mandatory before), OR explicitly with a time zone id (TZID=UTC). This allows greater interop with third-party libraries like Telerik's RadSchedule. #259
  • 2.2.33: Bugfix for #235 when years have 53 weeks. Contains a new deserializer that's twice as fast as the default ANTLR implementation, and several other (smaller) performance enhancements. This will become the default deserializer in a future release. PR 246, PR 247
  • 2.2.31: .NET's UTC offset parsing semantics don't match the RFC (which allows for hhmmss UTC offsets), so I extended the offset serializer to account for these differences. (#102, #236)
  • 2.2.30: Event.Resources is an IList again. Event.Resources wasn't being deserialized, so I have reverted back to an IList to fix this. Sorry everyone. I'm intentionally violating my own semver rules. In the future, I'll call version n+1 "vNext" so I can more freely rev the major version number.
  • 2.2.29: Calling GetOccurrences() on a recurrable component should recompute the recurrence set. Specifying EXDATE values that don't have a TimeOfDay component should "black out" that day from a recurring component's StartTime.#223
  • 2.2.25: Fix for Collection was modified exception, and better handling of recurrence ids when calling Calendar.GetOccurrences (#188) (#148)
  • 2.2.24: Performance enhancement for solidus-prefixed time zones (#204).
  • 2.2.23: Bugfix for culture for geographic location serialization. RFC-5545 requires coordinates to use decimal points, not commas, regardless of culture. Correct: 1.2345. Incorrect: 1,2345. (#202)
  • 2.2.22: Bugfix for Event serialization that always changed the Duration to 0. Serialization shouldn't have side effects. (#199)

Changes weren't systematically tracked before 2.2.22.