@apollo/rover 0.9.2-rc.1 → 0.10.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 +67 -74
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -36,11 +36,73 @@ rover graph publish --schema ./path-to-valid-schema test@cats
36
36
  ## Command-line options
37
37
 
38
38
  ```console
39
- $ rover --help
40
- Rover 0.9.2-rc.1
41
- Apollo Developers <opensource@apollographql.com>
42
-
39
+ $ rover help
43
40
  Rover - Your Graph Companion
41
+
42
+ Usage: rover [OPTIONS] <COMMAND>
43
+
44
+ Commands:
45
+ config
46
+ Configuration profile commands
47
+ dev
48
+ Combine multiple subgraphs into a local supergraph
49
+ supergraph
50
+ Supergraph schema commands
51
+ graph
52
+ Graph API schema commands
53
+ template
54
+ Commands for working with templates
55
+ readme
56
+ Readme commands
57
+ subgraph
58
+ Subgraph schema commands
59
+ docs
60
+ Interact with Rover's documentation
61
+ update
62
+ Commands related to updating rover
63
+ explain
64
+ Explain error codes
65
+ help
66
+ Print this message or the help of the given subcommand(s)
67
+
68
+ Options:
69
+ -l, --log <LOG_LEVEL>
70
+ Specify Rover's log level
71
+
72
+ --output <OUTPUT_TYPE>
73
+ Specify Rover's output type
74
+
75
+ [default: plain]
76
+ [possible values: plain, json]
77
+
78
+ --insecure-accept-invalid-certs
79
+ Accept invalid certificates when performing HTTPS requests.
80
+
81
+ You should think very carefully before using this flag.
82
+
83
+ 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.
84
+
85
+ --insecure-accept-invalid-hostnames
86
+ Accept invalid hostnames when performing HTTPS requests.
87
+
88
+ You should think very carefully before using this flag.
89
+
90
+ 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.
91
+
92
+ --client-timeout <CLIENT_TIMEOUT>
93
+ Configure the timeout length (in seconds) when performing HTTP(S) requests
94
+
95
+ [default: 30]
96
+
97
+ --skip-update-check
98
+ Skip checking for newer versions of rover
99
+
100
+ -h, --help
101
+ Print help information (use `-h` for a summary)
102
+
103
+ -V, --version
104
+ Print version information
105
+
44
106
  Read the getting started guide by running:
45
107
 
46
108
  $ rover docs open start
@@ -55,82 +117,13 @@ This will prompt you for an API Key that can be generated in Apollo Studio.
55
117
  The most common commands from there are:
56
118
 
57
119
  - rover graph fetch: Fetch a graph schema from the Apollo graph registry
58
- - rover graph check: Check for breaking changes in a local graph schema against a graph schema
59
- in the Apollo graph
120
+ - rover graph check: Check for breaking changes in a local graph schema against a graph schema in the Apollo graph
60
121
  registry
61
122
  - rover graph publish: Publish an updated graph schema to the Apollo graph registry
62
123
 
63
124
  You can open the full documentation for Rover by running:
64
125
 
65
126
  $ rover docs open
66
-
67
- USAGE:
68
- rover [OPTIONS] <SUBCOMMAND>
69
-
70
- OPTIONS:
71
- --client-timeout <CLIENT_TIMEOUT>
72
- Configure the timeout length (in seconds) when performing HTTP(S) requests
73
-
74
- [default: 30]
75
-
76
- -h, --help
77
- Print help information
78
-
79
- --insecure-accept-invalid-certs
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.
87
-
88
- --insecure-accept-invalid-hostnames
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.
96
-
97
- -l, --log <LOG_LEVEL>
98
- Specify Rover's log level
99
-
100
- [possible values: error, warn, info, debug, trace]
101
-
102
- --output <OUTPUT_TYPE>
103
- Specify Rover's output type
104
-
105
- [default: plain]
106
- [possible values: json, plain]
107
-
108
- -V, --version
109
- Print version information
110
-
111
- SUBCOMMANDS:
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
134
127
  ```
135
128
 
136
129
  This repo is organized as a [`cargo` workspace], containing several related projects:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apollo/rover",
3
- "version": "0.9.2-rc.1",
3
+ "version": "0.10.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": "17.5.0",
36
- "npm": "8.15.0"
35
+ "node": "18.12.1",
36
+ "npm": "9.1.1"
37
37
  },
38
38
  "homepage": "https://github.com/apollographql/rover#readme",
39
39
  "dependencies": {