circle-ir-ai 2.13.1 → 2.13.3

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/CHANGELOG.md +49 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,55 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.13.3] - 2026-06-21
9
+
10
+ ### Changed — bump circle-ir 3.85.0 → 3.85.1
11
+
12
+ Hotfix pickup. Resolves the 4-gate hardcoded-credential-entropy perf
13
+ regression filed in cogniumhq/cognium-dev#126 — top-20 Java OSS harness
14
+ hit 2.7×–14.5× scan-time slowdowns + 30-min timeouts on string-constant-heavy
15
+ files (gson, Hystrix, openapi-generator, hutool) on 3.85.0, while
16
+ zxing was unaffected. Heterogeneity localised the bottleneck to Gate 3's
17
+ string-array constant-table span walker. 3.85.1 ships the engine-side
18
+ fix; entropy FP elimination from 3.85.0 is preserved.
19
+
20
+ Verification:
21
+ - `npm run typecheck` clean
22
+ - `npm test` — no regressions
23
+
24
+ No source changes in this package; effect is fully delivered by the
25
+ upstream walker fix in circle-ir.
26
+
27
+ ## [2.13.2] - 2026-06-20
28
+
29
+ ### Changed — bump circle-ir 3.84.0 → 3.85.0
30
+
31
+ Picks up circle-ir@3.85.0 which lands the 4-gate context-aware
32
+ entropy detector (cogniumhq/cognium-dev#125 — closed by elarasu).
33
+
34
+ Net effect on the testharness top-20 Java OSS corpus:
35
+
36
+ | Pattern | Before | After |
37
+ |---|---|---|
38
+ | PlantUML `@Original(key=…)` annotations | ~530 FPs | 0 (Gate 1: annotation-arg span) |
39
+ | hutool SolarTerms astronomical-data array | 36 FPs | 0 (Gate 3: string-array constant table) |
40
+ | Base64 CSS resource blobs | 110 FPs | 0 (Gate 4: field-name strengthening) |
41
+ | PSystemDonors public-display strings | 24 FPs | 0 (Gate 4) |
42
+ | Base32/Base58 public alphabet | 8 FPs | 0 (Gate 4) |
43
+ | **Entropy-layer FPs eliminated** | **708 / 762** | **0** |
44
+
45
+ Provider-pattern recall (AWS AKIA, GitHub `ghp_`, Stripe `sk_live_`,
46
+ OpenAI `sk-`, Anthropic `sk-ant-`, JWT, PEM, etc.) and the named-credential
47
+ matcher (`isLikelyCredentialAssignment`) are unaffected — both run on
48
+ separate detector layers from the gated entropy layer.
49
+
50
+ Verification:
51
+ - `npm run typecheck` clean
52
+ - `npm test` — 848 passed + 3 skipped (no regressions vs 2.13.1)
53
+
54
+ No source changes in this package; effect is fully delivered by the
55
+ upstream entropy-pass refactor in circle-ir.
56
+
8
57
  ## [2.13.1] - 2026-06-20
9
58
 
10
59
  ### Changed — bump circle-ir 3.82.0 → 3.84.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "circle-ir-ai",
3
- "version": "2.13.1",
3
+ "version": "2.13.3",
4
4
  "description": "LLM-enhanced SAST analysis built on circle-ir",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -95,7 +95,7 @@
95
95
  "dependencies": {
96
96
  "@ax-llm/ax": "^20.0.0",
97
97
  "@mastra/core": "^1.18.0",
98
- "circle-ir": "3.84.0",
98
+ "circle-ir": "3.85.1",
99
99
  "minimatch": "^10.2.5",
100
100
  "p-queue": "^9.1.0"
101
101
  },