@apollo/rover 0.28.1 → 0.29.0-rc.2
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 +10 -14
- package/package.json +3 -3
package/README.md
CHANGED
@@ -38,6 +38,8 @@ Rover - Your Graph Companion
|
|
38
38
|
Usage: rover [OPTIONS] <COMMAND>
|
39
39
|
|
40
40
|
Commands:
|
41
|
+
init
|
42
|
+
Initialize a Graph project using Apollo Federation with Apollo Router
|
41
43
|
cloud
|
42
44
|
Cloud configuration commands
|
43
45
|
config
|
@@ -45,7 +47,7 @@ Commands:
|
|
45
47
|
contract
|
46
48
|
Contract configuration commands
|
47
49
|
dev
|
48
|
-
|
50
|
+
Run a supergraph locally to develop and test subgraph changes
|
49
51
|
supergraph
|
50
52
|
Supergraph schema commands
|
51
53
|
graph
|
@@ -110,25 +112,19 @@ Options:
|
|
110
112
|
-V, --version
|
111
113
|
Print version
|
112
114
|
|
113
|
-
Read the getting started guide by running:
|
114
115
|
|
115
|
-
$ rover docs open start
|
116
116
|
|
117
|
-
|
118
|
-
run the following command:
|
117
|
+
** Getting Started with Rover **
|
119
118
|
|
120
|
-
|
119
|
+
Run the following command to authenticate with GraphOS:
|
121
120
|
|
122
|
-
|
121
|
+
$ rover config auth
|
123
122
|
|
124
|
-
|
123
|
+
Once you're authenticated, create a new graph by running:
|
125
124
|
|
126
|
-
|
127
|
-
- rover graph check: Check for breaking changes in a local graph schema against a graph schema in the Apollo graph
|
128
|
-
registry
|
129
|
-
- rover graph publish: Publish an updated graph schema to the Apollo graph registry
|
125
|
+
$ rover init
|
130
126
|
|
131
|
-
|
127
|
+
To learn more about Rover, you can view the full documentation by running:
|
132
128
|
|
133
129
|
$ rover docs open
|
134
130
|
```
|
@@ -188,7 +184,7 @@ iwr 'https://rover.apollo.dev/win/latest' | iex
|
|
188
184
|
|
189
185
|
To install a specific version of Rover (note the `v` prefixing the version number):
|
190
186
|
|
191
|
-
> Note: If you
|
187
|
+
> Note: If you are 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.
|
192
188
|
|
193
189
|
```bash
|
194
190
|
iwr 'https://rover.apollo.dev/win/v0.10.0' | iex
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@apollo/rover",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.29.0-rc.2",
|
4
4
|
"description": "The new Apollo CLI",
|
5
5
|
"main": "index.js",
|
6
6
|
"bin": {
|
@@ -33,8 +33,8 @@
|
|
33
33
|
"npm": ">=6"
|
34
34
|
},
|
35
35
|
"volta": {
|
36
|
-
"node": "20.
|
37
|
-
"npm": "11.
|
36
|
+
"node": "20.19.0",
|
37
|
+
"npm": "11.2.0"
|
38
38
|
},
|
39
39
|
"homepage": "https://github.com/apollographql/rover#readme",
|
40
40
|
"dependencies": {
|