Skip to content

Commit 19e1e43

Browse files
committed
prep release: v2.2.1-rc.1
1 parent f17f8ee commit 19e1e43

File tree

10 files changed

+1284
-2772
lines changed

10 files changed

+1284
-2772
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ dependencies = [
191191

192192
[[package]]
193193
name = "apollo-federation"
194-
version = "2.2.1-rc.0"
194+
version = "2.2.1-rc.1"
195195
dependencies = [
196196
"apollo-compiler",
197197
"apollo-federation",
@@ -256,7 +256,7 @@ dependencies = [
256256

257257
[[package]]
258258
name = "apollo-router"
259-
version = "2.2.1-rc.0"
259+
version = "2.2.1-rc.1"
260260
dependencies = [
261261
"ahash",
262262
"anyhow",
@@ -428,7 +428,7 @@ dependencies = [
428428

429429
[[package]]
430430
name = "apollo-router-benchmarks"
431-
version = "2.2.1-rc.0"
431+
version = "2.2.1-rc.1"
432432
dependencies = [
433433
"apollo-parser",
434434
"apollo-router",

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 = "2.2.1-rc.0"
3+
version = "2.2.1-rc.1"
44
authors = ["The Apollo GraphQL Contributors"]
55
edition = "2024"
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 = "2.2.1-rc.0"
3+
version = "2.2.1-rc.1"
44
authors = ["Apollo Graph, Inc. <packages@apollographql.com>"]
55
edition = "2021"
66
license = "Elastic-2.0"

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 = "2.2.1-rc.0"
3+
version = "2.2.1-rc.1"
44
authors = ["Apollo Graph, Inc. <packages@apollographql.com>"]
55
repository = "https://github.com/apollographql/router/"
66
documentation = "https://docs.rs/apollo-router"
@@ -58,7 +58,7 @@ snapshot = ["axum-server", "serde_regex"]
5858
[dependencies]
5959
anyhow = "1.0.86"
6060
apollo-compiler.workspace = true
61-
apollo-federation = { path = "../apollo-federation", version = "=2.2.1-rc.0" }
61+
apollo-federation = { path = "../apollo-federation", version = "=2.2.1-rc.1" }
6262
async-compression = { version = "0.4.6", features = [
6363
"tokio",
6464
"brotli",

dockerfiles/tracing/docker-compose.datadog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.9"
22
services:
33
apollo-router:
44
container_name: apollo-router
5-
image: ghcr.io/apollographql/router:v2.2.1-rc.0
5+
image: ghcr.io/apollographql/router:v2.2.1-rc.1
66
volumes:
77
- ./supergraph.graphql:/etc/config/supergraph.graphql
88
- ./router/datadog.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
@@ -3,7 +3,7 @@ services:
33
apollo-router:
44
container_name: apollo-router
55
build: ./router
6-
image: ghcr.io/apollographql/router:v2.2.1-rc.0
6+
image: ghcr.io/apollographql/router:v2.2.1-rc.1
77
volumes:
88
- ./supergraph.graphql:/etc/config/supergraph.graphql
99
- ./router/zipkin.router.yaml:/etc/config/configuration.yaml

helm/chart/router/Chart.yaml

Lines changed: 2 additions & 2 deletions
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: 2.2.1-rc.0
23+
version: 2.2.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: "v2.2.1-rc.0"
29+
appVersion: "v2.2.1-rc.1"

helm/chart/router/README.md

Lines changed: 3 additions & 3 deletions
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: 2.2.1-rc.0](https://img.shields.io/badge/Version-2.2.1--rc.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.2.1-rc.0](https://img.shields.io/badge/AppVersion-v2.2.1--rc.0-informational?style=flat-square)
5+
![Version: 2.2.1-rc.1](https://img.shields.io/badge/Version-2.2.1--rc.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.2.1-rc.1](https://img.shields.io/badge/AppVersion-v2.2.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 2.2.1-rc.0
14+
helm pull oci://ghcr.io/apollographql/helm-charts/router --version 2.2.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 2.2.1-rc.0 --values my-values.yaml
22+
helm upgrade --install [RELEASE_NAME] oci://ghcr.io/apollographql/helm-charts/router --version 2.2.1-rc.1 --values my-values.yaml
2323
```
2424

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

licenses.html

Lines changed: 1269 additions & 2757 deletions
Large diffs are not rendered by default.

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ BINARY_DOWNLOAD_PREFIX="${APOLLO_ROUTER_BINARY_DOWNLOAD_PREFIX:="https://github.
1111

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

1616
download_binary() {
1717
downloader --check

0 commit comments

Comments
 (0)