Skip to content

Commit

Permalink
release: v0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper committed Mar 15, 2022
1 parent 735a92e commit 5fb1e89
Show file tree
Hide file tree
Showing 14 changed files with 43 additions and 35 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## 📚 Documentation -->

# [0.4.7] - 2022-03-15

## 🐛 Maintenance

- **Bumps harmonizer to v2.0.0-preview.7 - @EverlastingBugstopper, #1037**

`rover fed2 supergraph compose` now uses rust: `[email protected]` and js: `@apollo/[email protected]`.

# [0.4.6] - 2022-03-14

## 🐛 Maintenance
Expand Down
10 changes: 5 additions & 5 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-file = "./LICENSE"
name = "rover"
readme = "README.md"
repository = "https://github.com/apollographql/rover/"
version = "0.4.6"
version = "0.4.7"
default-run = "rover"

publish = false
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.4.6
Rover 0.4.7

Rover - Your Graph Companion
Read the getting started guide by running:
Expand Down Expand Up @@ -123,7 +123,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.4.6 | sh
curl -sSL https://rover.apollo.dev/nix/v0.4.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 @@ -141,7 +141,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.4.6' | iex
iwr 'https://rover.apollo.dev/win/v0.4.7' | iex
```

#### npm installer
Expand Down
24 changes: 12 additions & 12 deletions crates/rover-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/source/errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,18 +236,18 @@ If you encountered this error while running introspection, you'll want to make s

This error occurs when you propose a subgraph schema that could not be built.

There are many reasons why you may run into build errors. This error should include information about _why_ the proposed subgraph schema could not be composed. Error code references can be found [here](/federation/errors/).
There are many reasons why you may run into build errors. This error should include information about _why_ the proposed subgraph schema could not be composed. Error code references can be found [here](https://www.apollographql.com/docs/federation/errors/).

Some build errors are part of normal workflows. For instance, you may need to publish a subgraph that does not compose if you are trying to [migrate an entity or field](/federation/entities/#migrating-entities-and-fields-advanced).
Some build errors are part of normal workflows. For instance, you may need to publish a subgraph that does not compose if you are trying to [migrate an entity or field](https://www.apollographql.com/docs/federation/entities/#migrating-entities-and-fields-advanced).


### E030

This error occurs when an operation check fails. This means that you proposed a schema that would break operations in use by existing clients. You can configure this behavior in the Checks -> Configuration view in [Apollo Studio](https://studio.apollographql.com/), and you can read more about client checks [here](/studio/schema-checks/).
This error occurs when an operation check fails. This means that you proposed a schema that would break operations in use by existing clients. You can configure this behavior in the Checks -> Configuration view in [Apollo Studio](https://studio.apollographql.com/), and you can read more about client checks [here](https://www.apollographql.com/docs/studio/schema-checks/).

### E031

This error occurs when Rover made an HTTP request and it timed out.

The client timeout that Rover sets is configurable. You can [increase Rover's request timeout](./configuring/#bypassing-tlsssl-validation), but it's also possible that you've made a request for too much data from the Studio API, or that the Studio API is experiencing degraded performance. You can check for known performance issues on our [status page](https://status.apollographql.com).
The client timeout that Rover sets is configurable. You can [increase Rover's request timeout](https://www.apollographql.com/docs/rover/configuring/#bypass-tlsssl-validation), but it's also possible that you've made a request for too much data from the Studio API, or that the Studio API is experiencing degraded performance. You can check for known performance issues on our [status page](https://status.apollographql.com).

4 changes: 2 additions & 2 deletions docs/source/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.6 | sh
curl -sSL https://rover.apollo.dev/nix/v0.4.7 | 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 @@ -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.4.6' | iex
iwr 'https://rover.apollo.dev/win/v0.4.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 @@ -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.4.6"
PACKAGE_VERSION="v0.4.7"

download_binary_and_run_installer() {
downloader --check
Expand Down
2 changes: 1 addition & 1 deletion installers/binstall/scripts/nix/install_rover_fed2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,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.4.6"
PACKAGE_VERSION="v0.4.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 @@ -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.4.6'
$package_version = 'v0.4.7'

function Install-Binary($rover_install_args) {
$old_erroractionpreference = $ErrorActionPreference
Expand Down
2 changes: 1 addition & 1 deletion installers/binstall/scripts/windows/install_rover_fed2.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
# version found in Rover's Cargo.toml
# Note: this line is built automatically
# in build.rs. Don't touch it!
$package_version = 'v0.4.6'
$package_version = 'v0.4.7'

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.4.6",
"version": "0.4.7",
"description": "The new Apollo CLI",
"main": "index.js",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion plugins/rover-fed2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rover-fed2"
version = "0.4.6"
version = "0.4.7"
edition = "2021"
license-file = "./LICENSE"

Expand Down

0 comments on commit 5fb1e89

Please sign in to comment.