Skip to content

Commit 7543d59

Browse files
committed
prep release: v1.59.1-rc.0
1 parent aaa0d90 commit 7543d59

File tree

13 files changed

+21
-21
lines changed

13 files changed

+21
-21
lines changed

Cargo.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ dependencies = [
204204

205205
[[package]]
206206
name = "apollo-federation"
207-
version = "1.59.0"
207+
version = "1.59.1-rc.0"
208208
dependencies = [
209209
"apollo-compiler",
210210
"derive_more",
@@ -257,7 +257,7 @@ dependencies = [
257257

258258
[[package]]
259259
name = "apollo-router"
260-
version = "1.59.0"
260+
version = "1.59.1-rc.0"
261261
dependencies = [
262262
"access-json",
263263
"ahash",
@@ -427,7 +427,7 @@ dependencies = [
427427

428428
[[package]]
429429
name = "apollo-router-benchmarks"
430-
version = "1.59.0"
430+
version = "1.59.1-rc.0"
431431
dependencies = [
432432
"apollo-parser",
433433
"apollo-router",
@@ -443,7 +443,7 @@ dependencies = [
443443

444444
[[package]]
445445
name = "apollo-router-scaffold"
446-
version = "1.59.0"
446+
version = "1.59.1-rc.0"
447447
dependencies = [
448448
"anyhow",
449449
"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.59.0"
3+
version = "1.59.1-rc.0"
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.59.0"
3+
version = "1.59.1-rc.0"
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.59.0"
3+
version = "1.59.1-rc.0"
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.59.0"
25+
apollo-router = "1.59.1-rc.0"
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.59.0" }
16+
apollo-router-scaffold = { git = "https://github.com/apollographql/router.git", tag = "v1.59.1-rc.0" }
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.59.0"
3+
version = "1.59.1-rc.0"
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.59.0" }
69+
apollo-federation = { path = "../apollo-federation", version = "=1.59.1-rc.0" }
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.59.0
6+
image: ghcr.io/apollographql/router:v1.59.1-rc.0
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.59.0
7+
image: ghcr.io/apollographql/router:v1.59.1-rc.0
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.59.0
7+
image: ghcr.io/apollographql/router:v1.59.1-rc.0
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.59.0
23+
version: 1.59.1-rc.0
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.59.0"
29+
appVersion: "v1.59.1-rc.0"

helm/chart/router/README.md

+4-4
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.59.0](https://img.shields.io/badge/Version-1.59.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.59.0](https://img.shields.io/badge/AppVersion-v1.59.0-informational?style=flat-square)
5+
![Version: 1.59.1-rc.0](https://img.shields.io/badge/Version-1.59.1--rc.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.59.1-rc.0](https://img.shields.io/badge/AppVersion-v1.59.1--rc.0-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.59.0
14+
helm pull oci://ghcr.io/apollographql/helm-charts/router --version 1.59.1-rc.0
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.59.0 --values my-values.yaml
22+
helm upgrade --install [RELEASE_NAME] oci://ghcr.io/apollographql/helm-charts/router --version 1.59.1-rc.0 --values my-values.yaml
2323
```
2424

2525
_See [configuration](#configuration) below._
@@ -98,4 +98,4 @@ helm show values oci://ghcr.io/apollographql/helm-charts/router
9898
| virtualservice.enabled | bool | `false` | |
9999

100100
----------------------------------------------
101-
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)
101+
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)

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.59.0"
14+
PACKAGE_VERSION="v1.59.1-rc.0"
1515

1616
download_binary() {
1717
downloader --check

0 commit comments

Comments
 (0)