@apollo/rover 0.6.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 +31 -12
- package/package.json +2 -2
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:
|
@@ -66,18 +65,37 @@ USAGE:
|
|
66
65
|
rover [FLAGS] [OPTIONS] <SUBCOMMAND>
|
67
66
|
|
68
67
|
FLAGS:
|
69
|
-
--insecure-accept-invalid-certs
|
70
|
-
|
71
|
-
|
72
|
-
|
68
|
+
--insecure-accept-invalid-certs
|
69
|
+
Accept invalid certificates when performing HTTPS requests.
|
70
|
+
|
71
|
+
You should think very carefully before using this flag.
|
72
|
+
|
73
|
+
If invalid certificates are trusted, any certificate for any site will be trusted for use. This includes
|
74
|
+
expired certificates. This introduces significant vulnerabilities, and should only be used as a last resort.
|
75
|
+
--insecure-accept-invalid-hostnames
|
76
|
+
Accept invalid hostnames when performing HTTPS requests.
|
77
|
+
|
78
|
+
You should think very carefully before using this flag.
|
79
|
+
|
80
|
+
If hostname verification is not used, any valid certificate for any site will be trusted for use from any
|
81
|
+
other. This introduces a significant vulnerability to man-in-the-middle attacks.
|
82
|
+
-h, --help
|
83
|
+
Prints help information
|
84
|
+
|
85
|
+
-V, --version
|
86
|
+
Prints version information
|
87
|
+
|
73
88
|
|
74
89
|
OPTIONS:
|
75
|
-
--client-timeout <client-timeout>
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
90
|
+
--client-timeout <client-timeout>
|
91
|
+
Configure the timeout length (in seconds) when performing HTTP(S) requests [default: 30]
|
92
|
+
|
93
|
+
-l, --log <log-level>
|
94
|
+
Specify Rover's log level [possible values: error, warn, info, debug,
|
95
|
+
trace]
|
96
|
+
--output <output-type>
|
97
|
+
Specify Rover's output type [default: plain] [possible values: json, plain]
|
98
|
+
|
81
99
|
|
82
100
|
SUBCOMMANDS:
|
83
101
|
config Configuration profile commands
|
@@ -85,6 +103,7 @@ SUBCOMMANDS:
|
|
85
103
|
explain Explain error codes
|
86
104
|
graph Graph API schema commands
|
87
105
|
help Prints this message or the help of the given subcommand(s)
|
106
|
+
readme Readme commands
|
88
107
|
subgraph Subgraph schema commands
|
89
108
|
supergraph Supergraph schema commands
|
90
109
|
update Commands related to updating rover
|
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": {
|
@@ -33,7 +33,7 @@
|
|
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": {
|