@apollo/rover 0.9.0-rc.1 → 0.9.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 +50 -19
- package/package.json +1 -1
package/README.md
CHANGED
@@ -37,7 +37,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats
|
|
37
37
|
|
38
38
|
```console
|
39
39
|
$ rover --help
|
40
|
-
Rover 0.9.
|
40
|
+
Rover 0.9.1
|
41
41
|
Apollo Developers <opensource@apollographql.com>
|
42
42
|
|
43
43
|
Rover - Your Graph Companion
|
@@ -69,37 +69,68 @@ USAGE:
|
|
69
69
|
|
70
70
|
OPTIONS:
|
71
71
|
--client-timeout <CLIENT_TIMEOUT>
|
72
|
-
Configure the timeout length (in seconds) when performing HTTP(S) requests
|
72
|
+
Configure the timeout length (in seconds) when performing HTTP(S) requests
|
73
|
+
|
74
|
+
[default: 30]
|
73
75
|
|
74
76
|
-h, --help
|
75
77
|
Print help information
|
76
78
|
|
77
79
|
--insecure-accept-invalid-certs
|
78
|
-
Accept invalid certificates when performing HTTPS requests
|
80
|
+
Accept invalid certificates when performing HTTPS requests.
|
81
|
+
|
82
|
+
You should think very carefully before using this flag.
|
83
|
+
|
84
|
+
If invalid certificates are trusted, any certificate for any site will be trusted for
|
85
|
+
use. This includes expired certificates. This introduces significant vulnerabilities,
|
86
|
+
and should only be used as a last resort.
|
79
87
|
|
80
88
|
--insecure-accept-invalid-hostnames
|
81
|
-
Accept invalid hostnames when performing HTTPS requests
|
89
|
+
Accept invalid hostnames when performing HTTPS requests.
|
90
|
+
|
91
|
+
You should think very carefully before using this flag.
|
92
|
+
|
93
|
+
If hostname verification is not used, any valid certificate for any site will be trusted
|
94
|
+
for use from any other. This introduces a significant vulnerability to man-in-the-middle
|
95
|
+
attacks.
|
82
96
|
|
83
97
|
-l, --log <LOG_LEVEL>
|
84
|
-
Specify Rover's log level
|
98
|
+
Specify Rover's log level
|
99
|
+
|
100
|
+
[possible values: error, warn, info, debug, trace]
|
85
101
|
|
86
102
|
--output <OUTPUT_TYPE>
|
87
|
-
Specify Rover's output type
|
103
|
+
Specify Rover's output type
|
104
|
+
|
105
|
+
[default: plain]
|
106
|
+
[possible values: json, plain]
|
88
107
|
|
89
108
|
-V, --version
|
90
109
|
Print version information
|
91
110
|
|
92
111
|
SUBCOMMANDS:
|
93
|
-
config
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
112
|
+
config
|
113
|
+
Configuration profile commands
|
114
|
+
dev
|
115
|
+
Combine multiple subgraphs into a local supergraph
|
116
|
+
docs
|
117
|
+
Interact with Rover's documentation
|
118
|
+
explain
|
119
|
+
Explain error codes
|
120
|
+
graph
|
121
|
+
Graph API schema commands
|
122
|
+
help
|
123
|
+
Print this message or the help of the given subcommand(s)
|
124
|
+
readme
|
125
|
+
Readme commands
|
126
|
+
subgraph
|
127
|
+
Subgraph schema commands
|
128
|
+
supergraph
|
129
|
+
Supergraph schema commands
|
130
|
+
template
|
131
|
+
Commands for working with templates
|
132
|
+
update
|
133
|
+
Commands related to updating rover
|
103
134
|
```
|
104
135
|
|
105
136
|
This repo is organized as a [`cargo` workspace], containing several related projects:
|
@@ -134,7 +165,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
134
165
|
> 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.
|
135
166
|
|
136
167
|
```bash
|
137
|
-
curl -sSL https://rover.apollo.dev/nix/v0.
|
168
|
+
curl -sSL https://rover.apollo.dev/nix/v0.9.1 | sh
|
138
169
|
```
|
139
170
|
|
140
171
|
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).
|
@@ -152,7 +183,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
152
183
|
> 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.
|
153
184
|
|
154
185
|
```bash
|
155
|
-
iwr 'https://rover.apollo.dev/win/v0.
|
186
|
+
iwr 'https://rover.apollo.dev/win/v0.9.1' | iex
|
156
187
|
```
|
157
188
|
|
158
189
|
#### npm installer
|
@@ -190,4 +221,4 @@ See [this page](https://go.apollo.dev/r/contributing) for info about contributin
|
|
190
221
|
|
191
222
|
## Licensing
|
192
223
|
|
193
|
-
Source code in this repository is covered by (i) an MIT compatible license or (ii) the Elastic License 2.0, in each case, as designated by a licensing file within a subdirectory or file header. The default throughout the repository is an MIT compatible license, unless a file header or a licensing file in a subdirectory specifies another license.
|
224
|
+
Source code in this repository is covered by (i) an MIT compatible license or (ii) the Elastic License 2.0, in each case, as designated by a licensing file within a subdirectory or file header. The default throughout the repository is an MIT compatible license, unless a file header or a licensing file in a subdirectory specifies another license.
|