Skip to content

Commit 9be5aac

Browse files
committed
prep release: v1.61.1-rc.0
1 parent ee0e723 commit 9be5aac

File tree

14 files changed

+359
-201
lines changed

14 files changed

+359
-201
lines changed

Cargo.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ dependencies = [
203203

204204
[[package]]
205205
name = "apollo-federation"
206-
version = "1.61.0"
206+
version = "1.61.1-rc.0"
207207
dependencies = [
208208
"apollo-compiler",
209209
"derive_more",
@@ -256,7 +256,7 @@ dependencies = [
256256

257257
[[package]]
258258
name = "apollo-router"
259-
version = "1.61.0"
259+
version = "1.61.1-rc.0"
260260
dependencies = [
261261
"access-json",
262262
"ahash",
@@ -421,7 +421,7 @@ dependencies = [
421421

422422
[[package]]
423423
name = "apollo-router-benchmarks"
424-
version = "1.61.0"
424+
version = "1.61.1-rc.0"
425425
dependencies = [
426426
"apollo-parser",
427427
"apollo-router",
@@ -437,7 +437,7 @@ dependencies = [
437437

438438
[[package]]
439439
name = "apollo-router-scaffold"
440-
version = "1.61.0"
440+
version = "1.61.1-rc.0"
441441
dependencies = [
442442
"anyhow",
443443
"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.61.0"
3+
version = "1.61.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.61.0"
3+
version = "1.61.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.61.0"
3+
version = "1.61.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.61.0"
25+
apollo-router = "1.61.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.61.0" }
16+
apollo-router-scaffold = { git = "https://github.com/apollographql/router.git", tag = "v1.61.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.61.0"
3+
version = "1.61.1-rc.0"
44
authors = ["Apollo Graph, Inc. <[email protected]>"]
55
repository = "https://github.com/apollographql/router/"
66
documentation = "https://docs.rs/apollo-router"
@@ -60,7 +60,7 @@ ci = []
6060
access-json = "0.1.0"
6161
anyhow = "1.0.86"
6262
apollo-compiler.workspace = true
63-
apollo-federation = { path = "../apollo-federation", version = "=1.61.0" }
63+
apollo-federation = { path = "../apollo-federation", version = "=1.61.1-rc.0" }
6464
arc-swap = "1.6.0"
6565
async-channel = "1.9.0"
6666
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.61.0
6+
image: ghcr.io/apollographql/router:v1.61.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.61.0
7+
image: ghcr.io/apollographql/router:v1.61.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.61.0
7+
image: ghcr.io/apollographql/router:v1.61.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.61.0
23+
version: 1.61.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.61.0"
29+
appVersion: "v1.61.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.61.0](https://img.shields.io/badge/Version-1.61.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.61.0](https://img.shields.io/badge/AppVersion-v1.61.0-informational?style=flat-square)
5+
![Version: 1.61.1-rc.0](https://img.shields.io/badge/Version-1.61.1--rc.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.61.1-rc.0](https://img.shields.io/badge/AppVersion-v1.61.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.61.0
14+
helm pull oci://ghcr.io/apollographql/helm-charts/router --version 1.61.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.61.0 --values my-values.yaml
22+
helm upgrade --install [RELEASE_NAME] oci://ghcr.io/apollographql/helm-charts/router --version 1.61.1-rc.0 --values my-values.yaml
2323
```
2424

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

101101
----------------------------------------------
102-
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)
102+
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)

0 commit comments

Comments
 (0)