Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the version of the router-bridge #5064

Merged
merged 6 commits into from
May 3, 2024
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
### Update the version of the router-bridge ([PR #5064](https://github.com/apollographql/router/pull/5064))

Update our router-bridge version to pull in fixes.

The router is now using: router-bridge = "=0.5.21+v2.7.5"

By [@garypen](https://github.com/garypen) in https://github.com/apollographql/router/pull/5064
4 changes: 2 additions & 2 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5721,9 +5721,9 @@ dependencies = [

[[package]]
name = "router-bridge"
version = "0.5.20+v2.7.4"
version = "0.5.21+v2.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5179aaf2c3c9ca2d76e2c5f6fbfe30a4e1d4c64cae0d269d0395b351f4993fbb"
checksum = "b2142445fe3fe2aae7a3c3c5083d1211a448a0dabb489a14dd90d427cf6c0b13"
dependencies = [
"anyhow",
"async-channel 1.9.0",
Expand Down
2 changes: 1 addition & 1 deletion apollo-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ regex = "1.10.3"
reqwest.workspace = true

# note: this dependency should _always_ be pinned, prefix the version with an `=`
router-bridge = "=0.5.20+v2.7.4"
router-bridge = "=0.5.21+v2.7.5"

rust-embed = "8.2.0"
rustls = "0.21.11"
Expand Down
2 changes: 1 addition & 1 deletion apollo-router/tests/integration/redis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ mod test {
// 2. run `docker compose up -d` and connect to the redis container by running `docker-compose exec redis /bin/bash`.
// 3. Run the `redis-cli` command from the shell and start the redis `monitor` command.
// 4. Run this test and yank the updated cache key from the redis logs.
let known_cache_key = "plan:v2.7.4:16385ebef77959fcdc520ad507eb1f7f7df28f1d54a0569e3adabcb4cd00d7ce:3973e022e93220f9212c18d0d0c543ae7c309e46640da93a4a0314de999f5112:5c7a72fa35639949328548d77b56dba2e77d0dfa90c19b69978da119e996bb92";
let known_cache_key = "plan:v2.7.5:16385ebef77959fcdc520ad507eb1f7f7df28f1d54a0569e3adabcb4cd00d7ce:3973e022e93220f9212c18d0d0c543ae7c309e46640da93a4a0314de999f5112:5c7a72fa35639949328548d77b56dba2e77d0dfa90c19b69978da119e996bb92";

let config = RedisConfig::from_url("redis://127.0.0.1:6379").unwrap();
let client = RedisClient::new(config, None, None, None);
Expand Down
10 changes: 9 additions & 1 deletion docs/source/federation-version-support.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,15 @@ The table below shows which version of federation each router release is compile
<tbody>
<tr>
<td>
v1.45.0 and later (<a href="https://github.com/apollographql/router/releases">see latest releases</a>)
v1.46.0 and later (<a href="https://github.com/apollographql/router/releases">see latest releases</a>)
</td>
<td>
2.7.5
</td>
</tr>
<tr>
<td>
v1.45.0
</td>
<td>
2.7.2
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ reqwest = { workspace = true, features = ["json", "blocking"] }
serde_json.workspace = true
tokio.workspace = true
# note: this dependency should _always_ be pinned, prefix the version with an `=`
router-bridge = "=0.5.20+v2.7.4"
router-bridge = "=0.5.21+v2.7.5"

[dev-dependencies]
anyhow = "1"
Expand Down
Loading