Improvements to test coverage (#340)

This increases msrv to 1.70
This commit is contained in:
Graham Esau 2024-09-16 10:06:22 +01:00 committed by GitHub
parent 092dc17ae4
commit a479e6cc0e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
239 changed files with 5780 additions and 4883 deletions

View file

@ -6,6 +6,15 @@
- the `enumset1`/`enumset` optional dependency has been removed, as its `JsonSchema` impl did not actually match the default serialization format of `EnumSet` (https://github.com/GREsau/schemars/pull/339)
### Changed
- ⚠️ MSRV is now 1.70 ⚠️
### Fixed
- The "deserialize" schema for `bytes::Bytes`/`BytesMut` now allows strings, matching the actual deserialize behaviour of the types.
- The schema for `either::Either` now matches the actual serialize/deserialize behaviour of that type.
## [1.0.0-alpha.15] - 2024-09-05
### Added