codeam-cli 2.0.2 → 2.1.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 (3) hide show
  1. package/CHANGELOG.md +54 -0
  2. package/dist/index.js +2296 -212
  3. package/package.json +6 -5
package/CHANGELOG.md CHANGED
@@ -4,6 +4,60 @@ All notable changes to `codeam-cli` are documented here.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [2.1.0] — 2026-04-25
8
+
9
+ ### Added
10
+
11
+ - **cli:** Exponential polling backoff with ±10% jitter
12
+ - **cli:** Forward X-Plugin-Auth-Token on /commands/output
13
+
14
+ ### Build
15
+
16
+ - **deps:** Bump com.google.zxing:core in /apps/jetbrains-plugin (#5)
17
+ - **deps:** Bump org.jetbrains.intellij.platform (#6)
18
+ - **deps:** Bump gradle-wrapper in /apps/jetbrains-plugin (#14)
19
+
20
+ ### CI
21
+
22
+ - **jetbrains:** Publish plugin to Marketplace stable channel on tag
23
+
24
+ ### Changed
25
+
26
+ - **cli:** Drop unused token field from WS auth payload
27
+ - **cli:** Zod-validate remote command payloads
28
+
29
+ ### Chore
30
+
31
+ - Ignore .worktrees directory
32
+ - **cli:** Upgrade @clack/prompts to 1.2.0 (ESM bundled via tsup)
33
+ - **deps:** Bump vitest to clear esbuild CVE (GHSA-67mh-4wv8-2f99)
34
+
35
+ ### Documentation
36
+
37
+ - Enforce correct-and-implicit TypeScript typing
38
+
39
+ ### Fixed
40
+
41
+ - **cli:** Pass PTY args as argv array (no shell concatenation)
42
+ - **cli:** Clean up PTY child on SIGINT/SIGTERM
43
+ - **vsc-plugin:** Guard startMonitoring against re-entry; scaffold vitest
44
+
45
+ ## [2.0.2] — 2026-04-23
46
+
47
+ ### Build
48
+
49
+ - **deps:** Bump actions/setup-node from 4 to 6 (#2)
50
+ - **deps:** Bump actions/checkout from 4 to 6 (#1)
51
+ - **deps:** Bump actions/setup-java from 4 to 5 (#3)
52
+
53
+ ### Changed
54
+
55
+ - **workflow:** Commit CHANGELOG updates directly to main, drop PR step (#17)
56
+
57
+ ### Fixed
58
+
59
+ - **workflow:** Grant pull-requests write to release job so changelog PR opens (#16)
60
+
7
61
  ## [2.0.1] — 2026-04-23
8
62
 
9
63
  ### Added