Skip to content

Commit

Permalink
release: v0.4.1 (#931)
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper authored Nov 18, 2021
1 parent 75f3cea commit 79a94c9
Show file tree
Hide file tree
Showing 14 changed files with 402 additions and 356 deletions.
26 changes: 24 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,33 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## 📚 Documentation -->

# [0.4.0] - 2021-11-02
# [0.4.1] - 2021-11-18

## 🚀 Features

<!-- TODO: add in the PRs that we merge tomorrow and get buy-in on wording. -->
- **Track WSL as a separate operating system from Linux - @ptondereau, #921 fixes #511**

## 🐛 Fixes

- **Properly indent multiline field comments in introspection output - @lrlna, #919 fixes #884**

- **Properly encode string values with single quotes instead of always using triple quotes - @lrlna, #930**

## 🛠 Maintenance

- **Updates `rover supergraph compose` to use `@apollo/[email protected]` - @EverlastingBugstopper, #929 fixes #924**

This adds support for users of v16 of the `graphql` library in addition to fixing a bug in directive merging logic.

- **Expand valid node runtime range to >=14 <17 for npm installs - @EverlastingBugstopper #900 fixes #912**

## 📚 Documentation

- **Miscellaneous copy edits - @StephenBarlow, #923**

# [0.4.0] - 2021-11-02

## 🚀 Features

- **Federation 2 Support - [EverlastingBugstopper], [pull/887]**

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.4.0"
version = "0.4.1"
default-run = "rover"

publish = false
Expand Down
30 changes: 15 additions & 15 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.0
Rover 0.4.1

Rover - Your Graph Companion
Read the getting started guide by running:
Expand Down Expand Up @@ -66,35 +66,35 @@ USAGE:
rover [FLAGS] [OPTIONS] <SUBCOMMAND>

FLAGS:
--insecure-accept-invalid-certs
--insecure-accept-invalid-certs
Accept invalid certificates when performing HTTPS requests.

You should think very carefully before using this flag.

If invalid certificates are trusted, any certificate for any site will be trusted for use. This includes
expired certificates. This introduces significant vulnerabilities, and should only be used as a last resort.
--insecure-accept-invalid-hostnames
--insecure-accept-invalid-hostnames
Accept invalid hostnames when performing HTTPS requests.

You should think very carefully before using this flag.

If hostname verification is not used, any valid certificate for any site will be trusted for use from any
other. This introduces a significant vulnerability to man-in-the-middle attacks.
-h, --help
-h, --help
Prints help information

-V, --version
-V, --version
Prints version information


OPTIONS:
--client-timeout <client-timeout>
--client-timeout <client-timeout>
Configure the timeout length (in seconds) when performing HTTP(S) requests [default: 30]

-l, --log <log-level>
-l, --log <log-level>
Specify Rover's log level [possible values: error, warn, info, debug,
trace]
--output <output-type>
--output <output-type>
Specify Rover's output type [default: plain] [possible values: json, plain]


Expand Down Expand Up @@ -133,7 +133,7 @@ This repo is organized as a [`cargo` workspace], containing several related proj

#### Linux and MacOS `curl | sh` installer

To install the latest release of Rover:
To install the latest release of Rover:

```bash
curl -sSL https://rover.apollo.dev/nix/latest | sh
Expand All @@ -144,7 +144,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.9 | sh
curl -sSL https://rover.apollo.dev/nix/v0.4.1 | 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 @@ -162,7 +162,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.9' | iex
iwr 'https://rover.apollo.dev/win/v0.4.1' | iex
```

#### npm installer
Expand Down
Loading

0 comments on commit 79a94c9

Please sign in to comment.