@7n/rules 1.49.17 → 1.49.19
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 +12 -0
- package/package.json +2 -2
- package/rules/test/coverage/fix-worker.mjs +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.49.19] - 2026-07-27
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Pin @7n/rules to llm-lib with aligned native addon metadata
|
|
8
|
+
|
|
9
|
+
## [1.49.18] - 2026-07-27
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Preserve independently verified coverage test batches through concern rollback
|
|
14
|
+
|
|
3
15
|
## [1.49.17] - 2026-07-27
|
|
4
16
|
|
|
5
17
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@7n/rules",
|
|
3
|
-
"version": "1.49.
|
|
3
|
+
"version": "1.49.19",
|
|
4
4
|
"description": "CLI еталонних правил і skills (префікс n-): синк у репозиторій, дельта-lint, конформність",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"rename-yaml-extensions": "bun ./bin/n-rules.js rename-yaml-extensions"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@7n/llm-lib": "2.9.
|
|
68
|
+
"@7n/llm-lib": "2.9.9",
|
|
69
69
|
"@7n/mt": "^0.5.1",
|
|
70
70
|
"@zed-industries/agent-client-protocol": "^0.4.5",
|
|
71
71
|
"ajv": "^8.20.0",
|
|
@@ -16,8 +16,9 @@
|
|
|
16
16
|
*
|
|
17
17
|
* Fix-hooks опційні в контракті провайдера — перевірка через `typeof`
|
|
18
18
|
* (assert порту вимагає лише detect/collect/collectPerFile). Хуки отримують
|
|
19
|
-
* FixContext-поля (model/tier/timeoutMs/recordWrite/chain/signal/feedback);
|
|
20
|
-
*
|
|
19
|
+
* FixContext-поля (model/tier/timeoutMs/recordWrite/recordDurableWrite/chain/signal/feedback);
|
|
20
|
+
* обидва write-guard-и прокидаються до кожного hook-а: durable доступний лише
|
|
21
|
+
* coverage provider-у для independently verified mutation batch-а.
|
|
21
22
|
* Coverage-specific cloud rung дає survived-mutant agent batch повний budget:
|
|
22
23
|
* outer runner backstop лишається ×1.25. Один survived batch стартує за rung;
|
|
23
24
|
* решта є deferred telemetry, а не timeout/no-op failure.
|