circle-ir-ai 2.8.6 → 2.8.8
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 +27 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,33 @@ 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.8.8] - 2026-06-11
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Upgrade `circle-ir` from `^3.33.0` to `^3.34.0`** — picks up
|
|
13
|
+
Phase 3 of the Runtime Registration Extraction initiative: Rust
|
|
14
|
+
trait dispatch. The engine's `ir.runtime_registrations` field now
|
|
15
|
+
captures `impl Trait for Type` blocks (per-method), `inventory::submit!`
|
|
16
|
+
macros, and `#[linkme::distributed_slice]` attributes alongside the
|
|
17
|
+
Python (3.33.0) and JS/TS (≤3.32.0) phases. Downstream consumers
|
|
18
|
+
(e.g. the dead-code reachability scanner) can now treat
|
|
19
|
+
`kind === 'trait_impl'` handlers as virtual entry roots — addresses
|
|
20
|
+
the Rust-side of cogniumhq/circle-ir-ai#57 once the LLM-pass layer
|
|
21
|
+
is updated to consume the new field. No source changes required in
|
|
22
|
+
this package; pure engine bump. Typecheck ✓, build ✓, 556/556 tests
|
|
23
|
+
pass against the new engine.
|
|
24
|
+
|
|
25
|
+
## [2.8.7] - 2026-06-10
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- **Upgrade `circle-ir` from `^3.27.1` to `^3.33.0`** — picks up
|
|
30
|
+
6 minor engine versions (3.28.0 through 3.33.0) published on
|
|
31
|
+
2026-06-10. Typecheck ✓, build ✓, 556/556 tests pass against the
|
|
32
|
+
new engine with no source changes required (no breaking API
|
|
33
|
+
surface in the bump).
|
|
34
|
+
|
|
8
35
|
## [2.8.6] - 2026-06-10
|
|
9
36
|
|
|
10
37
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "circle-ir-ai",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.8",
|
|
4
4
|
"description": "LLM-enhanced SAST analysis built on circle-ir",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"dependencies": {
|
|
95
95
|
"@ax-llm/ax": "^20.0.0",
|
|
96
96
|
"@mastra/core": "^1.18.0",
|
|
97
|
-
"circle-ir": "^3.
|
|
97
|
+
"circle-ir": "^3.34.0",
|
|
98
98
|
"minimatch": "^10.2.5",
|
|
99
99
|
"p-queue": "^9.1.0"
|
|
100
100
|
},
|