@apollo/rover 0.5.4-rc.0 → 0.7.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 +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
@@ -4,7 +4,6 @@
|
|
4
4
|
|
5
5
|
[](https://app.circleci.com/pipelines/github/apollographql/rover?branch=main)
|
6
6
|
[](https://github.com/apollographql/rover/releases/latest)
|
7
|
-
[](https://app.netlify.com/sites/apollo-cli-docs/deploys)
|
8
7
|
|
9
8
|
This is the home of Rover, the new CLI for Apollo's suite of GraphQL developer productivity tools.
|
10
9
|
|
@@ -37,7 +36,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats
|
|
37
36
|
## Command-line options
|
38
37
|
|
39
38
|
```console
|
40
|
-
Rover 0.
|
39
|
+
Rover 0.7.0
|
41
40
|
|
42
41
|
Rover - Your Graph Companion
|
43
42
|
Read the getting started guide by running:
|
@@ -104,6 +103,7 @@ SUBCOMMANDS:
|
|
104
103
|
explain Explain error codes
|
105
104
|
graph Graph API schema commands
|
106
105
|
help Prints this message or the help of the given subcommand(s)
|
106
|
+
readme Readme commands
|
107
107
|
subgraph Subgraph schema commands
|
108
108
|
supergraph Supergraph schema commands
|
109
109
|
update Commands related to updating rover
|
@@ -141,7 +141,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
141
141
|
> 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.
|
142
142
|
|
143
143
|
```bash
|
144
|
-
curl -sSL https://rover.apollo.dev/nix/v0.
|
144
|
+
curl -sSL https://rover.apollo.dev/nix/v0.6.0 | sh
|
145
145
|
```
|
146
146
|
|
147
147
|
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).
|
@@ -159,7 +159,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
159
159
|
> 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.
|
160
160
|
|
161
161
|
```bash
|
162
|
-
iwr 'https://rover.apollo.dev/win/v0.
|
162
|
+
iwr 'https://rover.apollo.dev/win/v0.6.0' | iex
|
163
163
|
```
|
164
164
|
|
165
165
|
#### npm installer
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@apollo/rover",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.7.0",
|
4
4
|
"description": "The new Apollo CLI",
|
5
5
|
"main": "index.js",
|
6
6
|
"bin": {
|
@@ -28,12 +28,12 @@
|
|
28
28
|
"url": "https://github.com/apollographql/rover/issues"
|
29
29
|
},
|
30
30
|
"engines": {
|
31
|
-
"node": ">=14
|
31
|
+
"node": ">=14",
|
32
32
|
"npm": ">=6"
|
33
33
|
},
|
34
34
|
"volta": {
|
35
35
|
"node": "17.5.0",
|
36
|
-
"npm": "8.
|
36
|
+
"npm": "8.12.1"
|
37
37
|
},
|
38
38
|
"homepage": "https://github.com/apollographql/rover#readme",
|
39
39
|
"dependencies": {
|