@apollo/rover 0.3.0 → 0.4.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 (3) hide show
  1. package/LICENSE +6 -0
  2. package/README.md +33 -15
  3. package/package.json +10 -6
package/LICENSE CHANGED
@@ -1,3 +1,9 @@
1
+ Copyright 2021 Apollo Graph, Inc.
2
+
3
+ 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.
4
+
5
+ --------------------------------------------------------------------------------
6
+
1
7
  MIT License
2
8
 
3
9
  Copyright (c) 2021 Apollo Graph, Inc.
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.3.0
40
+ Rover 0.4.0
41
41
 
42
42
  Rover - Your Graph Companion
43
43
  Read the getting started guide by running:
@@ -66,23 +66,43 @@ USAGE:
66
66
  rover [FLAGS] [OPTIONS] <SUBCOMMAND>
67
67
 
68
68
  FLAGS:
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
69
+ --insecure-accept-invalid-certs
70
+ Accept invalid certificates when performing HTTPS requests.
71
+
72
+ You should think very carefully before using this flag.
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
+
73
89
 
74
90
  OPTIONS:
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]
91
+ --client-timeout <client-timeout>
92
+ Configure the timeout length (in seconds) when performing HTTP(S) requests [default: 30]
93
+
94
+ -l, --log <log-level>
95
+ Specify Rover's log level [possible values: error, warn, info, debug,
96
+ trace]
97
+ --output <output-type>
98
+ Specify Rover's output type [default: plain] [possible values: json, plain]
99
+
81
100
 
82
101
  SUBCOMMANDS:
83
102
  config Configuration profile commands
84
103
  docs Interact with Rover's documentation
85
104
  explain Explain error codes
105
+ fed2 Federation 2 Alpha commands
86
106
  graph Graph API schema commands
87
107
  help Prints this message or the help of the given subcommand(s)
88
108
  subgraph Subgraph schema commands
@@ -178,8 +198,6 @@ From here you can either place the binary in your `PATH` manually, or run `./tar
178
198
 
179
199
  See [this page](https://go.apollo.dev/r/contributing) for info about contributing to Rover.
180
200
 
181
- ## License
182
-
183
- This project is licensed under the MIT License ([LICENSE] or https://opensource.org/licenses/MIT).
201
+ ## Licensing
184
202
 
185
- [LICENSE]: https://github.com/apollographql/rover/blob/main/LICENSE
203
+ 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apollo/rover",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "The new Apollo CLI",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -27,6 +27,14 @@
27
27
  "bugs": {
28
28
  "url": "https://github.com/apollographql/rover/issues"
29
29
  },
30
+ "engines": {
31
+ "node": ">=14 <15",
32
+ "npm": "7.x"
33
+ },
34
+ "volta": {
35
+ "node": "14.18.1",
36
+ "npm": "7.24.2"
37
+ },
30
38
  "homepage": "https://github.com/apollographql/rover#readme",
31
39
  "dependencies": {
32
40
  "binary-install": "^0.1.1",
@@ -34,10 +42,6 @@
34
42
  "detect-libc": "^1.0.3"
35
43
  },
36
44
  "devDependencies": {
37
- "prettier": "^2.3.0"
38
- },
39
- "volta": {
40
- "node": "16.9.1",
41
- "npm": "7.24.0"
45
+ "prettier": "2.4.1"
42
46
  }
43
47
  }