Skip to content

Commit fe1ee96

Browse files
committed
prep release: v2.0.0-rc.0
1 parent b301248 commit fe1ee96

File tree

10 files changed

+18
-22
lines changed

10 files changed

+18
-22
lines changed

Cargo.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ dependencies = [
192192

193193
[[package]]
194194
name = "apollo-federation"
195-
version = "2.0.0-preview.6"
195+
version = "2.0.0-rc.0"
196196
dependencies = [
197197
"apollo-compiler",
198198
"derive_more",
@@ -254,7 +254,7 @@ dependencies = [
254254

255255
[[package]]
256256
name = "apollo-router"
257-
version = "2.0.0-preview.6"
257+
version = "2.0.0-rc.0"
258258
dependencies = [
259259
"ahash",
260260
"anyhow",
@@ -425,7 +425,7 @@ dependencies = [
425425

426426
[[package]]
427427
name = "apollo-router-benchmarks"
428-
version = "2.0.0-preview.6"
428+
version = "2.0.0-rc.0"
429429
dependencies = [
430430
"apollo-parser",
431431
"apollo-router",

apollo-federation/Cargo.toml

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

6262
[[test]]
6363
name = "isolated_connectors_validation"
64-
path = "tests/connectors/validation.rs"
64+
path = "tests/connectors/validation.rs"

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 = "2.0.0-preview.6"
3+
version = "2.0.0-rc.0"
44
authors = ["Apollo Graph, Inc. <packages@apollographql.com>"]
55
edition = "2021"
66
license = "Elastic-2.0"

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 = "2.0.0-preview.6"
3+
version = "2.0.0-rc.0"
44
authors = ["Apollo Graph, Inc. <packages@apollographql.com>"]
55
repository = "https://github.com/apollographql/router/"
66
documentation = "https://docs.rs/apollo-router"
@@ -62,7 +62,7 @@ features = ["docs_rs"]
6262
arc-swap = "1.6.0"
6363
anyhow = "1.0.86"
6464
apollo-compiler.workspace = true
65-
apollo-federation = { path = "../apollo-federation", version = "=2.0.0-preview.6" }
65+
apollo-federation = { path = "../apollo-federation", version = "=2.0.0-rc.0" }
6666
async-channel = "1.9.0"
6767
async-compression = { version = "0.4.6", features = [
6868
"tokio",

dockerfiles/tracing/docker-compose.datadog.yml

+1-1
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.0.0-preview.6
5+
image: ghcr.io/apollographql/router:v2.0.0-rc.0
66
volumes:
77
- ./supergraph.graphql:/etc/config/supergraph.graphql
88
- ./router/datadog.router.yaml:/etc/config/configuration.yaml

dockerfiles/tracing/docker-compose.zipkin.yml

+1-1
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.0.0-preview.6
6+
image: ghcr.io/apollographql/router:v2.0.0-rc.0
77
volumes:
88
- ./supergraph.graphql:/etc/config/supergraph.graphql
99
- ./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: 2.0.0-preview.6
23+
version: 2.0.0-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: "v2.0.0-preview.6"
29+
appVersion: "v2.0.0-rc.0"

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

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

licenses.html

+2-6
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h1>Third Party Licenses</h1>
4444

4545
<h2>Overview of licenses:</h2>
4646
<ul class="licenses-overview">
47-
<li><a href="#Apache-2.0">Apache License 2.0</a> (458)</li>
47+
<li><a href="#Apache-2.0">Apache License 2.0</a> (454)</li>
4848
<li><a href="#MIT">MIT License</a> (154)</li>
4949
<li><a href="#Unicode-3.0">Unicode License v3</a> (20)</li>
5050
<li><a href="#BSD-3-Clause">BSD 3-Clause &quot;New&quot; or &quot;Revised&quot; License</a> (12)</li>
@@ -5353,6 +5353,7 @@ <h3 id="Apache-2.0">Apache License 2.0</h3>
53535353
<h4>Used by:</h4>
53545354
<ul class="license-used-by">
53555355
<li><a href=" https://github.com/dtolnay/anyhow ">anyhow</a></li>
5356+
<li><a href=" https://github.com/dtolnay/async-trait ">async-trait</a></li>
53565357
<li><a href=" https://github.com/dtolnay/basic-toml ">basic-toml</a></li>
53575358
<li><a href=" https://github.com/dtolnay/dyn-clone ">dyn-clone</a></li>
53585359
<li><a href=" https://github.com/dtolnay/erased-serde ">erased-serde</a></li>
@@ -8153,7 +8154,6 @@ <h4>Used by:</h4>
81538154
<li><a href=" https://github.com/rustls/hyper-rustls ">hyper-rustls</a></li>
81548155
<li><a href=" https://github.com/hjr3/hyper-timeout ">hyper-timeout</a></li>
81558156
<li><a href=" https://github.com/servo/rust-url/ ">idna</a></li>
8156-
<li><a href=" https://github.com/servo/rust-url/ ">idna</a></li>
81578157
<li><a href=" https://github.com/hsivonen/idna_adapter ">idna_adapter</a></li>
81588158
<li><a href=" https://github.com/bluss/indexmap ">indexmap</a></li>
81598159
<li><a href=" https://github.com/indexmap-rs/indexmap ">indexmap</a></li>
@@ -8248,8 +8248,6 @@ <h4>Used by:</h4>
82488248
<li><a href=" https://github.com/dtolnay/typetag ">typetag</a></li>
82498249
<li><a href=" https://github.com/BurntSushi/ucd-generate ">ucd-trie</a></li>
82508250
<li><a href=" https://github.com/seanmonstar/unicase ">unicase</a></li>
8251-
<li><a href=" https://github.com/servo/unicode-bidi ">unicode-bidi</a></li>
8252-
<li><a href=" https://github.com/unicode-rs/unicode-normalization ">unicode-normalization</a></li>
82538251
<li><a href=" https://github.com/unicode-rs/unicode-width ">unicode-width</a></li>
82548252
<li><a href=" https://github.com/servo/rust-url ">url</a></li>
82558253
<li><a href=" https://github.com/uuid-rs/uuid ">uuid</a></li>
@@ -11195,7 +11193,6 @@ <h4>Used by:</h4>
1119511193
<li><a href=" https://github.com/async-graphql/async-graphql ">async-graphql-derive</a></li>
1119611194
<li><a href=" https://github.com/async-graphql/async-graphql ">async-graphql-parser</a></li>
1119711195
<li><a href=" https://github.com/async-graphql/async-graphql ">async-graphql-value</a></li>
11198-
<li><a href=" https://github.com/dtolnay/async-trait ">async-trait</a></li>
1119911196
<li><a href=" https://github.com/smithy-lang/smithy-rs ">aws-runtime</a></li>
1120011197
<li><a href=" https://github.com/chronotope/chrono ">chrono</a></li>
1120111198
<li><a href=" https://gitlab.com/kornelski/dunce ">dunce</a></li>
@@ -11383,7 +11380,6 @@ <h4>Used by:</h4>
1138311380
<h3 id="Apache-2.0">Apache License 2.0</h3>
1138411381
<h4>Used by:</h4>
1138511382
<ul class="license-used-by">
11386-
<li><a href=" https://github.com/unicode-rs/unicode-normalization ">unicode-normalization</a></li>
1138711383
<li><a href=" https://github.com/unicode-rs/unicode-width ">unicode-width</a></li>
1138811384
</ul>
1138911385
<pre class="license-text">Licensed under the Apache License, Version 2.0

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="v2.0.0-preview.6"
14+
PACKAGE_VERSION="v2.0.0-rc.0"
1515

1616
download_binary() {
1717
downloader --check

0 commit comments

Comments
 (0)