@apollo/rover 0.4.0 → 0.4.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 +15 -15
- package/package.json +5 -5
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.4.
|
40
|
+
Rover 0.4.1
|
41
41
|
|
42
42
|
Rover - Your Graph Companion
|
43
43
|
Read the getting started guide by running:
|
@@ -66,35 +66,35 @@ USAGE:
|
|
66
66
|
rover [FLAGS] [OPTIONS] <SUBCOMMAND>
|
67
67
|
|
68
68
|
FLAGS:
|
69
|
-
--insecure-accept-invalid-certs
|
69
|
+
--insecure-accept-invalid-certs
|
70
70
|
Accept invalid certificates when performing HTTPS requests.
|
71
|
-
|
71
|
+
|
72
72
|
You should think very carefully before using this flag.
|
73
|
-
|
73
|
+
|
74
74
|
If invalid certificates are trusted, any certificate for any site will be trusted for use. This includes
|
75
75
|
expired certificates. This introduces significant vulnerabilities, and should only be used as a last resort.
|
76
|
-
--insecure-accept-invalid-hostnames
|
76
|
+
--insecure-accept-invalid-hostnames
|
77
77
|
Accept invalid hostnames when performing HTTPS requests.
|
78
|
-
|
78
|
+
|
79
79
|
You should think very carefully before using this flag.
|
80
|
-
|
80
|
+
|
81
81
|
If hostname verification is not used, any valid certificate for any site will be trusted for use from any
|
82
82
|
other. This introduces a significant vulnerability to man-in-the-middle attacks.
|
83
|
-
-h, --help
|
83
|
+
-h, --help
|
84
84
|
Prints help information
|
85
85
|
|
86
|
-
-V, --version
|
86
|
+
-V, --version
|
87
87
|
Prints version information
|
88
88
|
|
89
89
|
|
90
90
|
OPTIONS:
|
91
|
-
--client-timeout <client-timeout>
|
91
|
+
--client-timeout <client-timeout>
|
92
92
|
Configure the timeout length (in seconds) when performing HTTP(S) requests [default: 30]
|
93
93
|
|
94
|
-
-l, --log <log-level>
|
94
|
+
-l, --log <log-level>
|
95
95
|
Specify Rover's log level [possible values: error, warn, info, debug,
|
96
96
|
trace]
|
97
|
-
--output <output-type>
|
97
|
+
--output <output-type>
|
98
98
|
Specify Rover's output type [default: plain] [possible values: json, plain]
|
99
99
|
|
100
100
|
|
@@ -133,7 +133,7 @@ This repo is organized as a [`cargo` workspace], containing several related proj
|
|
133
133
|
|
134
134
|
#### Linux and MacOS `curl | sh` installer
|
135
135
|
|
136
|
-
To install the latest release of Rover:
|
136
|
+
To install the latest release of Rover:
|
137
137
|
|
138
138
|
```bash
|
139
139
|
curl -sSL https://rover.apollo.dev/nix/latest | sh
|
@@ -144,7 +144,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
144
144
|
> 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.
|
145
145
|
|
146
146
|
```bash
|
147
|
-
curl -sSL https://rover.apollo.dev/nix/v0.1
|
147
|
+
curl -sSL https://rover.apollo.dev/nix/v0.4.1 | sh
|
148
148
|
```
|
149
149
|
|
150
150
|
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).
|
@@ -162,7 +162,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
162
162
|
> 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.
|
163
163
|
|
164
164
|
```bash
|
165
|
-
iwr 'https://rover.apollo.dev/win/v0.1
|
165
|
+
iwr 'https://rover.apollo.dev/win/v0.4.1' | iex
|
166
166
|
```
|
167
167
|
|
168
168
|
#### npm installer
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@apollo/rover",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.1",
|
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 <
|
32
|
-
"npm": "
|
31
|
+
"node": ">=14 <17",
|
32
|
+
"npm": ">=6"
|
33
33
|
},
|
34
34
|
"volta": {
|
35
|
-
"node": "
|
36
|
-
"npm": "
|
35
|
+
"node": "16.13.0",
|
36
|
+
"npm": "8.1.3"
|
37
37
|
},
|
38
38
|
"homepage": "https://github.com/apollographql/rover#readme",
|
39
39
|
"dependencies": {
|