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
-**Prevent update checker from aborting commands - [EverlastingBugstopper], [pull/624]**
30
+
31
+
Previously, if there was a spurious network error when attempting to check for a newer version of Rover, the command would fail. This is no longer the case, if GitHub is down, you will still be able to run Rover commands.
-**New `cargo xtask` command suite - [EverlastingBugstopper], [issue/388][pull/562]**
46
+
47
+
We've replaced a decent chunk of bash scripting in GitHub actions with Rust code. This means you can locally run most commands you need for contributing to Rover with `cargo xtask`.
-**Extend contribution guide and create an architecture document - [EverlastingBugstopper], [JakeDawkins] & [StephenBarlow], [issue/561][pull/594]**
64
+
65
+
Our new architecture document includes a guide on how to add a new command to Rover, and the `CONTRIBUTING.md` file at the root of the Rover repository is automatically included on our documentation site.
@@ -224,8 +292,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
224
292
Previously, Rover obfuscated the information about HTTP errors that occurred. Now, if something goes wrong between your machine and any HTTP server, you'll get some more information about what exactly went wrong.
@@ -118,7 +118,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
118
118
> 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.
119
119
120
120
```bash
121
-
curl -sSL https://rover.apollo.dev/nix/v0.1.1| sh
121
+
curl -sSL https://rover.apollo.dev/nix/v0.1.7| sh
122
122
```
123
123
124
124
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).
@@ -136,7 +136,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
136
136
> 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.
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.5| sh
23
+
curl -sSL https://rover.apollo.dev/nix/v0.1.7| 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