9.8.0
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
- Finos prep by @minesh-s-patel in #734
- Rename master to main by @SimonCockx in #742
- Added support for converting record types from/to strings by @SimonCockx in #743
Full Changelog: 9.7.0...9.8.0