Skip to content

Commit 16eed65

Browse files
committed
prep release: v1.58.0-rc.3
1 parent f080e3c commit 16eed65

File tree

14 files changed

+21
-24
lines changed

14 files changed

+21
-24
lines changed

Cargo.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ dependencies = [
178178

179179
[[package]]
180180
name = "apollo-federation"
181-
version = "1.58.0-rc.2"
181+
version = "1.58.0-rc.3"
182182
dependencies = [
183183
"apollo-compiler",
184184
"derive_more",
@@ -231,7 +231,7 @@ dependencies = [
231231

232232
[[package]]
233233
name = "apollo-router"
234-
version = "1.58.0-rc.2"
234+
version = "1.58.0-rc.3"
235235
dependencies = [
236236
"access-json",
237237
"ahash",
@@ -399,7 +399,7 @@ dependencies = [
399399

400400
[[package]]
401401
name = "apollo-router-benchmarks"
402-
version = "1.58.0-rc.2"
402+
version = "1.58.0-rc.3"
403403
dependencies = [
404404
"apollo-parser",
405405
"apollo-router",
@@ -415,7 +415,7 @@ dependencies = [
415415

416416
[[package]]
417417
name = "apollo-router-scaffold"
418-
version = "1.58.0-rc.2"
418+
version = "1.58.0-rc.3"
419419
dependencies = [
420420
"anyhow",
421421
"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.58.0-rc.2"
3+
version = "1.58.0-rc.3"
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.58.0-rc.2"
3+
version = "1.58.0-rc.3"
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.58.0-rc.2"
3+
version = "1.58.0-rc.3"
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.58.0-rc.2"
25+
apollo-router = "1.58.0-rc.3"
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.58.0-rc.2" }
16+
apollo-router-scaffold = { git = "https://github.com/apollographql/router.git", tag = "v1.58.0-rc.3" }
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.58.0-rc.2"
3+
version = "1.58.0-rc.3"
44
authors = ["Apollo Graph, Inc. <[email protected]>"]
55
repository = "https://github.com/apollographql/router/"
66
documentation = "https://docs.rs/apollo-router"
@@ -66,7 +66,7 @@ features = ["docs_rs"]
6666
access-json = "0.1.0"
6767
anyhow = "1.0.86"
6868
apollo-compiler.workspace = true
69-
apollo-federation = { path = "../apollo-federation", version = "=1.58.0-rc.2" }
69+
apollo-federation = { path = "../apollo-federation", version = "=1.58.0-rc.3" }
7070
arc-swap = "1.6.0"
7171
async-channel = "1.9.0"
7272
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.58.0-rc.2
6+
image: ghcr.io/apollographql/router:v1.58.0-rc.3
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.58.0-rc.2
7+
image: ghcr.io/apollographql/router:v1.58.0-rc.3
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.58.0-rc.2
7+
image: ghcr.io/apollographql/router:v1.58.0-rc.3
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.58.0-rc.2
23+
version: 1.58.0-rc.3
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.58.0-rc.2"
29+
appVersion: "v1.58.0-rc.3"

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

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

licenses.html

+1-4
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ <h2>Overview of licenses:</h2>
4848
<li><a href="#MIT">MIT License</a> (154)</li>
4949
<li><a href="#BSD-3-Clause">BSD 3-Clause &quot;New&quot; or &quot;Revised&quot; License</a> (11)</li>
5050
<li><a href="#ISC">ISC License</a> (8)</li>
51-
<li><a href="#Elastic-2.0">Elastic License 2.0</a> (6)</li>
5251
<li><a href="#MPL-2.0">Mozilla Public License 2.0</a> (5)</li>
5352
<li><a href="#BSD-2-Clause">BSD 2-Clause &quot;Simplified&quot; License</a> (4)</li>
53+
<li><a href="#Elastic-2.0">Elastic License 2.0</a> (3)</li>
5454
<li><a href="#CC0-1.0">Creative Commons Zero v1.0 Universal</a> (2)</li>
5555
<li><a href="#OpenSSL">OpenSSL License</a> (1)</li>
5656
<li><a href="#Unicode-DFS-2016">Unicode License Agreement - Data Files and Software (2016)</a> (1)</li>
@@ -12694,9 +12694,6 @@ <h3 id="Elastic-2.0">Elastic License 2.0</h3>
1269412694
<h4>Used by:</h4>
1269512695
<ul class="license-used-by">
1269612696
<li><a href=" https://github.com/apollographql/federation/ ">router-bridge</a></li>
12697-
<li><a href=" https://github.com/apollographql/federation/ ">router-bridge</a></li>
12698-
<li><a href=" https://github.com/apollographql/federation/ ">router-bridge</a></li>
12699-
<li><a href=" https://github.com/apollographql/federation/ ">router-bridge</a></li>
1270012697
</ul>
1270112698
<pre class="license-text">Copyright 2021 Apollo Graph, Inc.
1270212699

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="v1.58.0-rc.2"
14+
PACKAGE_VERSION="v1.58.0-rc.3"
1515

1616
download_binary() {
1717
downloader --check

0 commit comments

Comments
 (0)