clerk 3.0.2-canary.8a21012 → 3.1.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.
- package/README.md +15 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -44,6 +44,7 @@ Commands:
|
|
|
44
44
|
impersonate|imp [options] [user] Impersonate a Clerk user
|
|
45
45
|
env Manage environment variables
|
|
46
46
|
config Manage instance configuration
|
|
47
|
+
telemetry Control CLI usage telemetry (status, disable, enable)
|
|
47
48
|
enable Enable Clerk features on the linked instance
|
|
48
49
|
disable Disable Clerk features on the linked instance
|
|
49
50
|
api [options] [endpoint] [filter] Make authenticated requests to the Clerk API
|
|
@@ -56,3 +57,17 @@ Commands:
|
|
|
56
57
|
help [command] Display help for command
|
|
57
58
|
bird Play Clerk Bird, a Flappy Bird game in your terminal
|
|
58
59
|
```
|
|
60
|
+
|
|
61
|
+
## Telemetry
|
|
62
|
+
|
|
63
|
+
The Clerk CLI collects usage telemetry: command name, flag names, duration, outcome,
|
|
64
|
+
environment signals (OS, install method, terminal), a random machine identifier — and
|
|
65
|
+
your workspace and app IDs when a project is linked. It never collects command
|
|
66
|
+
arguments, option values, file paths, or personal data. The first run only shows a
|
|
67
|
+
disclosure notice and sends nothing (CI environments send from the first run), and
|
|
68
|
+
`clerk --verbose` prints every event before it is sent.
|
|
69
|
+
See https://clerk.com/docs/telemetry for details.
|
|
70
|
+
|
|
71
|
+
Opt out with `clerk telemetry disable`, or by setting `CLERK_TELEMETRY_DISABLED=1`
|
|
72
|
+
(the standard `DO_NOT_TRACK=1` also works). `clerk telemetry status` shows the
|
|
73
|
+
effective state and why.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clerk",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "Clerk CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"authentication",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"node": ">=20.0.0"
|
|
31
31
|
},
|
|
32
32
|
"optionalDependencies": {
|
|
33
|
-
"@clerk/cli-darwin-arm64": "3.0
|
|
34
|
-
"@clerk/cli-darwin-x64": "3.0
|
|
35
|
-
"@clerk/cli-linux-arm64": "3.0
|
|
36
|
-
"@clerk/cli-linux-arm64-musl": "3.0
|
|
37
|
-
"@clerk/cli-linux-x64": "3.0
|
|
38
|
-
"@clerk/cli-linux-x64-musl": "3.0
|
|
39
|
-
"@clerk/cli-win32-arm64": "3.0
|
|
40
|
-
"@clerk/cli-win32-x64": "3.0
|
|
33
|
+
"@clerk/cli-darwin-arm64": "3.1.0",
|
|
34
|
+
"@clerk/cli-darwin-x64": "3.1.0",
|
|
35
|
+
"@clerk/cli-linux-arm64": "3.1.0",
|
|
36
|
+
"@clerk/cli-linux-arm64-musl": "3.1.0",
|
|
37
|
+
"@clerk/cli-linux-x64": "3.1.0",
|
|
38
|
+
"@clerk/cli-linux-x64-musl": "3.1.0",
|
|
39
|
+
"@clerk/cli-win32-arm64": "3.1.0",
|
|
40
|
+
"@clerk/cli-win32-x64": "3.1.0"
|
|
41
41
|
}
|
|
42
42
|
}
|