diff --git a/.changesets/maint_garypen_router_258_update_router_bridge.md b/.changesets/maint_garypen_router_258_update_router_bridge.md new file mode 100644 index 0000000000..7c0d083f04 --- /dev/null +++ b/.changesets/maint_garypen_router_258_update_router_bridge.md @@ -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 \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index d258b1ad4a..797f6c5f43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5704,9 +5704,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", diff --git a/apollo-router/Cargo.toml b/apollo-router/Cargo.toml index bd2040f706..2990008a77 100644 --- a/apollo-router/Cargo.toml +++ b/apollo-router/Cargo.toml @@ -183,7 +183,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" diff --git a/apollo-router/tests/integration/redis.rs b/apollo-router/tests/integration/redis.rs index ea85c1db49..afa898d30c 100644 --- a/apollo-router/tests/integration/redis.rs +++ b/apollo-router/tests/integration/redis.rs @@ -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); diff --git a/docs/source/federation-version-support.mdx b/docs/source/federation-version-support.mdx index 7e44a9dee6..44a7c65a72 100644 --- a/docs/source/federation-version-support.mdx +++ b/docs/source/federation-version-support.mdx @@ -35,7 +35,15 @@ The table below shows which version of federation each router release is compile - v1.45.0 and later (see latest releases) + v1.46.0 and later (see latest releases) + + + 2.7.5 + + + + + v1.45.0 2.7.2 diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 2ab4d92525..8151da867a 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -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"