@apollo/rover 0.11.0 → 0.12.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.
Files changed (2) hide show
  1. package/README.md +25 -5
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -70,20 +70,40 @@ Commands:
70
70
  Options:
71
71
  -l, --log <LOG_LEVEL>
72
72
  Specify Rover's log level
73
+
73
74
  --format <FORMAT_KIND>
74
- Specify Rover's format type [possible values: plain, json]
75
+ Specify Rover's format type
76
+
77
+ [possible values: plain, json]
78
+
75
79
  -o, --output <OUTPUT_FILE>
76
80
  Specify a file to write Rover's output to
81
+
77
82
  --insecure-accept-invalid-certs
78
- Accept invalid certificates when performing HTTPS requests
83
+ Accept invalid certificates when performing HTTPS requests.
84
+
85
+ You should think very carefully before using this flag.
86
+
87
+ 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.
88
+
79
89
  --insecure-accept-invalid-hostnames
80
- Accept invalid hostnames when performing HTTPS requests
90
+ Accept invalid hostnames when performing HTTPS requests.
91
+
92
+ You should think very carefully before using this flag.
93
+
94
+ 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.
95
+
81
96
  --client-timeout <CLIENT_TIMEOUT>
82
- Configure the timeout length (in seconds) when performing HTTP(S) requests [default: 30]
97
+ Configure the timeout length (in seconds) when performing HTTP(S) requests
98
+
99
+ [default: 30]
100
+
83
101
  --skip-update-check
84
102
  Skip checking for newer versions of rover
103
+
85
104
  -h, --help
86
- Print help (see more with '--help')
105
+ Print help (see a summary with '-h')
106
+
87
107
  -V, --version
88
108
  Print version
89
109
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apollo/rover",
3
- "version": "0.11.0",
3
+ "version": "0.12.0",
4
4
  "description": "The new Apollo CLI",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -32,8 +32,8 @@
32
32
  "npm": ">=6"
33
33
  },
34
34
  "volta": {
35
- "node": "18.13.0",
36
- "npm": "9.3.1"
35
+ "node": "18.14.0",
36
+ "npm": "9.4.2"
37
37
  },
38
38
  "homepage": "https://github.com/apollographql/rover#readme",
39
39
  "dependencies": {
@@ -43,6 +43,6 @@
43
43
  "detect-libc": "^2.0.0"
44
44
  },
45
45
  "devDependencies": {
46
- "prettier": "2.8.3"
46
+ "prettier": "2.8.4"
47
47
  }
48
48
  }