wgc 0.68.4 → 0.68.5

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 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -20,6 +20,13 @@ npx wgc --help
20
20
  npm install -g wgc --help
21
21
  ```
22
22
 
23
+ ### Telemetry
24
+
25
+ The CLI tool collects anonymous usage data to improve the tool. You can disable this by setting this variable in accordance to the [Console Do Not Track](https://consoledonottrack.com/) standard:
26
+ ```shell
27
+ export DO_NOT_TRACK=1
28
+ ```
29
+
23
30
  ### Development
24
31
 
25
32
  Ensure that at least Node.js 20.6.0 is installed because we rely on the native .env file support.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wgc",
3
- "version": "0.68.4",
3
+ "version": "0.68.5",
4
4
  "description": "The official CLI tool to manage the GraphQL Federation Platform Cosmo",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -39,6 +39,7 @@
39
39
  "@connectrpc/connect": "^1.4.0",
40
40
  "@connectrpc/connect-node": "^1.4.0",
41
41
  "@graphql-tools/utils": "^10.2.2",
42
+ "@scarf/scarf": "^1.3.0",
42
43
  "@wundergraph/composition": "0.29.4",
43
44
  "@wundergraph/cosmo-connect": "0.85.1",
44
45
  "@wundergraph/cosmo-shared": "0.31.20",
@@ -81,5 +82,5 @@
81
82
  "typescript": "5.5.2",
82
83
  "vitest": "^2.0.3"
83
84
  },
84
- "gitHead": "def31da40cf4d735d2c744e859df0f72a07a2a66"
85
+ "gitHead": "9382a3ad937f3a0b9c5229e8dd6d6ffbdd113362"
85
86
  }