@apollo/rover 0.11.0-rc.1 → 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 -27
  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,40 +70,22 @@ Commands:
68
70
  Options:
69
71
  -l, --log <LOG_LEVEL>
70
72
  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
-
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
78
77
  --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
-
78
+ Accept invalid certificates when performing HTTPS requests
85
79
  --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
-
80
+ Accept invalid hostnames when performing HTTPS requests
92
81
  --client-timeout <CLIENT_TIMEOUT>
93
- Configure the timeout length (in seconds) when performing HTTP(S) requests
94
-
95
- [default: 30]
96
-
82
+ Configure the timeout length (in seconds) when performing HTTP(S) requests [default: 30]
97
83
  --skip-update-check
98
84
  Skip checking for newer versions of rover
99
-
100
85
  -h, --help
101
- Print help information (use `-h` for a summary)
102
-
86
+ Print help (see more with '--help')
103
87
  -V, --version
104
- Print version information
88
+ Print version
105
89
 
106
90
  Read the getting started guide by running:
107
91
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apollo/rover",
3
- "version": "0.11.0-rc.1",
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
  }