@apollo/rover 0.11.0-rc.2 → 0.11.1

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 +7 -9
  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
@@ -69,17 +71,13 @@ Options:
69
71
  -l, --log <LOG_LEVEL>
70
72
  Specify Rover's log level
71
73
 
72
- --format <FORMAT_TYPE>
74
+ --format <FORMAT_KIND>
73
75
  Specify Rover's format type
74
76
 
75
- [default: plain]
76
77
  [possible values: plain, json]
77
78
 
78
- --output <OUTPUT_TYPE>
79
- Specify Rover's output type
80
-
81
- [default: plain]
82
- [possible values: plain, json, filename]
79
+ -o, --output <OUTPUT_FILE>
80
+ Specify a file to write Rover's output to
83
81
 
84
82
  --insecure-accept-invalid-certs
85
83
  Accept invalid certificates when performing HTTPS requests.
@@ -104,10 +102,10 @@ Options:
104
102
  Skip checking for newer versions of rover
105
103
 
106
104
  -h, --help
107
- Print help information (use `-h` for a summary)
105
+ Print help (see a summary with '-h')
108
106
 
109
107
  -V, --version
110
- Print version information
108
+ Print version
111
109
 
112
110
  Read the getting started guide by running:
113
111
 
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.1",
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
  }