Skip to content

Commit 81eec95

Browse files
fix(deps): update rust crate sonic-rs to 0.5 (#291)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [sonic-rs](https://redirect.github.com/cloudwego/sonic-rs) | dependencies | minor | `0.3` -> `0.5` | --- ### Release Notes <details> <summary>cloudwego/sonic-rs (sonic-rs)</summary> ### [`v0.5.2`](https://redirect.github.com/cloudwego/sonic-rs/releases/tag/0.5.2) [Compare Source](https://redirect.github.com/cloudwego/sonic-rs/compare/0.5.1...0.5.2) ##### What's Changed - fix: correct column number in error message ([#&#8203;178](https://redirect.github.com/cloudwego/sonic-rs/issues/178)) by [@&#8203;chen-hongzhi](https://redirect.github.com/chen-hongzhi) in [https://github.com/cloudwego/sonic-rs/pull/180](https://redirect.github.com/cloudwego/sonic-rs/pull/180) - fix UAF and zero-copy by [@&#8203;liuq19](https://redirect.github.com/liuq19) in [https://github.com/cloudwego/sonic-rs/pull/184](https://redirect.github.com/cloudwego/sonic-rs/pull/184) ##### New Contributors - [@&#8203;chen-hongzhi](https://redirect.github.com/chen-hongzhi) made their first contribution in [https://github.com/cloudwego/sonic-rs/pull/180](https://redirect.github.com/cloudwego/sonic-rs/pull/180) **Full Changelog**: cloudwego/sonic-rs@0.5.1...0.5.2 ### [`v0.5.1`](https://redirect.github.com/cloudwego/sonic-rs/releases/tag/0.5.1) [Compare Source](https://redirect.github.com/cloudwego/sonic-rs/compare/0.5.0...0.5.1) ##### What's Changed - feat: support api for deserializer to check trailing chars by [@&#8203;Ggiggle](https://redirect.github.com/Ggiggle) in [https://github.com/cloudwego/sonic-rs/pull/177](https://redirect.github.com/cloudwego/sonic-rs/pull/177) **Full Changelog**: cloudwego/sonic-rs@0.5.0...0.5.1 ### [`v0.5.0`](https://redirect.github.com/cloudwego/sonic-rs/releases/tag/0.5.0) ##### What's Changed ##### BreakChange `get_many` returns `Result<Vec<Option<LazyValue>>>` instead of `Result<Vec<LazyValue>>` **Full Changelog**: cloudwego/sonic-rs@0.4.0...0.5.0 ### [`v0.4.0`](https://redirect.github.com/cloudwego/sonic-rs/releases/tag/0.4.0) [Compare Source](https://redirect.github.com/cloudwego/sonic-rs/compare/0.3.17...0.4.0) ##### What's Changed ##### Breaking Changes - Optimized JSON iterator implementation using `Cow` to eliminate unnecessary copies - Removed redundant allocations in the `pointer!()` macro for enhanced performance - Change `WriteExt` trait to return errors ##### Enhancement - More APIs in `LazyValue` - Less memory consumption and faster lookup in `Value` ##### New Contributors - [@&#8203;lsjbd](https://redirect.github.com/lsjbd) made their first contribution in [https://github.com/cloudwego/sonic-rs/pull/143](https://redirect.github.com/cloudwego/sonic-rs/pull/143) - [@&#8203;qRoC](https://redirect.github.com/qRoC) made their first contribution in [https://github.com/cloudwego/sonic-rs/pull/148](https://redirect.github.com/cloudwego/sonic-rs/pull/148) - [@&#8203;Ggiggle](https://redirect.github.com/Ggiggle) made their first contribution in [https://github.com/cloudwego/sonic-rs/pull/149](https://redirect.github.com/cloudwego/sonic-rs/pull/149) **Full Changelog**: cloudwego/sonic-rs@0.3.17...0.4.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/graphql-hive/gateway-rs). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS40MC4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent c3e8a2b commit 81eec95

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

Cargo.lock

Lines changed: 16 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/gateway/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ graphql-tools = "0.4.0" # Using version from original file
2323
# Serialization
2424
serde = { version = "1.0.203", features = ["derive"] }
2525
serde_json = "1.0.140"
26-
sonic-rs = "0.3"
26+
sonic-rs = "0.5"
2727

2828
# HTTP client and caching
2929
moka = { version = "0.12.8", features = ["future"] }

lib/query-plan-executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ hyper = { version= "1.6.0", features = ["client"] }
2020
hyper-util = { version= "0.1.15", features = ["client", "client-legacy", "http1", "http2", "tokio"] }
2121
http-body-util = "0.1.3"
2222
http = "1.3.1"
23-
sonic-rs = "0.3"
23+
sonic-rs = "0.5"
2424
indexmap = "2.10.0"
2525

2626
[dev-dependencies]

0 commit comments

Comments
 (0)