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
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,12 @@ Rather than persist with this complexity, we've concluded that it would be bette

By [@garypen](https://github.com/garypen) in https://github.com/apollographql/router/pull/2085

### Update `apollo-parser` to `v0.3.2` ([PR #2103](https://github.com/apollographql/router/pull/2103))

This updates our dependency on our `apollo-parser` package which brings a few improvements, including more defensive parsing of some operations. See its CHANGELOG in [the `apollo-rs` repository](https://github.com/apollographql/apollo-rs/blob/main/crates/apollo-parser/CHANGELOG.md#032---2022-11-15) for more details.

By [@abernix](https://github.com/abernix) in https://github.com/apollographql/router/pull/2103

## 📚 Documentation

### Fix example `helm show values` command ([PR #2088](https://github.com/apollographql/router/pull/2088))
Expand Down
2 changes: 1 addition & 1 deletion apollo-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ features = ["docs_rs"]
access-json = "0.1.0"
anyhow = "1.0.66"
ansi_term = "0.12"
apollo-parser = "0.3.1"
apollo-parser = "0.3.2"
async-compression = { version = "0.3.15", features = [
"tokio",
"brotli",
Expand Down
4 changes: 2 additions & 2 deletions examples/supergraph-sdl/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ edition = "2021"
[dependencies]
anyhow = "1"
apollo-compiler = "0.3.0"
apollo-parser = "0.3.0"
apollo-parser = "0.3.2"
apollo-router = { path = "../../../apollo-router" }
async-trait = "0.1"
futures = "0.3"
http = "0.2"
once_cell = "1.13.0"
tower = { version = "0.4", features = ["full"] }
tracing = "0.1"
tracing = "0.1"
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
apollo-smith = { version = "0.2.0", features = ["parser-impl"] }
apollo-parser = "0.3.1"
apollo-parser = "0.3.2"
env_logger = "0.9.3"
log = "0.4"
reqwest = { version = "0.11", features = ["json", "blocking"] }
Expand Down