@apollo/rover 0.19.1 → 0.21.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 +26 -7
- package/package.json +2 -2
package/README.md
CHANGED
@@ -36,7 +36,6 @@ rover graph publish --schema ./path-to-valid-schema test@cats
|
|
36
36
|
## Command-line options
|
37
37
|
|
38
38
|
```console
|
39
|
-
$ rover help
|
40
39
|
Rover - Your Graph Companion
|
41
40
|
|
42
41
|
Usage: rover [OPTIONS] <COMMAND>
|
@@ -63,7 +62,7 @@ Commands:
|
|
63
62
|
update
|
64
63
|
Commands related to updating rover
|
65
64
|
persisted-queries
|
66
|
-
|
65
|
+
Commands for persisted queries [aliases: pq]
|
67
66
|
explain
|
68
67
|
Explain error codes
|
69
68
|
help
|
@@ -72,20 +71,40 @@ Commands:
|
|
72
71
|
Options:
|
73
72
|
-l, --log <LOG_LEVEL>
|
74
73
|
Specify Rover's log level
|
74
|
+
|
75
75
|
--format <FORMAT_KIND>
|
76
|
-
Specify Rover's format type
|
76
|
+
Specify Rover's format type
|
77
|
+
|
78
|
+
[possible values: plain, json]
|
79
|
+
|
77
80
|
-o, --output <OUTPUT_FILE>
|
78
81
|
Specify a file to write Rover's output to
|
82
|
+
|
79
83
|
--insecure-accept-invalid-certs
|
80
|
-
Accept invalid certificates when performing HTTPS requests
|
84
|
+
Accept invalid certificates when performing HTTPS requests.
|
85
|
+
|
86
|
+
You should think very carefully before using this flag.
|
87
|
+
|
88
|
+
If invalid certificates are trusted, any certificate for any site will be trusted for use. This includes expired certificates. This introduces significant vulnerabilities, and should only be used as a last resort.
|
89
|
+
|
81
90
|
--insecure-accept-invalid-hostnames
|
82
|
-
Accept invalid hostnames when performing HTTPS requests
|
91
|
+
Accept invalid hostnames when performing HTTPS requests.
|
92
|
+
|
93
|
+
You should think very carefully before using this flag.
|
94
|
+
|
95
|
+
If hostname verification is not used, any valid certificate for any site will be trusted for use from any other. This introduces a significant vulnerability to man-in-the-middle attacks.
|
96
|
+
|
83
97
|
--client-timeout <CLIENT_TIMEOUT>
|
84
|
-
Configure the timeout length (in seconds) when performing HTTP(S) requests
|
98
|
+
Configure the timeout length (in seconds) when performing HTTP(S) requests
|
99
|
+
|
100
|
+
[default: 30]
|
101
|
+
|
85
102
|
--skip-update-check
|
86
103
|
Skip checking for newer versions of rover
|
104
|
+
|
87
105
|
-h, --help
|
88
|
-
Print help (see
|
106
|
+
Print help (see a summary with '-h')
|
107
|
+
|
89
108
|
-V, --version
|
90
109
|
Print version
|
91
110
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@apollo/rover",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.21.0",
|
4
4
|
"description": "The new Apollo CLI",
|
5
5
|
"main": "index.js",
|
6
6
|
"bin": {
|
@@ -32,7 +32,7 @@
|
|
32
32
|
"npm": ">=6"
|
33
33
|
},
|
34
34
|
"volta": {
|
35
|
-
"node": "18.
|
35
|
+
"node": "18.18.0",
|
36
36
|
"npm": "10.1.0"
|
37
37
|
},
|
38
38
|
"homepage": "https://github.com/apollographql/rover#readme",
|