Skip to content

Commit

Permalink
release: v0.26.3
Browse files Browse the repository at this point in the history
  • Loading branch information
glasser committed Dec 16, 2024
1 parent 37f6030 commit 1fa9faf
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## 📚 Documentation -->

# [0.26.3] (unreleased) - 2024-12-dd
# [0.26.3] - 2024-12-16

## 🐛 Fixes

- **`rover persisted-queries publish` supports `clientName` for operations - @glasser #2239**
- **`rover persisted-queries publish` publishes `clientName`s in persisted query manifests - @glasser #2239**

If the JSON manifest file provided to `rover persisted-queries publish` sets the `clientName` on individual operations, these client names are included in the publish instead of ignored. Additionally, the new `--for-client-name` option overrides the `clientName` field for all operations in the manifest file.
When using `rover persisted-queries publish`, if the JSON manifest file includes `clientName` fields on operations, those client names are now published instead of ignored. You can use the new `--for-client-name` option to set or override the `clientName` field for all operations in a persisted query manifest.

# [0.26.2] - 2024-09-10

Expand Down
2 changes: 1 addition & 1 deletion 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.26.3-rc.0"
version = "0.26.3"
default-run = "rover"

publish = false
Expand Down
6 changes: 3 additions & 3 deletions docs/source/ci-cd.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
name: Install
command: |
# download and install Rover
curl -sSL https://rover.apollo.dev/nix/v0.26.3-rc.0 | sh
curl -sSL https://rover.apollo.dev/nix/v0.26.3 | 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 @@ -125,7 +125,7 @@ jobs:
- name: Install Rover
run: |
curl -sSL https://rover.apollo.dev/nix/v0.26.3-rc.0 | sh
curl -sSL https://rover.apollo.dev/nix/v0.26.3 | 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 @@ -214,7 +214,7 @@ To avoid this issue, do one of the following:
- Download the latest release via cURL and extract the binary like so (this downloads Rover `0.23.0` for Linux x86 architectures):

```
curl -L https://github.com/apollographql/rover/releases/download/v0.26.3-rc.0/rover-v0.26.3-rc.0-x86_64-unknown-linux-gnu.tar.gz | tar --strip-components=1 -zxv
curl -L https://github.com/apollographql/rover/releases/download/v0.26.3/rover-v0.26.3-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 @@ -20,7 +20,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.26.3-rc.0 | sh
curl -sSL https://rover.apollo.dev/nix/v0.26.3 | 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 @@ -43,7 +43,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.26.3-rc.0' | iex
iwr 'https://rover.apollo.dev/win/v0.26.3' | 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.26.3-rc.0"
PACKAGE_VERSION="v0.26.3"

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.26.3-rc.0'
$package_version = 'v0.26.3'

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.26.3-rc.0",
"version": "0.26.3",
"description": "The new Apollo CLI",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 1fa9faf

Please sign in to comment.