Skip to content

Commit 9d2e4f2

Browse files
committed
prep release: v2.1.0-rc.1
1 parent f43a843 commit 9d2e4f2

File tree

10 files changed

+296
-217
lines changed

10 files changed

+296
-217
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.1.0-rc.0"
194+
version = "2.1.0-rc.1"
195195
dependencies = [
196196
"apollo-compiler",
197197
"apollo-federation",
@@ -254,7 +254,7 @@ dependencies = [
254254

255255
[[package]]
256256
name = "apollo-router"
257-
version = "2.1.0-rc.0"
257+
version = "2.1.0-rc.1"
258258
dependencies = [
259259
"ahash",
260260
"anyhow",
@@ -424,7 +424,7 @@ dependencies = [
424424

425425
[[package]]
426426
name = "apollo-router-benchmarks"
427-
version = "2.1.0-rc.0"
427+
version = "2.1.0-rc.1"
428428
dependencies = [
429429
"apollo-parser",
430430
"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.1.0-rc.0"
3+
version = "2.1.0-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.1.0-rc.0"
3+
version = "2.1.0-rc.1"
44
authors = ["Apollo Graph, Inc. <[email protected]>"]
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.1.0-rc.0"
3+
version = "2.1.0-rc.1"
44
authors = ["Apollo Graph, Inc. <[email protected]>"]
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.1.0-rc.0" }
61+
apollo-federation = { path = "../apollo-federation", version = "=2.1.0-rc.1" }
6262
async-channel = "1.9.0"
6363
async-compression = { version = "0.4.6", features = [
6464
"tokio",

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.1.0-rc.0
5+
image: ghcr.io/apollographql/router:v2.1.0-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.1.0-rc.0
6+
image: ghcr.io/apollographql/router:v2.1.0-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.1.0-rc.0
23+
version: 2.1.0-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.1.0-rc.0"
29+
appVersion: "v2.1.0-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.1.0-rc.0](https://img.shields.io/badge/Version-2.1.0--rc.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.1.0-rc.0](https://img.shields.io/badge/AppVersion-v2.1.0--rc.0-informational?style=flat-square)
5+
![Version: 2.1.0-rc.1](https://img.shields.io/badge/Version-2.1.0--rc.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.1.0-rc.1](https://img.shields.io/badge/AppVersion-v2.1.0--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.1.0-rc.0
14+
helm pull oci://ghcr.io/apollographql/helm-charts/router --version 2.1.0-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.1.0-rc.0 --values my-values.yaml
22+
helm upgrade --install [RELEASE_NAME] oci://ghcr.io/apollographql/helm-charts/router --version 2.1.0-rc.1 --values my-values.yaml
2323
```
2424

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

licenses.html

Lines changed: 281 additions & 202 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.1.0-rc.0"
14+
PACKAGE_VERSION="v2.1.0-rc.1"
1515

1616
download_binary() {
1717
downloader --check

0 commit comments

Comments
 (0)