Skip to content

Commit a29572e

Browse files
release: v0.10.0
1 parent 27e2772 commit a29572e

File tree

9 files changed

+42
-18
lines changed

9 files changed

+42
-18
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,30 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1212
## 🛠 Maintenance
1313
## 📚 Documentation -->
1414

15+
# [0.1.10] - 2021-08-05
16+
17+
## 🐛 Fixes
18+
19+
- **Update GraphQL types to match new API Schema - [EverlastingBugstopper], [issue/696] [pull/697]**
20+
21+
The Apollo Studio API introduced a change that made a field in the `subgraph publish` mutation nullable. This caused our codegen to fail and users started getting some cryptic error messages for failed publishes in older versions of Rover.
22+
23+
This release handles these cases better and also introduces local tooling for building old versions of Rover with the API schemas that were in production at the time that version was published with `cargo xtask dist --release vx.x.x`.
24+
25+
[EverlastingBugstopper]: https://github.com/EverlastingBugstopper
26+
[pull/697]: https://github.com/apollographql/rover/pull/697
27+
[issue/696]: https://github.com/apollographql/rover/issues/696
28+
29+
## 📚 Documentation
30+
31+
- **Fix broken link to supergraph schemas - [abernix], [issue/687] [pull/706]**
32+
33+
There was a broken link in our docs that now points to a set of definitions of supergraphs and subgraphs that lives in the docs for Federation.
34+
35+
[abernix]: https://github.com/abernix
36+
[pull/706]: https://github.com/apollographql/rover/pull/706
37+
[issue/687]: https://github.com/apollographql/rover/issues/687
38+
1539
# [0.2.0-beta.0] - 2021-07-26
1640

1741
## 🚀 Features

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT"
1111
name = "rover"
1212
readme = "README.md"
1313
repository = "https://github.com/apollographql/rover/"
14-
version = "0.2.0-beta.0"
14+
version = "0.10.0"
1515
resolver = "2"
1616

1717
[[bin]]

README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats
3737
## Command-line options
3838

3939
```console
40-
Rover 0.2.0-beta.0
40+
Rover 0.10.0
4141

4242
Rover - Your Graph Companion
4343
Read the getting started guide by running:
@@ -70,10 +70,8 @@ FLAGS:
7070
-V, --version Prints version information
7171

7272
OPTIONS:
73-
-l, --log <log-level> Specify Rover's log level [possible values: error, warn, info,
74-
debug, trace]
75-
--output <output-type> Specify Rover's output type [default: plain] [possible values: json,
76-
plain]
73+
-l, --log <log-level> Specify Rover's log level [possible values: error, warn, info,
74+
debug, trace]
7775

7876
SUBCOMMANDS:
7977
config Configuration profile commands

docs/source/errors.md

+2
Original file line numberDiff line numberDiff line change
@@ -232,3 +232,5 @@ To resolve this error, inspect the printed errors and correct the subgraph schem
232232
This error occurs when Rover could not connect to an HTTP endpoint.
233233

234234
If you encountered this error while running introspection, you'll want to make sure that you typed the endpoint correctly, your Internet connection is stable, and that your server is responding to requests. You may wish to run the command again with `--log=debug`.
235+
236+

installers/binstall/scripts/nix/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ BINARY_DOWNLOAD_PREFIX="https://github.com/apollographql/rover/releases/download
1616
# Rover version defined in root cargo.toml
1717
# Note: this line is built automatically
1818
# in build.rs. Don't touch it!
19-
PACKAGE_VERSION="v0.2.0-beta.0"
19+
PACKAGE_VERSION="v0.10.0"
2020

2121
download_binary_and_run_installer() {
2222
downloader --check

installers/binstall/scripts/windows/install.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# version found in Rover's Cargo.toml
1010
# Note: this line is built automatically
1111
# in build.rs. Don't touch it!
12-
$package_version = 'v0.2.0-beta.0'
12+
$package_version = 'v0.10.0'
1313

1414
function Install-Binary() {
1515
$old_erroractionpreference = $ErrorActionPreference

installers/npm/package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

installers/npm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/rover",
3-
"version": "0.2.0-beta.0",
3+
"version": "0.10.0",
44
"description": "The new Apollo CLI",
55
"main": "index.js",
66
"bin": {

0 commit comments

Comments
 (0)