@statedelta-actions/rules 0.5.3 → 0.5.5
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 +22 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @statedelta-actions/rules
|
|
2
2
|
|
|
3
|
+
## 0.5.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [1d4571b]
|
|
8
|
+
- @statedelta-actions/actions@0.10.0
|
|
9
|
+
|
|
10
|
+
## 0.5.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Remove JIT genérico (`buildDirectiveExecutor`) — interpreter assume como `_directiveExecutor` em todos os modos.
|
|
15
|
+
|
|
16
|
+
**Bug fix:** `engine.runDirectives` em mode `"jit"` ou após auto-promote em `"auto"` deixava de tratar diretivas reservadas (`const`/`let`/`return`/`throw`/`if`), `as`, `halt`, `catch`, e chamava `resolve(ctx)` sem `scope`. Sub-blocos de handlers com `subDirectives` (ex: `simulate`) perdiam `data`, bindings e refs léxicas silenciosamente. Interpreter passa a cobrir todos os caminhos com SSOT.
|
|
17
|
+
|
|
18
|
+
**Breaking de surface (actions, sdk):** exports públicos `buildDirectiveExecutor` e `GeneratedDirectiveExecutor` removidos.
|
|
19
|
+
|
|
20
|
+
**Decisão arquitetural:** ADR-031 documenta o JIT genérico como `Deferred` — reabrir só com benchmark mostrando gargalo real no `_directiveExecutor`.
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @statedelta-actions/actions@0.9.0
|
|
24
|
+
|
|
3
25
|
## 0.5.3
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@statedelta-actions/rules",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "Rule evaluation engine with JIT-optimized sequential evaluation and sub-rules",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"statedelta",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@statedelta-actions/core": "0.6.0",
|
|
30
|
-
"@statedelta-actions/actions": "0.
|
|
30
|
+
"@statedelta-actions/actions": "0.10.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"apex-store": "0.4.0"
|