parse timestamps as ZonedDateTime internally
All checks were successful
continuous-integration/drone/push Build is passing

Timestamps have been stored with their String representation from the
API with convenience methods to convert them into ZonedDateTime.
We now use the Jackson JavaTimeModule to parse them directly and swap
the real and convenience getters.
This commit is contained in:
2023-06-15 17:50:47 +02:00
parent b72298f2a8
commit 7e5d193d1b
11 changed files with 110 additions and 79 deletions

View File

@ -1,8 +1,14 @@
## unreleased
### Deprecations
* `get...TimeString()` methods on various model classes are now deprecated
### Fix
* Fixed JSON type conversion in `SecretResponse#get(String, Class)` (#67)
### Improvements
* Parse timestamps as `ZonedDateTime` instead of `String` representation
## 1.1.4 (2023-06-15)