From 8928854e29748a5a526d5e15020d073413f8318b Mon Sep 17 00:00:00 2001 From: Avery Harnish Date: Wed, 7 Jul 2021 14:26:38 -0500 Subject: [PATCH] release: v0.1.8 --- CHANGELOG.md | 42 +++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 6 +-- docs/source/getting-started.md | 4 +- installers/binstall/scripts/nix/install.sh | 2 +- .../binstall/scripts/windows/install.ps1 | 2 +- installers/npm/package-lock.json | 4 +- installers/npm/package.json | 2 +- 9 files changed, 54 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5873b1390..1b85fc954 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,48 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## 🛠 Maintenance ## 📚 Documentation --> +# [0.1.8] 2021-07-07 + +## 🚀 Features + +- **Adds _preview_ support for `@tag` and `@inaccessible` directives - [EverlastingBugstopper], [pull/631]** + + **Preview** support for composing subgraphs with `@tag` and/or `@inaccessible` core features using `rover supergraph compose`. Note that `@apollo/gateway >= 0.33` is required when using **preview** support for these core features. + + [EverlastingBugstopper]: https://github.com/EverlastingBugstopper + [pull/631]: https://github.com/apollographql/rover/pull/631 + +- **Auto-decode gzipped responses - [EverlastingBugstopper], [pull/650]** + + If your GraphQL server responds with an introspection response compressed with brotli, it will now be decoded automatically instead of failing the command. + + [EverlastingBugstopper]: https://github.com/EverlastingBugstopper + [pull/650]: https://github.com/apollographql/rover/pull/650 + +## 🐛 Fixes + +- **Use built-in root certificates and re-use HTTP connection pool - [EverlastingBugstopper], [issue/645] [pull/649]** + + Rover now uses local CA Certificates along with your operating system's native TLS implementation instead of the Rust-based WebPKI implementation. + + [EverlastingBugstopper]: https://github.com/EverlastingBugstopper + [pull/649]: https://github.com/apollographql/rover/pull/649 + [issue/645]: https://github.com/apollographql/rover/issues/645 + +## 🛠 Maintenance + +- **Re-use HTTP connection pool - [EverlastingBugstopper], [pull/650]** + + Rover will now create and reuse the same HTTP connection pool for subsequent requests, which should slightly improve performance. + + [EverlastingBugstopper]: https://github.com/EverlastingBugstopper + [pull/650]: https://github.com/apollographql/rover/pull/650 + +- **Removes unused dependencies - [EverlastingBugstopper], [pull/651]** + + [EverlastingBugstopper]: https://github.com/EverlastingBugstopper + [pull/651]: https://github.com/apollographql/rover/pull/651 + # [0.1.7] 2021-06-29 ## 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index e7b64a0bf..cfac782a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1921,7 +1921,7 @@ dependencies = [ [[package]] name = "rover" -version = "0.1.7" +version = "0.1.8" dependencies = [ "ansi_term 0.12.1", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index dfd7a0ef0..c8eaaa9c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT" name = "rover" readme = "README.md" repository = "https://github.com/apollographql/rover/" -version = "0.1.7" +version = "0.1.8" resolver = "2" [[bin]] diff --git a/README.md b/README.md index fb69e7c32..1e3f692b5 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats ## Command-line options ```console -Rover 0.1.7 +Rover 0.1.8 Rover - Your Graph Companion Read the getting started guide by running: @@ -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.7 | sh +curl -sSL https://rover.apollo.dev/nix/v0.1.8 | 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). @@ -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.7' | iex +iwr 'https://rover.apollo.dev/win/v0.1.8' | iex ``` #### npm installer diff --git a/docs/source/getting-started.md b/docs/source/getting-started.md index be35cda4e..2270f6460 100644 --- a/docs/source/getting-started.md +++ b/docs/source/getting-started.md @@ -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.7 | sh +curl -sSL https://rover.apollo.dev/nix/v0.1.8 | 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). @@ -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.7' | iex +iwr 'https://rover.apollo.dev/win/v0.1.8' | iex ``` ### `npm` installer diff --git a/installers/binstall/scripts/nix/install.sh b/installers/binstall/scripts/nix/install.sh index 6969cb7b3..75f18dfb7 100755 --- a/installers/binstall/scripts/nix/install.sh +++ b/installers/binstall/scripts/nix/install.sh @@ -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.7" +PACKAGE_VERSION="v0.1.8" download_binary_and_run_installer() { downloader --check diff --git a/installers/binstall/scripts/windows/install.ps1 b/installers/binstall/scripts/windows/install.ps1 index 3851b6948..ba28b94dc 100644 --- a/installers/binstall/scripts/windows/install.ps1 +++ b/installers/binstall/scripts/windows/install.ps1 @@ -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.7' +$package_version = 'v0.1.8' function Install-Binary() { $old_erroractionpreference = $ErrorActionPreference diff --git a/installers/npm/package-lock.json b/installers/npm/package-lock.json index 58ba92495..fbb0d7d24 100644 --- a/installers/npm/package-lock.json +++ b/installers/npm/package-lock.json @@ -1,12 +1,12 @@ { "name": "@apollo/rover", - "version": "0.1.7", + "version": "0.1.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@apollo/rover", - "version": "0.1.7", + "version": "0.1.8", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/installers/npm/package.json b/installers/npm/package.json index 6d7ef3a6e..21d6766da 100644 --- a/installers/npm/package.json +++ b/installers/npm/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/rover", - "version": "0.1.7", + "version": "0.1.8", "description": "The new Apollo CLI", "main": "index.js", "bin": {