@apollo/rover 0.11.0-rc.2 → 0.11.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 +11 -33
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -44,6 +44,8 @@ Usage: rover [OPTIONS] <COMMAND>
44
44
  Commands:
45
45
  config
46
46
  Configuration profile commands
47
+ contract
48
+ Contract configuration commands
47
49
  dev
48
50
  Combine multiple subgraphs into a local supergraph
49
51
  supergraph
@@ -68,46 +70,22 @@ Commands:
68
70
  Options:
69
71
  -l, --log <LOG_LEVEL>
70
72
  Specify Rover's log level
71
-
72
- --format <FORMAT_TYPE>
73
- Specify Rover's format type
74
-
75
- [default: plain]
76
- [possible values: plain, json]
77
-
78
- --output <OUTPUT_TYPE>
79
- Specify Rover's output type
80
-
81
- [default: plain]
82
- [possible values: plain, json, filename]
83
-
73
+ --format <FORMAT_KIND>
74
+ Specify Rover's format type [possible values: plain, json]
75
+ -o, --output <OUTPUT_FILE>
76
+ Specify a file to write Rover's output to
84
77
  --insecure-accept-invalid-certs
85
- Accept invalid certificates when performing HTTPS requests.
86
-
87
- You should think very carefully before using this flag.
88
-
89
- 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.
90
-
78
+ Accept invalid certificates when performing HTTPS requests
91
79
  --insecure-accept-invalid-hostnames
92
- Accept invalid hostnames when performing HTTPS requests.
93
-
94
- You should think very carefully before using this flag.
95
-
96
- 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.
97
-
80
+ Accept invalid hostnames when performing HTTPS requests
98
81
  --client-timeout <CLIENT_TIMEOUT>
99
- Configure the timeout length (in seconds) when performing HTTP(S) requests
100
-
101
- [default: 30]
102
-
82
+ Configure the timeout length (in seconds) when performing HTTP(S) requests [default: 30]
103
83
  --skip-update-check
104
84
  Skip checking for newer versions of rover
105
-
106
85
  -h, --help
107
- Print help information (use `-h` for a summary)
108
-
86
+ Print help (see more with '--help')
109
87
  -V, --version
110
- Print version information
88
+ Print version
111
89
 
112
90
  Read the getting started guide by running:
113
91
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apollo/rover",
3
- "version": "0.11.0-rc.2",
3
+ "version": "0.11.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.12.1",
36
- "npm": "9.1.3"
35
+ "node": "18.13.0",
36
+ "npm": "9.3.1"
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.0"
46
+ "prettier": "2.8.3"
47
47
  }
48
48
  }