Skip to content

9.8.0

Compare
Choose a tag to compare
@SimonCockx SimonCockx released this 18 Apr 15:56
· 100 commits to main since this release
31b9d17

This release introduces three new operations to convert a string into one of the record types date, dateTime or zonedDateTime. Examples:

  • "2024-04-18" to-date results in a date object representing the 18th of April in the year 2024.
  • "2024-04-18T13:06:26" to-date-time results in the same date, but with a time specified as 13:06:26.
  • "2024-04-18T13:06:26+02:00[Europe/Brussels]" to-zoned-date-time results in the same date and time, but with its timezone specified as Europe/Brussels.
  • "2024-04-18T13:06:26Z" to-zoned-date-time results in the same date and time, but with a zero (UTC) offset.

Furthermore, it enhances the to-string operation to allow record types to be passed as arguments as well.

What's Changed

Full Changelog: 9.7.0...9.8.0