circle-ir-ai 4.0.0 → 4.0.2

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 +15 -0
  2. package/package.json +5 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,21 @@ 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
+ ## [4.0.2] - 2026-08-12
9
+
10
+ ### Changed — bump circle-ir 4.4.0 → 4.5.0
11
+
12
+ Engine pin bump to latest 4.x. No source changes. Single copy verified; typecheck
13
+ clean (no SupportedLanguage exhaustiveness regression), 1801 tests pass. Static
14
+ regression spot-check clean: OWASP 100%, Rust 92.3%, Bash 100%, HTML 100% (all
15
+ match baseline).
16
+
17
+ ## [4.0.1] - 2026-08-11
18
+
19
+ ### Changed — bump circle-ir 4.3.1 → 4.4.0
20
+
21
+ Engine pin bump to the latest 4.x. No circle-ir-ai source changes. 1801 tests pass; single circle-ir copy; C# benchmark unchanged (81.8% TPR — cmdi/xss gaps unchanged, still upstream).
22
+
8
23
  ## [4.0.0] - 2026-08-10
9
24
 
10
25
  ### Major — fleet version alignment to 4.x + C# skill-path (cognium-ai#289)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "circle-ir-ai",
3
- "version": "4.0.0",
3
+ "version": "4.0.2",
4
4
  "description": "LLM-enhanced SAST analysis built on circle-ir",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -64,7 +64,9 @@
64
64
  "benchmark:secrets": "tsx benchmarks/runners/run-secrets.ts",
65
65
  "setup:skills-benchmark": "tsx benchmarks/skills/setup-skills-benchmark.ts",
66
66
  "benchmark:skills": "tsx benchmarks/skills/run-skills-benchmark.ts",
67
- "benchmark:instruction-safety": "tsx benchmarks/instruction-safety/run-benchmark.ts"
67
+ "benchmark:instruction-safety": "tsx benchmarks/instruction-safety/run-benchmark.ts",
68
+ "benchmark:csharp": "tsx benchmarks/runners/run-csharp.ts",
69
+ "benchmark:csharp-juliet": "tsx benchmarks/runners/run-csharp-juliet.ts"
68
70
  },
69
71
  "keywords": [
70
72
  "sast",
@@ -98,7 +100,7 @@
98
100
  "@ax-llm/ax": "^20.0.0",
99
101
  "@cognium/project-profile-detect": "^1.1.0",
100
102
  "@mastra/core": "^1.18.0",
101
- "circle-ir": "4.3.1",
103
+ "circle-ir": "4.5.0",
102
104
  "minimatch": "^10.2.5",
103
105
  "p-queue": "^9.1.0"
104
106
  },