diff --git a/CHANGELOG.md b/CHANGELOG.md index 57fe43f04..903afbfc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## 📚 Documentation --> +# [0.12.1] - 2023-02-17 + +## 🐛 Fixes + +- **Updates the output of a skipped operation check to match regular checks - @EverlastingBugstopper, #1519** + + A bit of polish to the output of the feature just released in 0.12.0. + # [0.12.0] - 2023-02-17 ## 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index fb9d1617b..1f3960776 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2075,9 +2075,9 @@ dependencies = [ [[package]] name = "http" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" +checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" dependencies = [ "bytes", "fnv", @@ -3737,7 +3737,7 @@ dependencies = [ [[package]] name = "rover" -version = "0.12.0" +version = "0.12.1" dependencies = [ "anyhow", "apollo-federation-types", diff --git a/Cargo.toml b/Cargo.toml index 88009ef84..456423a10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ license-file = "./LICENSE" name = "rover" readme = "README.md" repository = "https://github.com/apollographql/rover/" -version = "0.12.0" +version = "0.12.1" default-run = "rover" publish = false diff --git a/crates/rover-client/.schema/last_run.uuid b/crates/rover-client/.schema/last_run.uuid index 06575b39f..b1af17d0d 100644 --- a/crates/rover-client/.schema/last_run.uuid +++ b/crates/rover-client/.schema/last_run.uuid @@ -1 +1 @@ -27ea455c-d74b-4c89-830e-75854f5855ab \ No newline at end of file +409b9ed5-8b4c-4bb5-ba75-88e26e81a278 \ No newline at end of file diff --git a/crates/rover-client/package-lock.json b/crates/rover-client/package-lock.json index 107d88606..988bc7edc 100644 --- a/crates/rover-client/package-lock.json +++ b/crates/rover-client/package-lock.json @@ -956,9 +956,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "18.13.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.13.0.tgz", - "integrity": "sha512-gC3TazRzGoOnoKAhUx+Q0t8S9Tzs74z7m0ipwGpSqQrleP14hKxP4/JUeEQcD3W1/aIpnWl8pHowI7WokuZpXg==", + "version": "18.14.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.14.0.tgz", + "integrity": "sha512-5EWrvLmglK+imbCJY0+INViFWUHg1AHel1sq4ZVSfdcNqGy9Edv3UB9IIzzg+xPaUcAgZYcfVs2fBcwDeZzU0A==", "dev": true }, "node_modules/@types/ws": { @@ -1338,9 +1338,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.301", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.301.tgz", - "integrity": "sha512-bz00ASIIDjcgszZKuEA1JEFhbDjqUNbQ/PEhNEl1wbixzYpeTp2H2QWjsQvAL2T1wJBdOwCF5hE896BoMwYKrA==", + "version": "1.4.302", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.302.tgz", + "integrity": "sha512-Uk7C+7aPBryUR1Fwvk9VmipBcN9fVsqBO57jV2ZjTm+IZ6BMNqu7EDVEg2HxCNufk6QcWlFsBkhQyQroB2VWKw==", "dev": true, "peer": true }, diff --git a/docs/source/ci-cd.md b/docs/source/ci-cd.md index b38301a80..158c2770d 100644 --- a/docs/source/ci-cd.md +++ b/docs/source/ci-cd.md @@ -46,7 +46,7 @@ jobs: name: Install command: | # download and install Rover - curl -sSL https://rover.apollo.dev/nix/v0.12.0 | sh + curl -sSL https://rover.apollo.dev/nix/v0.12.1 | sh # This allows the PATH changes to persist to the next `run` step echo 'export PATH=$HOME/.rover/bin:$PATH' >> $BASH_ENV @@ -121,7 +121,7 @@ jobs: - name: Install Rover run: | - curl -sSL https://rover.apollo.dev/nix/v0.12.0 | sh + curl -sSL https://rover.apollo.dev/nix/v0.12.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 @@ -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.12.0` for Linux x86 architectures): +- Download the latest release via cURL and extract the binary like so (this downloads Rover `0.12.1` for Linux x86 architectures): ``` - curl -L https://github.com/apollographql/rover/releases/download/v0.12.0/rover-v0.12.0-x86_64-unknown-linux-gnu.tar.gz | tar --strip-components=1 -zxv + curl -L https://github.com/apollographql/rover/releases/download/v0.12.1/rover-v0.12.1-x86_64-unknown-linux-gnu.tar.gz | tar --strip-components=1 -zxv ``` #### Permission issues diff --git a/docs/source/getting-started.md b/docs/source/getting-started.md index 95cf21afa..a639a1829 100644 --- a/docs/source/getting-started.md +++ b/docs/source/getting-started.md @@ -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.12.0 | sh +curl -sSL https://rover.apollo.dev/nix/v0.12.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). @@ -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.12.0' | iex +iwr 'https://rover.apollo.dev/win/v0.12.1' | iex ``` ### `npm` installer diff --git a/installers/binstall/scripts/nix/install.sh b/installers/binstall/scripts/nix/install.sh index 0ebab76c5..d34034185 100755 --- a/installers/binstall/scripts/nix/install.sh +++ b/installers/binstall/scripts/nix/install.sh @@ -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.12.0" +PACKAGE_VERSION="v0.12.1" download_binary_and_run_installer() { downloader --check diff --git a/installers/binstall/scripts/windows/install.ps1 b/installers/binstall/scripts/windows/install.ps1 index 93f56be44..41136351e 100644 --- a/installers/binstall/scripts/windows/install.ps1 +++ b/installers/binstall/scripts/windows/install.ps1 @@ -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.12.0' +$package_version = 'v0.12.1' function Install-Binary($rover_install_args) { $old_erroractionpreference = $ErrorActionPreference diff --git a/installers/npm/package-lock.json b/installers/npm/package-lock.json index 6eba96324..c1d01961c 100644 --- a/installers/npm/package-lock.json +++ b/installers/npm/package-lock.json @@ -1,12 +1,12 @@ { "name": "@apollo/rover", - "version": "0.12.0", + "version": "0.12.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@apollo/rover", - "version": "0.12.0", + "version": "0.12.1", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/installers/npm/package.json b/installers/npm/package.json index 40aeff085..351ae6131 100644 --- a/installers/npm/package.json +++ b/installers/npm/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/rover", - "version": "0.12.0", + "version": "0.12.1", "description": "The new Apollo CLI", "main": "index.js", "bin": {