Skip to content

Commit bf95f70

Browse files
release: v0.5.1
1 parent 1419d45 commit bf95f70

File tree

9 files changed

+26
-14
lines changed

9 files changed

+26
-14
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,18 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1818
1919
## 📚 Documentation -->
2020

21+
# [0.5.1] - 2022-04-11
22+
23+
## 🐛 Fixes
24+
25+
- **Return a hard error in CI when the ELv2 license is not accepted instead of hanging for eternity - @EverlastingBugstopper, #1082 fixes #1081**
26+
27+
If you ran `rover supergraph compose` with `federation_version: 2` in CI - it would prompt you to accept the ELv2 license and hang waiting for the input for eternity. This is no longer the case and you will get a helpful error message detailing exactly what you need to do to never see the error again. For more details on the license, see our [FAQ](https://www.apollographql.com/docs/resources/elastic-license-v2-faq/).
28+
29+
- **Removes extraneous debug statement - @EverlastingBugstopper, #1079**
30+
31+
In my rush this morning I missed the removal of an `eprintln` statement. It's gone now.
32+
2133
# [0.5.0] - 2022-04-11
2234

2335
> Important: X breaking changes below, indicated by **❗ BREAKING ❗**

Cargo.lock

+3-3
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-file = "./LICENSE"
1111
name = "rover"
1212
readme = "README.md"
1313
repository = "https://github.com/apollographql/rover/"
14-
version = "0.5.0"
14+
version = "0.5.1"
1515
default-run = "rover"
1616

1717
publish = false

README.md

+3-3
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.5.0
40+
Rover 0.5.1
4141

4242
Rover - Your Graph Companion
4343
Read the getting started guide by running:
@@ -142,7 +142,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
142142
> Note: If you're installing Rover in a CI environment, it's best to target a specific version rather than using the latest URL, since future major breaking changes could affect CI workflows otherwise.
143143
144144
```bash
145-
curl -sSL https://rover.apollo.dev/nix/v0.5.0 | sh
145+
curl -sSL https://rover.apollo.dev/nix/v0.5.1 | sh
146146
```
147147

148148
You will need `curl` installed on your system to run the above installation commands. You can get the latest version from [the curl downloads page](https://curl.se/download.html).
@@ -160,7 +160,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
160160
> Note: If you're installing Rover in a CI environment, it's best to target a specific version rather than using the latest URL, since future major breaking changes could affect CI workflows otherwise.
161161
162162
```bash
163-
iwr 'https://rover.apollo.dev/win/v0.5.0' | iex
163+
iwr 'https://rover.apollo.dev/win/v0.5.1' | iex
164164
```
165165

166166
#### npm installer

docs/source/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To install a **specific version** of Rover (recommended for CI environments to e
1818

1919
```bash
2020
# Note the `v` prefixing the version number
21-
curl -sSL https://rover.apollo.dev/nix/v0.5.0 | sh
21+
curl -sSL https://rover.apollo.dev/nix/v0.5.1 | sh
2222
```
2323

2424
If your machine doesn't have the `curl` command, you can get the latest version from the [`curl` downloads page](https://curl.se/download.html).
@@ -37,7 +37,7 @@ To install a **specific version** of Rover (recommended for CI environments to e
3737

3838
```bash
3939
# Note the `v` prefixing the version number
40-
iwr 'https://rover.apollo.dev/win/v0.5.0' | iex
40+
iwr 'https://rover.apollo.dev/win/v0.5.1' | iex
4141
```
4242

4343
### `npm` installer

installers/binstall/scripts/nix/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ BINARY_DOWNLOAD_PREFIX="https://github.com/apollographql/rover/releases/download
2020
# Rover version defined in root cargo.toml
2121
# Note: this line is built automatically
2222
# in build.rs. Don't touch it!
23-
PACKAGE_VERSION="v0.5.0"
23+
PACKAGE_VERSION="v0.5.1"
2424

2525
download_binary_and_run_installer() {
2626
downloader --check

installers/binstall/scripts/windows/install.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# version found in Rover's Cargo.toml
1515
# Note: this line is built automatically
1616
# in build.rs. Don't touch it!
17-
$package_version = 'v0.5.0'
17+
$package_version = 'v0.5.1'
1818

1919
function Install-Binary($rover_install_args) {
2020
$old_erroractionpreference = $ErrorActionPreference

installers/npm/package-lock.json

+2-2
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.5.0",
3+
"version": "0.5.1",
44
"description": "The new Apollo CLI",
55
"main": "index.js",
66
"bin": {

0 commit comments

Comments
 (0)