Skip to content

Commit 14f4a31

Browse files
committed
Fix string mangling on dynamic schema by upgrading smartstring crate (#1142, #1143)
1 parent 6fd7a59 commit 14f4a31

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

juniper/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# [[0.15.11] 2023-01-??](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.11)
2+
3+
- Fix string mangling on dynamic schema by upgrading `smartstring` to `1.0` version. ([#1142](https://github.com/graphql-rust/juniper/issues/1142), [#1143](https://github.com/graphql-rust/juniper/issues/1143))
4+
15
# [[0.15.10] 2022-07-28](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.10)
26

37
- Fix [CVE-2022-31173](https://github.com/graphql-rust/juniper/security/advisories/GHSA-4rx6-g5vg-5f3j).

juniper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ graphql-parser = { version = "0.3", optional = true }
4646
indexmap = { version = "1.0", features = ["serde-1"] }
4747
serde = { version = "1.0.8", features = ["derive"], default-features = false }
4848
serde_json = { version = "1.0.2", default-features = false, optional = true }
49-
smartstring = "0.2.6"
49+
smartstring = "1.0"
5050
static_assertions = "1.1"
5151
url = { version = "2.0", optional = true }
5252
uuid = { version = "0.8", default-features = false, optional = true }

0 commit comments

Comments
 (0)