circle-ir-ai 2.13.2 → 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 +19 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,25 @@ 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
+
8
27
  ## [2.13.2] - 2026-06-20
9
28
 
10
29
  ### Changed — bump circle-ir 3.84.0 → 3.85.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "circle-ir-ai",
3
- "version": "2.13.2",
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.85.0",
98
+ "circle-ir": "3.85.1",
99
99
  "minimatch": "^10.2.5",
100
100
  "p-queue": "^9.1.0"
101
101
  },