Skip to content

Commit

Permalink
release: v0.17.1 (#1680)
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper authored Jul 14, 2023
1 parent 1996eac commit 79d34eb
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 20 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## 📚 Documentation -->

# [0.17.0] - 2023-07-14
# [0.17.1] - 2023-07-14

> Important: 1 potentially breaking change below, indicated by **❗ BREAKING ❗**
Expand Down Expand Up @@ -46,8 +46,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

Publishing operations to a persisted query list with `rover pq publish` now shows the list name rather than the UUID when publishing. Additionally, publishing to a non-existent list now returns a better error message with a suggestion.



## 🐛 Fixes

- **IPv6 addresses are now allowed in the `--supergraph-address` option for `rover dev` - @dbanty, #1671**
Expand All @@ -58,6 +56,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

The Router's [IPv6 format](https://www.apollographql.com/docs/router/configuration/overview/#ipv6) previously caused errors when passing config to `rover dev` via `--router-config`.

# [0.17.0] - 2023-07-14

## Yanked Release

As of 2023-07-14T20:44:45 this release has been unpublished from npm and the current latest release has been pinned to v0.16.2 due to the wrong commit being tagged for this release.

# [0.16.2] - 2023-06-27

## 🐛 Fixes
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license-file = "./LICENSE"
name = "rover"
readme = "README.md"
repository = "https://github.com/apollographql/rover/"
version = "0.17.0"
version = "0.17.1"
default-run = "rover"

publish = false
Expand Down
2 changes: 1 addition & 1 deletion crates/rover-client/.schema/last_run.uuid

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion crates/rover-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"devDependencies": {
"@graphql-eslint/eslint-plugin": "3.19.1",
"eslint": "8.42.0",
"graphql": "16.6.0"
"graphql": "16.6.0",
"@graphql-tools/delegate": "7.0.6"
},
"engines": {
"node": "<19",
Expand Down
8 changes: 4 additions & 4 deletions docs/source/ci-cd.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
name: Install
command: |
# download and install Rover
curl -sSL https://rover.apollo.dev/nix/v0.17.0 | sh
curl -sSL https://rover.apollo.dev/nix/v0.17.1 | sh
# This allows the PATH changes to persist to the next `run` step
echo 'export PATH=$HOME/.rover/bin:$PATH' >> $BASH_ENV
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Install Rover
run: |
curl -sSL https://rover.apollo.dev/nix/v0.17.0 | sh
curl -sSL https://rover.apollo.dev/nix/v0.17.1 | sh
# Add Rover to the $GITHUB_PATH so it can be used in another step
# https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#adding-a-system-path
Expand Down Expand Up @@ -207,10 +207,10 @@ Normally when installing, Rover adds the path of its executable to your `$PATH`.

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

```
curl -L https://github.com/apollographql/rover/releases/download/v0.17.0/rover-v0.17.0-x86_64-unknown-linux-gnu.tar.gz | tar --strip-components=1 -zxv
curl -L https://github.com/apollographql/rover/releases/download/v0.17.1/rover-v0.17.1-x86_64-unknown-linux-gnu.tar.gz | tar --strip-components=1 -zxv
```

#### Permission issues
Expand Down
4 changes: 2 additions & 2 deletions docs/source/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To install a **specific version** of Rover (recommended for CI environments to e

```bash
# Note the `v` prefixing the version number
curl -sSL https://rover.apollo.dev/nix/v0.17.0| sh
curl -sSL https://rover.apollo.dev/nix/v0.17.1| sh
```

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).
Expand All @@ -37,7 +37,7 @@ To install a **specific version** of Rover (recommended for CI environments to e

```bash
# Note the `v` prefixing the version number
iwr 'https://rover.apollo.dev/win/v0.17.0' | iex
iwr 'https://rover.apollo.dev/win/v0.17.1' | iex
```

### `npm` installer
Expand Down
2 changes: 1 addition & 1 deletion installers/binstall/scripts/nix/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ BINARY_DOWNLOAD_PREFIX="https://github.com/apollographql/rover/releases/download
# Rover version defined in root cargo.toml
# Note: this line is built automatically
# in build.rs. Don't touch it!
PACKAGE_VERSION="v0.17.0"
PACKAGE_VERSION="v0.17.1"

download_binary_and_run_installer() {
downloader --check
Expand Down
2 changes: 1 addition & 1 deletion installers/binstall/scripts/windows/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# version found in Rover's Cargo.toml
# Note: this line is built automatically
# in build.rs. Don't touch it!
$package_version = 'v0.17.0'
$package_version = 'v0.17.1'

function Install-Binary($rover_install_args) {
$old_erroractionpreference = $ErrorActionPreference
Expand Down
4 changes: 2 additions & 2 deletions installers/npm/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion installers/npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apollo/rover",
"version": "0.17.0",
"version": "0.17.1",
"description": "The new Apollo CLI",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 79d34eb

Please sign in to comment.