You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rover now has an `--output` parameter on every command that allows you to format Rover's output as well-structured JSON. Documentation for this feature can be found [here](https://www.apollographql.com/docs/rover/configuring/#--output-json).
-**Add an error message when an input schema is empty - [EverlastingBugstopper], [issue/724][pull/726]**
30
+
31
+
If the input to `--schema` was ever empty, you'd get some fairly strange and unexpected error messages. Now, if you supply an empty schema via the `--schema` argument, you'll get an error message informing you as such.
-**Don't panic on git remotes without an apparent owner - [EverlastingBugstopper], [issue/670][pull/731]**
56
+
57
+
Most git remotes include an author and a repo name, but this isn't always the case. One of Rover's dependencies assumed this _was_ always the case, and would panic if it wasn't the case. This broke workflows for people who had these types of git remotes, but it won't anymore!
-**Use correct cargo target for xtask commands - [EverlastingBugstopper], [issue/582][pull/730]**
70
+
71
+
Any `cargo xtask` command that relies on cargo targets will now determine a correct default if building on a machine with a CPU architecture other than `x86_64`
Copy file name to clipboardexpand all lines: docs/source/getting-started.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
20
20
> 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.
21
21
22
22
```bash
23
-
curl -sSL https://rover.apollo.dev/nix/v0.1.9| sh
23
+
curl -sSL https://rover.apollo.dev/nix/v0.2.0| sh
24
24
```
25
25
26
26
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).
@@ -38,7 +38,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
38
38
> 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.
0 commit comments