attenu-guard 0.7.0 → 0.7.1
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 +5 -0
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/version.d.ts +1 -1
- package/dist/esm/version.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ Versions follow semantic versioning.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.7.1] - 2026-09-03
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Vendored bundle interop vectors updated to revision `bundle_vectors_v1.2` — five appended cases: `valid_bundle_v2_literal` (the root holds `{crm.read, mail.send}`, so the child's scopes are a literal subset) and, derived from it, `reject_increased_ttl_literal`, `reject_loosened_ceiling_literal`, `reject_null_ttl_literal`, `reject_omitted_ceiling_literal`. The v1.1 ttl/ceiling rows are rejected by a verifier that compares scope lists literally and never checks ttl or ceilings (0.6.0 was one), for a scope reason at the declared position, so they never discriminated it; the four new rows can fail only on the dimension they are about. `version` stays `bundle_vectors_v1`; no case changed
|
|
13
|
+
|
|
9
14
|
## [0.7.0] - 2026-09-03
|
|
10
15
|
|
|
11
16
|
### Fixed
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* itself imported BY index.ts, so index.ts cannot be the source: `guard.ts -> index.ts ->
|
|
7
7
|
* guard.ts` would be circular. A one-constant leaf module has nothing to be circular with.
|
|
8
8
|
*/
|
|
9
|
-
export declare const VERSION = "0.7.
|
|
9
|
+
export declare const VERSION = "0.7.1";
|
|
10
10
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/cjs/version.js
CHANGED
|
@@ -9,5 +9,5 @@ exports.VERSION = void 0;
|
|
|
9
9
|
* itself imported BY index.ts, so index.ts cannot be the source: `guard.ts -> index.ts ->
|
|
10
10
|
* guard.ts` would be circular. A one-constant leaf module has nothing to be circular with.
|
|
11
11
|
*/
|
|
12
|
-
exports.VERSION = "0.7.
|
|
12
|
+
exports.VERSION = "0.7.1";
|
|
13
13
|
//# sourceMappingURL=version.js.map
|
package/dist/esm/version.d.ts
CHANGED
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* itself imported BY index.ts, so index.ts cannot be the source: `guard.ts -> index.ts ->
|
|
7
7
|
* guard.ts` would be circular. A one-constant leaf module has nothing to be circular with.
|
|
8
8
|
*/
|
|
9
|
-
export declare const VERSION = "0.7.
|
|
9
|
+
export declare const VERSION = "0.7.1";
|
|
10
10
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/esm/version.js
CHANGED
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* itself imported BY index.ts, so index.ts cannot be the source: `guard.ts -> index.ts ->
|
|
7
7
|
* guard.ts` would be circular. A one-constant leaf module has nothing to be circular with.
|
|
8
8
|
*/
|
|
9
|
-
export const VERSION = "0.7.
|
|
9
|
+
export const VERSION = "0.7.1";
|
|
10
10
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "attenu-guard",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Attenu Guard for TypeScript: enforces per-agent permissions on every tool call and sub-agent handoff — a sub-agent never holds more than its parent — and writes a hash-chained audit log you verify offline. Same bundle format as the Python library.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Attenu",
|