@forge/cli-shared 8.23.0-next.9 → 8.23.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/CHANGELOG.md +70 -0
- package/out/graphql/graphql-types.d.ts +245 -92
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +79 -40
- package/out/graphql/minimal-graphql-runner.d.ts +3 -3
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +7 -7
- package/out/shared/forge-cli-attribution.d.ts +11 -1
- package/out/shared/forge-cli-attribution.d.ts.map +1 -1
- package/out/shared/forge-cli-attribution.js +113 -2
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,75 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.23.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 30060eb: Emit `isAgent`/`isCI` on GASv3 analytics events via a new shared `ForgeCliAttribution` class, used by both the `atl-attribution` GraphQL header and analytics client.
|
|
8
|
+
- 369bc9b: `ForgeCliAttribution.agentHint()` now delegates agent detection to [`@vercel/detect-agent`](https://www.npmjs.com/package/@vercel/detect-agent), expanding coverage and replacing the previous brittle PATH-based heuristic. The set of recognised agents is defined by the upstream library. Rovo Dev and Windsurf are still detected directly within `ForgeCliAttribution` and take precedence over the library's result. `agentHint()` and `build()` are now `async` and must be `await`ed by callers.
|
|
9
|
+
- 3bbb9da: Extend `ForgeCliAttribution` to emit additional fields on the `atl-attribution` GraphQL header and GASv3 analytics events: `skillName`, `agentHint` (auto-detects rovo-dev, claude-code, cursor, codex, antigravity, opencode, windsurf, gemini, github-copilot), and `isStudio`. All three are sourced from reserved `ATL_FORGE_ATTRIBUTION_*` env vars with input validation. Adds a generic `ATL_FORGE_ATTRIBUTION_<KEY>` wildcard pass-through so additional attribution fields can be supplied via environment variables (with key/value validation and reserved-field protection)
|
|
10
|
+
- 808adbd: Grouped commands in CLI help and commander.js version bump
|
|
11
|
+
- e2113b4: introduce `--skipRollout` for `forge deploy`
|
|
12
|
+
- a885062: Support a limit parameter in the version bulk-upgrade start command
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 84d9930: adding option to include installation-id for uninstall flow
|
|
17
|
+
- 2c85db9: Add option to create global app
|
|
18
|
+
- ef0434d: Added support for multi-entry resources in UI Kit applications, enabling developers to define multiple entry points within a single resource.
|
|
19
|
+
- Updated dependencies [1eded6e]
|
|
20
|
+
- Updated dependencies [0e45239]
|
|
21
|
+
- Updated dependencies [e6a3ab2]
|
|
22
|
+
- Updated dependencies [cf7000f]
|
|
23
|
+
- Updated dependencies [d660fb0]
|
|
24
|
+
- Updated dependencies [e7b0684]
|
|
25
|
+
- Updated dependencies [f7c39e1]
|
|
26
|
+
- Updated dependencies [8d90f4f]
|
|
27
|
+
- Updated dependencies [bf76c3c]
|
|
28
|
+
- Updated dependencies [ef0434d]
|
|
29
|
+
- Updated dependencies [55991a3]
|
|
30
|
+
- Updated dependencies [e5b5031]
|
|
31
|
+
- Updated dependencies [2e44a71]
|
|
32
|
+
- Updated dependencies [489c6d0]
|
|
33
|
+
- Updated dependencies [c775d3d]
|
|
34
|
+
- Updated dependencies [c99451e]
|
|
35
|
+
- Updated dependencies [f80e7b3]
|
|
36
|
+
- @forge/manifest@12.8.0
|
|
37
|
+
|
|
38
|
+
## 8.23.0-next.13
|
|
39
|
+
|
|
40
|
+
### Patch Changes
|
|
41
|
+
|
|
42
|
+
- Updated dependencies [489c6d0]
|
|
43
|
+
- @forge/manifest@12.8.0-next.10
|
|
44
|
+
|
|
45
|
+
## 8.23.0-next.12
|
|
46
|
+
|
|
47
|
+
### Minor Changes
|
|
48
|
+
|
|
49
|
+
- e2113b4: introduce `--skipRollout` for `forge deploy`
|
|
50
|
+
|
|
51
|
+
## 8.23.0-next.11
|
|
52
|
+
|
|
53
|
+
### Minor Changes
|
|
54
|
+
|
|
55
|
+
- 369bc9b: `ForgeCliAttribution.agentHint()` now delegates agent detection to [`@vercel/detect-agent`](https://www.npmjs.com/package/@vercel/detect-agent), expanding coverage and replacing the previous brittle PATH-based heuristic. The set of recognised agents is defined by the upstream library. Rovo Dev and Windsurf are still detected directly within `ForgeCliAttribution` and take precedence over the library's result. `agentHint()` and `build()` are now `async` and must be `await`ed by callers.
|
|
56
|
+
|
|
57
|
+
### Patch Changes
|
|
58
|
+
|
|
59
|
+
- Updated dependencies [e5b5031]
|
|
60
|
+
- @forge/manifest@12.8.0-next.9
|
|
61
|
+
|
|
62
|
+
## 8.23.0-next.10
|
|
63
|
+
|
|
64
|
+
### Minor Changes
|
|
65
|
+
|
|
66
|
+
- 3bbb9da: Extend `ForgeCliAttribution` to emit additional fields on the `atl-attribution` GraphQL header and GASv3 analytics events: `skillName`, `agentHint` (auto-detects rovo-dev, claude-code, cursor, codex, antigravity, opencode, windsurf, gemini, github-copilot), and `isStudio`. All three are sourced from reserved `ATL_FORGE_ATTRIBUTION_*` env vars with input validation. Adds a generic `ATL_FORGE_ATTRIBUTION_<KEY>` wildcard pass-through so additional attribution fields can be supplied via environment variables (with key/value validation and reserved-field protection)
|
|
67
|
+
|
|
68
|
+
### Patch Changes
|
|
69
|
+
|
|
70
|
+
- Updated dependencies [bf76c3c]
|
|
71
|
+
- @forge/manifest@12.8.0-next.8
|
|
72
|
+
|
|
3
73
|
## 8.23.0-next.9
|
|
4
74
|
|
|
5
75
|
### Minor Changes
|