Skip to content

Commit

Permalink
release: v0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper committed Jun 29, 2021
1 parent f787ef2 commit 1632c35
Show file tree
Hide file tree
Showing 9 changed files with 88 additions and 20 deletions.
68 changes: 68 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,74 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## 🛠 Maintenance
## 📚 Documentation -->

# [0.1.7] 2021-06-22

## 🚀 Features

- **Auto-decode gzipped responses - [EverlastingBugstopper], [issue/608] [pull/620]**

If your GraphQL server responds with a gzipped introspection response, it will now be decoded automatically instead of failing the command.

[EverlastingBugstopper]: https://github.com/EverlastingBugstopper
[pull/620]: https://github.com/apollographql/rover/pull/620
[issue/608]: https://github.com/apollographql/rover/issues/608

## 🐛 Fixes

- **Prevent update checker from aborting commands - [EverlastingBugstopper], [pull/624]**

Previously, if there was a spurious network error when attempting to check for a newer version of Rover, the command would fail. This is no longer the case, if GitHub is down, you will still be able to run Rover commands.

[EverlastingBugstopper]: https://github.com/EverlastingBugstopper
[pull/624]: https://github.com/apollographql/rover/pull/624

## 🛠 Maintenance

- **Address Clippy 0.1.53 warnings - [EverlastingBugstopper], [pull/621]**

Updated Rover's code to conform to the latest lints.

[EverlastingBugstopper]: https://github.com/EverlastingBugstopper
[pull/621]: https://github.com/apollographql/rover/pull/621

- **New `cargo xtask` command suite - [EverlastingBugstopper], [issue/388] [pull/562]**

We've replaced a decent chunk of bash scripting in GitHub actions with Rust code. This means you can locally run most commands you need for contributing to Rover with `cargo xtask`.

[EverlastingBugstopper]: https://github.com/EverlastingBugstopper
[pull/562]: https://github.com/apollographql/rover/pull/562
[issue/388]: https://github.com/apollographql/rover/issues/388

- **Additional integration tests - [EverlastingBugstopper], [issue/Issue #] [pull/629]**

We've set up some integration tests that run `make ci` after cloning the [supergraph-demo].

[EverlastingBugstopper]: https://github.com/EverlastingBugstopper
[pull/629]: https://github.com/apollographql/rover/pull/629
[supergraph-demo]: https://github.com/apollographql/supergraph-demo

## 📚 Documentation

- **Extend contribution guide and create an architecture document - [EverlastingBugstopper], [JakeDawkins] & [StephenBarlow], [issue/561] [pull/594]**

Our new architecture document includes a guide on how to add a new command to Rover, and the `CONTRIBUTING.md` file at the root of the Rover repository is automatically included on our documentation site.

[EverlastingBugstopper]: https://github.com/EverlastingBugstopper
[StephenBarlow]: https://github.com/StephenBarlow
[JakeDawkins]: https://github.com/JakeDawkins
[pull/594]: https://github.com/apollographql/rover/pull/594
[issue/561]: https://github.com/apollographql/rover/issues/561

- **Use rover@latest in BitBucket documentation - [setchy], [pull/617]**

[setchy]: https://github.com/setchy
[pull/617]: https://github.com/apollographql/rover/pull/617

- **Small clarifications/tweaks - [StephenBarlow], [pull/619]**

[StephenBarlow]: https://github.com/StephenBarlow
[pull/619]: https://github.com/apollographql/rover/pull/619

# [0.1.6] 2021-06-08

## 🐛 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 = "MIT"
name = "rover"
readme = "README.md"
repository = "https://github.com/apollographql/rover/"
version = "0.1.6"
version = "0.1.7"
resolver = "2"

[[bin]]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats
## Command-line options

```console
Rover 0.1.6
Rover 0.1.7

Rover - Your Graph Companion
Read the getting started guide by running:
Expand Down Expand Up @@ -118,7 +118,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
> 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.
```bash
curl -sSL https://rover.apollo.dev/nix/v0.1.1 | sh
curl -sSL https://rover.apollo.dev/nix/v0.1.7 | sh
```

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).
Expand All @@ -136,7 +136,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
> 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.
```bash
iwr 'https://rover.apollo.dev/win/v0.1.1' | iex
iwr 'https://rover.apollo.dev/win/v0.1.7' | iex
```

#### npm installer
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 @@ -20,7 +20,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
> 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.
```bash
curl -sSL https://rover.apollo.dev/nix/v0.1.5 | sh
curl -sSL https://rover.apollo.dev/nix/v0.1.7 | sh
```

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).
Expand All @@ -38,7 +38,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
> 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.
```bash
iwr 'https://rover.apollo.dev/win/v0.1.5' | iex
iwr 'https://rover.apollo.dev/win/v0.1.7' | 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 @@ -16,7 +16,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.1.6"
PACKAGE_VERSION="v0.1.7"

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 @@ -9,7 +9,7 @@
# version found in Rover's Cargo.toml
# Note: this line is built automatically
# in build.rs. Don't touch it!
$package_version = 'v0.1.6'
$package_version = 'v0.1.7'

function Install-Binary() {
$old_erroractionpreference = $ErrorActionPreference
Expand Down
16 changes: 8 additions & 8 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.1.6",
"version": "0.1.7",
"description": "The new Apollo CLI",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 1632c35

Please sign in to comment.