@apollo/rover 0.25.0 → 0.26.0-rc.1
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 +12 -10
- package/package.json +3 -3
package/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Rover
|
2
2
|
|
3
|
-
>
|
3
|
+
>The new CLI for apollo
|
4
4
|
|
5
5
|
[](https://app.circleci.com/pipelines/github/apollographql/rover?branch=main)
|
6
6
|
[](https://github.com/apollographql/rover/releases/latest)
|
@@ -41,6 +41,8 @@ Rover - Your Graph Companion
|
|
41
41
|
Usage: rover [OPTIONS] <COMMAND>
|
42
42
|
|
43
43
|
Commands:
|
44
|
+
cloud
|
45
|
+
Cloud configuration commands
|
44
46
|
config
|
45
47
|
Configuration profile commands
|
46
48
|
contract
|
@@ -76,7 +78,6 @@ Options:
|
|
76
78
|
|
77
79
|
--format <FORMAT_KIND>
|
78
80
|
Specify Rover's format type
|
79
|
-
|
80
81
|
[default: plain]
|
81
82
|
[possible values: plain, json]
|
82
83
|
|
@@ -85,21 +86,21 @@ Options:
|
|
85
86
|
|
86
87
|
--insecure-accept-invalid-certs
|
87
88
|
Accept invalid certificates when performing HTTPS requests.
|
88
|
-
|
89
89
|
You should think very carefully before using this flag.
|
90
|
-
|
91
|
-
If invalid certificates are trusted, any certificate for any site will be trusted for use.
|
90
|
+
|
91
|
+
If invalid certificates are trusted, any certificate for any site will be trusted for use. T
|
92
|
+
his includes expired certificates. This introduces significant vulnerabilities, and should only be use
|
93
|
+
d as a last resort.
|
92
94
|
|
93
95
|
--insecure-accept-invalid-hostnames
|
94
96
|
Accept invalid hostnames when performing HTTPS requests.
|
95
|
-
|
96
97
|
You should think very carefully before using this flag.
|
97
|
-
|
98
|
-
If hostname verification is not used, any valid certificate for any site will be trusted for
|
98
|
+
|
99
|
+
If hostname verification is not used, any valid certificate for any site will be trusted for
|
100
|
+
use from any other. This introduces a significant vulnerability to man-in-the-middle attacks.
|
99
101
|
|
100
102
|
--client-timeout <CLIENT_TIMEOUT>
|
101
103
|
Configure the timeout length (in seconds) when performing HTTP(S) requests
|
102
|
-
|
103
104
|
[default: 30]
|
104
105
|
|
105
106
|
--skip-update-check
|
@@ -125,7 +126,8 @@ This will prompt you for an API Key that can be generated in Apollo Studio.
|
|
125
126
|
The most common commands from there are:
|
126
127
|
|
127
128
|
- rover graph fetch: Fetch a graph schema from the Apollo graph registry
|
128
|
-
- rover graph check: Check for breaking changes in a local graph schema against a graph schema in
|
129
|
+
- rover graph check: Check for breaking changes in a local graph schema against a graph schema in
|
130
|
+
the Apollo graph
|
129
131
|
registry
|
130
132
|
- rover graph publish: Publish an updated graph schema to the Apollo graph registry
|
131
133
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@apollo/rover",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.26.0-rc.1",
|
4
4
|
"description": "The new Apollo CLI",
|
5
5
|
"main": "index.js",
|
6
6
|
"bin": {
|
@@ -33,7 +33,7 @@
|
|
33
33
|
"npm": ">=6"
|
34
34
|
},
|
35
35
|
"volta": {
|
36
|
-
"node": "20.
|
36
|
+
"node": "20.16.0",
|
37
37
|
"npm": "10.8.2"
|
38
38
|
},
|
39
39
|
"homepage": "https://github.com/apollographql/rover#readme",
|
@@ -47,7 +47,7 @@
|
|
47
47
|
"devDependencies": {
|
48
48
|
"prettier": "3.3.3",
|
49
49
|
"jest": "29.7.0",
|
50
|
-
"axios-mock-adapter": "
|
50
|
+
"axios-mock-adapter": "2.0.0",
|
51
51
|
"jest-junit": "16.0.0"
|
52
52
|
}
|
53
53
|
}
|