Skip to content

Commit 4d805a0

Browse files
release: v0.4.5
1 parent d9546d9 commit 4d805a0

File tree

13 files changed

+50
-47
lines changed

13 files changed

+50
-47
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1818
1919
## 📚 Documentation -->
2020

21+
# [0.4.5] - 2022-03-11
22+
23+
## 🐛 Fixes
24+
25+
- **Fixes "output from `rover-fed2` was malformed" serialization errors - @EverlastingBugstopper, #1030**
26+
27+
Federation 2 was broken in 0.4.4, every `rover fed2 supergraph compose` command would return "output from `rover-fed2` was malformed" which was not helpful.
28+
29+
`rover fed2 supergraph compose` now uses `[email protected]`/`@apollo/[email protected]` under the hood and the data passed between rover and rover-fed2 is matched up properly. Happy federating!
30+
2131
# [0.4.4] - 2022-03-09
2232

2333
## 🛠 Maintenance

Cargo.lock

+14-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license-file = "./LICENSE"
1111
name = "rover"
1212
readme = "README.md"
1313
repository = "https://github.com/apollographql/rover/"
14-
version = "0.4.4"
14+
version = "0.4.5"
1515
default-run = "rover"
1616

1717
publish = false

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats
3737
## Command-line options
3838

3939
```console
40-
Rover 0.4.4
40+
Rover 0.4.5
4141

4242
Rover - Your Graph Companion
4343
Read the getting started guide by running:
@@ -123,7 +123,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
123123
> 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.
124124
125125
```bash
126-
curl -sSL https://rover.apollo.dev/nix/v0.4.4 | sh
126+
curl -sSL https://rover.apollo.dev/nix/v0.4.5 | sh
127127
```
128128

129129
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).
@@ -141,7 +141,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
141141
> 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.
142142
143143
```bash
144-
iwr 'https://rover.apollo.dev/win/v0.4.4' | iex
144+
iwr 'https://rover.apollo.dev/win/v0.4.5' | iex
145145
```
146146

147147
#### npm installer

crates/rover-client/package-lock.json

+12-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/source/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To install a **specific version** of Rover (recommended for CI environments to e
1919

2020
```bash
2121
# Note the `v` prefixing the version number
22-
curl -sSL https://rover.apollo.dev/nix/v0.4.4 | sh
22+
curl -sSL https://rover.apollo.dev/nix/v0.4.5 | sh
2323
```
2424

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

3939
```bash
4040
# Note the `v` prefixing the version number
41-
iwr 'https://rover.apollo.dev/win/v0.4.4' | iex
41+
iwr 'https://rover.apollo.dev/win/v0.4.5' | iex
4242
```
4343

4444
### `npm` installer

installers/binstall/scripts/nix/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ BINARY_DOWNLOAD_PREFIX="https://github.com/apollographql/rover/releases/download
2020
# Rover version defined in root cargo.toml
2121
# Note: this line is built automatically
2222
# in build.rs. Don't touch it!
23-
PACKAGE_VERSION="v0.4.4"
23+
PACKAGE_VERSION="v0.4.5"
2424

2525
download_binary_and_run_installer() {
2626
downloader --check

installers/binstall/scripts/nix/install_rover_fed2.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ BINARY_DOWNLOAD_PREFIX="https://github.com/apollographql/rover/releases/download
118118
# Rover version defined in root cargo.toml
119119
# Note: this line is built automatically
120120
# in build.rs. Don't touch it!
121-
PACKAGE_VERSION="v0.4.4"
121+
PACKAGE_VERSION="v0.4.5"
122122

123123
download_binary_and_run_installer() {
124124
downloader --check

installers/binstall/scripts/windows/install.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# version found in Rover's Cargo.toml
1515
# Note: this line is built automatically
1616
# in build.rs. Don't touch it!
17-
$package_version = 'v0.4.4'
17+
$package_version = 'v0.4.5'
1818

1919
function Install-Binary($rover_install_args) {
2020
$old_erroractionpreference = $ErrorActionPreference

installers/binstall/scripts/windows/install_rover_fed2.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
# version found in Rover's Cargo.toml
113113
# Note: this line is built automatically
114114
# in build.rs. Don't touch it!
115-
$package_version = 'v0.4.4'
115+
$package_version = 'v0.4.5'
116116

117117
function Install-Binary($rover_install_args) {
118118
$old_erroractionpreference = $ErrorActionPreference

installers/npm/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

installers/npm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/rover",
3-
"version": "0.4.4",
3+
"version": "0.4.5",
44
"description": "The new Apollo CLI",
55
"main": "index.js",
66
"bin": {

plugins/rover-fed2/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rover-fed2"
3-
version = "0.4.4"
3+
version = "0.4.5"
44
edition = "2021"
55
license-file = "./LICENSE"
66

0 commit comments

Comments
 (0)