Skip to content

Commit b08c9eb

Browse files
release: v0.8.1 (#1201)
1 parent e17009a commit b08c9eb

File tree

10 files changed

+153
-141
lines changed

10 files changed

+153
-141
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.8.1] - 2022-07-28
22+
23+
## 🐛 Fixes
24+
25+
- **Fixes superfluous output in npm installer - @EverlastingBugstopper, #1200 fixes #1197 and #1198**
26+
27+
In 0.8.0, we released a fix for our npm installer that makes it compatible with yarn workspaces by reinstalling Rover if it doesn't exist. Unfortunately, that means that steps that rely on printing to stdout contained information about the installs in those invocations. This has been fixed.
28+
29+
## 📚 Documentation
30+
31+
- **Adds documentation for the async checks feature introduced in 0.8.1 - @EverlastingBugstopper, #1193**
32+
2133
# [0.8.0] - 2022-07-27
2234

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

1717
publish = false

crates/rover-client/package-lock.json

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

docs/source/ci-cd.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
name: Install
4646
command: |
4747
# download and install Rover
48-
curl -sSL https://rover.apollo.dev/nix/v0.8.0 | sh
48+
curl -sSL https://rover.apollo.dev/nix/v0.8.1 | sh
4949
5050
# This allows the PATH changes to persist to the next `run` step
5151
echo 'export PATH=$HOME/.rover/bin:$PATH' >> $BASH_ENV
@@ -120,7 +120,7 @@ jobs:
120120
121121
- name: Install Rover
122122
run: |
123-
curl -sSL https://rover.apollo.dev/nix/v0.8.0 | sh
123+
curl -sSL https://rover.apollo.dev/nix/v0.8.1 | sh
124124
125125
# Add Rover to the $GITHUB_PATH so it can be used in another step
126126
# https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#adding-a-system-path
@@ -206,10 +206,10 @@ Normally when installing, Rover adds the path of its executable to your `$PATH`.
206206

207207
To avoid this issue, do one of the following:
208208
- Use the script, but reference `rover` by its full path (`$HOME/.rover/bin/rover`)
209-
- Download the latest release via cURL and extract the binary like so (this downloads Rover `0.8.0` for Linux x86 architectures):
209+
- Download the latest release via cURL and extract the binary like so (this downloads Rover `0.8.1` for Linux x86 architectures):
210210

211211
```
212-
curl -L https://github.com/apollographql/rover/releases/download/v0.8.0/rover-v0.8.0-x86_64-unknown-linux-gnu.tar.gz | tar --strip-components=1 -zxv
212+
curl -L https://github.com/apollographql/rover/releases/download/v0.8.1/rover-v0.8.1-x86_64-unknown-linux-gnu.tar.gz | tar --strip-components=1 -zxv
213213
```
214214

215215
#### Permission issues

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.8.0 | sh
21+
curl -sSL https://rover.apollo.dev/nix/v0.8.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.8.0' | iex
40+
iwr 'https://rover.apollo.dev/win/v0.8.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.8.0"
23+
PACKAGE_VERSION="v0.8.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.8.0'
17+
$package_version = 'v0.8.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.8.0",
3+
"version": "0.8.1",
44
"description": "The new Apollo CLI",
55
"main": "index.js",
66
"bin": {

0 commit comments

Comments
 (0)