Skip to content

Commit a41eb8d

Browse files
committed
prep release: v1.58.1-rc.1
1 parent 4c21cef commit a41eb8d

File tree

13 files changed

+20
-20
lines changed

13 files changed

+20
-20
lines changed

Cargo.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ dependencies = [
178178

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

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

400400
[[package]]
401401
name = "apollo-router-benchmarks"
402-
version = "1.58.1-rc.0"
402+
version = "1.58.1-rc.1"
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.1-rc.0"
418+
version = "1.58.1-rc.1"
419419
dependencies = [
420420
"anyhow",
421421
"cargo-scaffold",

apollo-federation/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apollo-federation"
3-
version = "1.58.1-rc.0"
3+
version = "1.58.1-rc.1"
44
authors = ["The Apollo GraphQL Contributors"]
55
edition = "2021"
66
description = "Apollo Federation"

apollo-router-benchmarks/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apollo-router-benchmarks"
3-
version = "1.58.1-rc.0"
3+
version = "1.58.1-rc.1"
44
authors = ["Apollo Graph, Inc. <[email protected]>"]
55
edition = "2021"
66
license = "Elastic-2.0"

apollo-router-scaffold/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apollo-router-scaffold"
3-
version = "1.58.1-rc.0"
3+
version = "1.58.1-rc.1"
44
authors = ["Apollo Graph, Inc. <[email protected]>"]
55
edition = "2021"
66
license = "Elastic-2.0"

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

+1-1
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.1-rc.0"
25+
apollo-router = "1.58.1-rc.1"
2626
{{/if}}
2727
{{/if}}
2828
async-trait = "0.1.52"

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

+1-1
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.1-rc.0" }
16+
apollo-router-scaffold = { git = "https://github.com/apollographql/router.git", tag = "v1.58.1-rc.1" }
1717
{{/if}}
1818
{{/if}}
1919
anyhow = "1.0.58"

apollo-router/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apollo-router"
3-
version = "1.58.1-rc.0"
3+
version = "1.58.1-rc.1"
44
authors = ["Apollo Graph, Inc. <[email protected]>"]
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.1-rc.0" }
69+
apollo-federation = { path = "../apollo-federation", version = "=1.58.1-rc.1" }
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

+1-1
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.1-rc.0
6+
image: ghcr.io/apollographql/router:v1.58.1-rc.1
77
volumes:
88
- ./supergraph.graphql:/etc/config/supergraph.graphql
99
- ./router/datadog.router.yaml:/etc/config/configuration.yaml

dockerfiles/tracing/docker-compose.jaeger.yml

+1-1
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.1-rc.0
7+
image: ghcr.io/apollographql/router:v1.58.1-rc.1
88
volumes:
99
- ./supergraph.graphql:/etc/config/supergraph.graphql
1010
- ./router/jaeger.router.yaml:/etc/config/configuration.yaml

dockerfiles/tracing/docker-compose.zipkin.yml

+1-1
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.1-rc.0
7+
image: ghcr.io/apollographql/router:v1.58.1-rc.1
88
volumes:
99
- ./supergraph.graphql:/etc/config/supergraph.graphql
1010
- ./router/zipkin.router.yaml:/etc/config/configuration.yaml

helm/chart/router/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ type: application
2020
# so it matches the shape of our release process and release automation.
2121
# By proxy of that decision, this version uses SemVer 2.0.0, though the prefix
2222
# of "v" is not included.
23-
version: 1.58.1-rc.0
23+
version: 1.58.1-rc.1
2424

2525
# This is the version number of the application being deployed. This version number should be
2626
# incremented each time you make changes to the application. Versions are not expected to
2727
# follow Semantic Versioning. They should reflect the version the application is using.
2828
# It is recommended to use it with quotes.
29-
appVersion: "v1.58.1-rc.0"
29+
appVersion: "v1.58.1-rc.1"

helm/chart/router/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[router](https://github.com/apollographql/router) Rust Graph Routing runtime for Apollo Federation
44

5-
![Version: 1.58.1-rc.0](https://img.shields.io/badge/Version-1.58.1--rc.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.58.1-rc.0](https://img.shields.io/badge/AppVersion-v1.58.1--rc.0-informational?style=flat-square)
5+
![Version: 1.58.1-rc.1](https://img.shields.io/badge/Version-1.58.1--rc.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.58.1-rc.1](https://img.shields.io/badge/AppVersion-v1.58.1--rc.1-informational?style=flat-square)
66

77
## Prerequisites
88

@@ -11,15 +11,15 @@
1111
## Get Repo Info
1212

1313
```console
14-
helm pull oci://ghcr.io/apollographql/helm-charts/router --version 1.58.1-rc.0
14+
helm pull oci://ghcr.io/apollographql/helm-charts/router --version 1.58.1-rc.1
1515
```
1616

1717
## Install Chart
1818

1919
**Important:** only helm3 is supported
2020

2121
```console
22-
helm upgrade --install [RELEASE_NAME] oci://ghcr.io/apollographql/helm-charts/router --version 1.58.1-rc.0 --values my-values.yaml
22+
helm upgrade --install [RELEASE_NAME] oci://ghcr.io/apollographql/helm-charts/router --version 1.58.1-rc.1 --values my-values.yaml
2323
```
2424

2525
_See [configuration](#configuration) below._

scripts/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ BINARY_DOWNLOAD_PREFIX="https://github.com/apollographql/router/releases/downloa
1111

1212
# Router version defined in apollo-router's Cargo.toml
1313
# Note: Change this line manually during the release steps.
14-
PACKAGE_VERSION="v1.58.1-rc.0"
14+
PACKAGE_VERSION="v1.58.1-rc.1"
1515

1616
download_binary() {
1717
downloader --check

0 commit comments

Comments
 (0)