Upgrade chrono-tz crate from 0.8 to 0.9 version (#1252)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kai Ren <tyranron@gmail.com>
This commit is contained in:
dependabot[bot] 2024-04-08 15:16:30 +00:00 committed by GitHub
parent 9c4ea327f9
commit aade4c8c7c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 4 deletions

View file

@ -6,6 +6,20 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
## [0.17.0] · 2024-04-?? (unreleased)
[0.17.0]: /../../tree/juniper-v0.17.0/juniper
[Diff](/../../compare/juniper-v0.16.1...juniper-v0.17.0) | [Milestone](/../../milestone/7)
### BC Breaks
- Upgraded [`chrono-tz` crate] integration to [0.9 version](https://github.com/chronotope/chrono-tz/releases/tag/v0.9.0). ([#1252])
[#1252]: /../../pull/1252
## [0.16.1] · 2024-04-04 ## [0.16.1] · 2024-04-04
[0.16.1]: /../../tree/juniper-v0.16.1/juniper [0.16.1]: /../../tree/juniper-v0.16.1/juniper

View file

@ -47,7 +47,7 @@ auto_enums = "0.8"
bigdecimal = { version = "0.4", optional = true } bigdecimal = { version = "0.4", optional = true }
bson = { version = "2.4", features = ["chrono-0_4"], optional = true } bson = { version = "2.4", features = ["chrono-0_4"], optional = true }
chrono = { version = "0.4.30", features = ["alloc"], default-features = false, optional = true } chrono = { version = "0.4.30", features = ["alloc"], default-features = false, optional = true }
chrono-tz = { version = "0.8", default-features = false, optional = true } chrono-tz = { version = "0.9", default-features = false, optional = true }
fnv = "1.0.5" fnv = "1.0.5"
futures = { version = "0.3.22", features = ["alloc"], default-features = false } futures = { version = "0.3.22", features = ["alloc"], default-features = false }
graphql-parser = { version = "0.4", optional = true } graphql-parser = { version = "0.4", optional = true }

View file

@ -78,7 +78,7 @@ mod test {
fn forward_slash() { fn forward_slash() {
tz_input_test( tz_input_test(
"Abc/Xyz", "Abc/Xyz",
Err("Failed to parse `TimeZone`: received invalid timezone"), Err("Failed to parse `TimeZone`: failed to parse timezone"),
); );
} }
@ -86,7 +86,7 @@ mod test {
fn number() { fn number() {
tz_input_test( tz_input_test(
"8086", "8086",
Err("Failed to parse `TimeZone`: received invalid timezone"), Err("Failed to parse `TimeZone`: failed to parse timezone"),
); );
} }
@ -94,7 +94,7 @@ mod test {
fn no_forward_slash() { fn no_forward_slash() {
tz_input_test( tz_input_test(
"AbcXyz", "AbcXyz",
Err("Failed to parse `TimeZone`: received invalid timezone"), Err("Failed to parse `TimeZone`: failed to parse timezone"),
); );
} }
} }