Skip to content

Commit fd978f6

Browse files
committed
prep release: v2.2.0-preview.0
1 parent baa528c commit fd978f6

File tree

10 files changed

+1128
-732
lines changed

10 files changed

+1128
-732
lines changed

Cargo.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ dependencies = [
191191

192192
[[package]]
193193
name = "apollo-federation"
194-
version = "2.0.0"
194+
version = "2.2.0-preview.0"
195195
dependencies = [
196196
"apollo-compiler",
197197
"apollo-federation",
@@ -254,7 +254,7 @@ dependencies = [
254254

255255
[[package]]
256256
name = "apollo-router"
257-
version = "2.0.0"
257+
version = "2.2.0-preview.0"
258258
dependencies = [
259259
"ahash",
260260
"anyhow",
@@ -423,7 +423,7 @@ dependencies = [
423423

424424
[[package]]
425425
name = "apollo-router-benchmarks"
426-
version = "2.0.0"
426+
version = "2.2.0-preview.0"
427427
dependencies = [
428428
"apollo-parser",
429429
"apollo-router",

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 = "2.0.0"
3+
version = "2.2.0-preview.0"
44
authors = ["The Apollo GraphQL Contributors"]
55
edition = "2024"
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 = "2.0.0"
3+
version = "2.2.0-preview.0"
44
authors = ["Apollo Graph, Inc. <[email protected]>"]
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"
3+
version = "2.2.0-preview.0"
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.0.0" }
61+
apollo-federation = { path = "../apollo-federation", version = "=2.2.0-preview.0" }
6262
async-compression = { version = "0.4.6", features = [
6363
"tokio",
6464
"brotli",

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
5+
image: ghcr.io/apollographql/router:v2.2.0-preview.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
6+
image: ghcr.io/apollographql/router:v2.2.0-preview.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
23+
version: 2.2.0-preview.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"
29+
appVersion: "v2.2.0-preview.0"

helm/chart/router/README.md

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

2525
_See [configuration](#configuration) below._
@@ -85,6 +85,7 @@ helm show values oci://ghcr.io/apollographql/helm-charts/router
8585
| securityContext | object | `{}` | |
8686
| service.annotations | object | `{}` | |
8787
| service.port | int | `80` | |
88+
| service.targetport | string | `"http"` | |
8889
| service.type | string | `"ClusterIP"` | |
8990
| serviceAccount.annotations | object | `{}` | |
9091
| serviceAccount.create | bool | `true` | |

0 commit comments

Comments
 (0)