@apollo/rover 0.9.1 → 0.9.2-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/binary.js +6 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -37,7 +37,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats
|
|
37
37
|
|
38
38
|
```console
|
39
39
|
$ rover --help
|
40
|
-
Rover 0.9.
|
40
|
+
Rover 0.9.2-rc.0
|
41
41
|
Apollo Developers <opensource@apollographql.com>
|
42
42
|
|
43
43
|
Rover - Your Graph Companion
|
@@ -165,7 +165,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
165
165
|
> 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.
|
166
166
|
|
167
167
|
```bash
|
168
|
-
curl -sSL https://rover.apollo.dev/nix/v0.9.
|
168
|
+
curl -sSL https://rover.apollo.dev/nix/v0.9.2-rc.0 | sh
|
169
169
|
```
|
170
170
|
|
171
171
|
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).
|
@@ -183,7 +183,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
183
183
|
> 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.
|
184
184
|
|
185
185
|
```bash
|
186
|
-
iwr 'https://rover.apollo.dev/win/v0.9.
|
186
|
+
iwr 'https://rover.apollo.dev/win/v0.9.2-rc.0' | iex
|
187
187
|
```
|
188
188
|
|
189
189
|
#### npm installer
|
package/binary.js
CHANGED
@@ -25,6 +25,11 @@ const supportedPlatforms = [
|
|
25
25
|
RUST_TARGET: "x86_64-unknown-linux-gnu",
|
26
26
|
BINARY_NAME: name,
|
27
27
|
},
|
28
|
+
{
|
29
|
+
TYPE: "Linux",
|
30
|
+
ARCHITECTURE: "arm64",
|
31
|
+
RUST_TARGET: "aarch64-unknown-linux-gnu"
|
32
|
+
},
|
28
33
|
{
|
29
34
|
TYPE: "Darwin",
|
30
35
|
ARCHITECTURE: "x64",
|
@@ -34,7 +39,7 @@ const supportedPlatforms = [
|
|
34
39
|
{
|
35
40
|
TYPE: "Darwin",
|
36
41
|
ARCHITECTURE: "arm64",
|
37
|
-
RUST_TARGET: "
|
42
|
+
RUST_TARGET: "aarch64-apple-darwin",
|
38
43
|
BINARY_NAME: name,
|
39
44
|
},
|
40
45
|
];
|