@apollo/rover 0.5.4 → 0.6.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 +13 -32
- package/package.json +3 -3
package/README.md
CHANGED
@@ -37,7 +37,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats
|
|
37
37
|
## Command-line options
|
38
38
|
|
39
39
|
```console
|
40
|
-
Rover 0.
|
40
|
+
Rover 0.6.0
|
41
41
|
|
42
42
|
Rover - Your Graph Companion
|
43
43
|
Read the getting started guide by running:
|
@@ -66,37 +66,18 @@ USAGE:
|
|
66
66
|
rover [FLAGS] [OPTIONS] <SUBCOMMAND>
|
67
67
|
|
68
68
|
FLAGS:
|
69
|
-
--insecure-accept-invalid-certs
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
If invalid certificates are trusted, any certificate for any site will be trusted for use. This includes
|
75
|
-
expired certificates. This introduces significant vulnerabilities, and should only be used as a last resort.
|
76
|
-
--insecure-accept-invalid-hostnames
|
77
|
-
Accept invalid hostnames when performing HTTPS requests.
|
78
|
-
|
79
|
-
You should think very carefully before using this flag.
|
80
|
-
|
81
|
-
If hostname verification is not used, any valid certificate for any site will be trusted for use from any
|
82
|
-
other. This introduces a significant vulnerability to man-in-the-middle attacks.
|
83
|
-
-h, --help
|
84
|
-
Prints help information
|
85
|
-
|
86
|
-
-V, --version
|
87
|
-
Prints version information
|
88
|
-
|
69
|
+
--insecure-accept-invalid-certs Accept invalid certificates when performing HTTPS requests
|
70
|
+
--insecure-accept-invalid-hostnames Accept invalid hostnames when performing HTTPS requests
|
71
|
+
-h, --help Prints help information
|
72
|
+
-V, --version Prints version information
|
89
73
|
|
90
74
|
OPTIONS:
|
91
|
-
--client-timeout <client-timeout>
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
--output <output-type>
|
98
|
-
Specify Rover's output type [default: plain] [possible values: json, plain]
|
99
|
-
|
75
|
+
--client-timeout <client-timeout> Configure the timeout length (in seconds) when performing HTTP(S) requests
|
76
|
+
[default: 30]
|
77
|
+
-l, --log <log-level> Specify Rover's log level [possible values: error, warn,
|
78
|
+
info, debug, trace]
|
79
|
+
--output <output-type> Specify Rover's output type [default: plain] [possible values:
|
80
|
+
json, plain]
|
100
81
|
|
101
82
|
SUBCOMMANDS:
|
102
83
|
config Configuration profile commands
|
@@ -141,7 +122,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
141
122
|
> 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.
|
142
123
|
|
143
124
|
```bash
|
144
|
-
curl -sSL https://rover.apollo.dev/nix/v0.
|
125
|
+
curl -sSL https://rover.apollo.dev/nix/v0.6.0 | sh
|
145
126
|
```
|
146
127
|
|
147
128
|
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).
|
@@ -159,7 +140,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
159
140
|
> 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.
|
160
141
|
|
161
142
|
```bash
|
162
|
-
iwr 'https://rover.apollo.dev/win/v0.
|
143
|
+
iwr 'https://rover.apollo.dev/win/v0.6.0' | iex
|
163
144
|
```
|
164
145
|
|
165
146
|
#### npm installer
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@apollo/rover",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.6.0",
|
4
4
|
"description": "The new Apollo CLI",
|
5
5
|
"main": "index.js",
|
6
6
|
"bin": {
|
@@ -28,12 +28,12 @@
|
|
28
28
|
"url": "https://github.com/apollographql/rover/issues"
|
29
29
|
},
|
30
30
|
"engines": {
|
31
|
-
"node": ">=14
|
31
|
+
"node": ">=14",
|
32
32
|
"npm": ">=6"
|
33
33
|
},
|
34
34
|
"volta": {
|
35
35
|
"node": "17.5.0",
|
36
|
-
"npm": "8.
|
36
|
+
"npm": "8.8.0"
|
37
37
|
},
|
38
38
|
"homepage": "https://github.com/apollographql/rover#readme",
|
39
39
|
"dependencies": {
|