Skip to content

Commit 16eed65

Browse files
committed
prep release: v1.58.0-rc.3
1 parent f080e3c commit 16eed65

File tree

14 files changed

+21
-24
lines changed

14 files changed

+21
-24
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ dependencies = [
178178

179179
[[package]]
180180
name = "apollo-federation"
181-
version = "1.58.0-rc.2"
181+
version = "1.58.0-rc.3"
182182
dependencies = [
183183
"apollo-compiler",
184184
"derive_more",
@@ -231,7 +231,7 @@ dependencies = [
231231

232232
[[package]]
233233
name = "apollo-router"
234-
version = "1.58.0-rc.2"
234+
version = "1.58.0-rc.3"
235235
dependencies = [
236236
"access-json",
237237
"ahash",
@@ -399,7 +399,7 @@ dependencies = [
399399

400400
[[package]]
401401
name = "apollo-router-benchmarks"
402-
version = "1.58.0-rc.2"
402+
version = "1.58.0-rc.3"
403403
dependencies = [
404404
"apollo-parser",
405405
"apollo-router",
@@ -415,7 +415,7 @@ dependencies = [
415415

416416
[[package]]
417417
name = "apollo-router-scaffold"
418-
version = "1.58.0-rc.2"
418+
version = "1.58.0-rc.3"
419419
dependencies = [
420420
"anyhow",
421421
"cargo-scaffold",

apollo-federation/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apollo-federation"
3-
version = "1.58.0-rc.2"
3+
version = "1.58.0-rc.3"
44
authors = ["The Apollo GraphQL Contributors"]
55
edition = "2021"
66
description = "Apollo Federation"

apollo-router-benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apollo-router-benchmarks"
3-
version = "1.58.0-rc.2"
3+
version = "1.58.0-rc.3"
44
authors = ["Apollo Graph, Inc. <packages@apollographql.com>"]
55
edition = "2021"
66
license = "Elastic-2.0"

apollo-router-scaffold/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apollo-router-scaffold"
3-
version = "1.58.0-rc.2"
3+
version = "1.58.0-rc.3"
44
authors = ["Apollo Graph, Inc. <packages@apollographql.com>"]
55
edition = "2021"
66
license = "Elastic-2.0"

apollo-router-scaffold/templates/base/Cargo.template.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ apollo-router = { path ="{{integration_test}}apollo-router" }
2222
apollo-router = { git="https://github.com/apollographql/router.git", branch="{{branch}}" }
2323
{{else}}
2424
# Note if you update these dependencies then also update xtask/Cargo.toml
25-
apollo-router = "1.58.0-rc.2"
25+
apollo-router = "1.58.0-rc.3"
2626
{{/if}}
2727
{{/if}}
2828
async-trait = "0.1.52"

apollo-router-scaffold/templates/base/xtask/Cargo.template.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ apollo-router-scaffold = { path ="{{integration_test}}apollo-router-scaffold" }
1313
{{#if branch}}
1414
apollo-router-scaffold = { git="https://github.com/apollographql/router.git", branch="{{branch}}" }
1515
{{else}}
16-
apollo-router-scaffold = { git = "https://github.com/apollographql/router.git", tag = "v1.58.0-rc.2" }
16+
apollo-router-scaffold = { git = "https://github.com/apollographql/router.git", tag = "v1.58.0-rc.3" }
1717
{{/if}}
1818
{{/if}}
1919
anyhow = "1.0.58"

apollo-router/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apollo-router"
3-
version = "1.58.0-rc.2"
3+
version = "1.58.0-rc.3"
44
authors = ["Apollo Graph, Inc. <packages@apollographql.com>"]
55
repository = "https://github.com/apollographql/router/"
66
documentation = "https://docs.rs/apollo-router"
@@ -66,7 +66,7 @@ features = ["docs_rs"]
6666
access-json = "0.1.0"
6767
anyhow = "1.0.86"
6868
apollo-compiler.workspace = true
69-
apollo-federation = { path = "../apollo-federation", version = "=1.58.0-rc.2" }
69+
apollo-federation = { path = "../apollo-federation", version = "=1.58.0-rc.3" }
7070
arc-swap = "1.6.0"
7171
async-channel = "1.9.0"
7272
async-compression = { version = "0.4.6", features = [

dockerfiles/tracing/docker-compose.datadog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33

44
apollo-router:
55
container_name: apollo-router
6-
image: ghcr.io/apollographql/router:v1.58.0-rc.2
6+
image: ghcr.io/apollographql/router:v1.58.0-rc.3
77
volumes:
88
- ./supergraph.graphql:/etc/config/supergraph.graphql
99
- ./router/datadog.router.yaml:/etc/config/configuration.yaml

dockerfiles/tracing/docker-compose.jaeger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
apollo-router:
55
container_name: apollo-router
66
#build: ./router
7-
image: ghcr.io/apollographql/router:v1.58.0-rc.2
7+
image: ghcr.io/apollographql/router:v1.58.0-rc.3
88
volumes:
99
- ./supergraph.graphql:/etc/config/supergraph.graphql
1010
- ./router/jaeger.router.yaml:/etc/config/configuration.yaml

dockerfiles/tracing/docker-compose.zipkin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
apollo-router:
55
container_name: apollo-router
66
build: ./router
7-
image: ghcr.io/apollographql/router:v1.58.0-rc.2
7+
image: ghcr.io/apollographql/router:v1.58.0-rc.3
88
volumes:
99
- ./supergraph.graphql:/etc/config/supergraph.graphql
1010
- ./router/zipkin.router.yaml:/etc/config/configuration.yaml

0 commit comments

Comments
 (0)