Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions juniper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
- Added `LexerError::UnterminatedBlockString` variant. ([#1349])
- Fixed `ValuesStream` to return batch of `ExecutionError`s instead of a single one. ([#1371])
- Added `GraphQLError::NotSupported` variant. ([#1378])
- Upgraded [`compact_str` crate] integration to [0.10 version](https://github.com/ParkMyCar/compact_str/blob/v0.10.0/CHANGELOG.md#0100). ([#1387])

### Added

Expand Down Expand Up @@ -83,6 +84,7 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
[#1376]: /../../pull/1376
[#1377]: /../../pull/1377
[#1378]: /../../pull/1378
[#1387]: /../../pull/1387
[graphql/graphql-spec#525]: https://github.com/graphql/graphql-spec/pull/525
[graphql/graphql-spec#687]: https://github.com/graphql/graphql-spec/issues/687
[graphql/graphql-spec#805]: https://github.com/graphql/graphql-spec/pull/805
Expand Down Expand Up @@ -490,6 +492,7 @@ See [old CHANGELOG](/../../blob/juniper-v0.15.12/juniper/CHANGELOG.md).
[`bson` crate]: https://docs.rs/bson
[`chrono` crate]: https://docs.rs/chrono
[`chrono-tz` crate]: https://docs.rs/chrono-tz
[`compact_str` crate]: https://docs.rs/compact_str
[`derive_more` crate]: https://docs.rs/derive_more
[`jiff` crate]: https://docs.rs/jiff
[`time` crate]: https://docs.rs/time
Expand Down
4 changes: 2 additions & 2 deletions juniper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ bigdecimal = { version = "0.4", optional = true }
bson = { version = "3.0", optional = true }
chrono = { version = "0.4.30", features = ["alloc"], default-features = false, optional = true }
chrono-tz = { version = "0.10", default-features = false, optional = true }
compact_str = "0.9"
compact_str = "0.10"
derive_more = { version = "2.0", features = ["debug", "deref", "display", "error", "from", "into", "into_iterator", "try_into"] }
fnv = "1.0.5"
futures = { version = "0.3.22", features = ["alloc"], default-features = false }
Expand Down Expand Up @@ -85,7 +85,7 @@ void = { version = "1.0.2", optional = true }
arcstr = { version = "1.1", features = ["serde"] }
bencher = "0.1.2"
chrono = { version = "0.4.30", features = ["alloc"], default-features = false }
compact_str = { version = "0.9", features = ["serde"] }
compact_str = { version = "0.10", features = ["serde"] }
jiff = { version = "0.2", features = ["tzdb-bundle-always"], default-features = false }
pretty_assertions = "1.0.0"
serde_json = "1.0.18"
Expand Down
Loading