@openvtc/trust-tasks 0.17.5 → 0.17.6
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/dist/auth/step-up/approve-response/0.3/payload.d.ts +887 -0
- package/dist/auth/step-up/approve-response/0.3/payload.d.ts.map +1 -0
- package/dist/auth/step-up/approve-response/0.3/payload.js +505 -0
- package/dist/auth/step-up/approve-response/0.3/payload.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/persona/claim-types/list/1.0/payload.d.ts +772 -0
- package/dist/persona/claim-types/list/1.0/payload.d.ts.map +1 -0
- package/dist/persona/claim-types/list/1.0/payload.js +389 -0
- package/dist/persona/claim-types/list/1.0/payload.js.map +1 -0
- package/package.json +1 -1
- package/src/auth/step-up/approve-response/0.3/payload.ts +594 -0
- package/src/index.ts +2 -0
- package/src/persona/claim-types/list/1.0/payload.ts +590 -0
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,33 @@ The package versions over **its own API** — what a consumer compiles against
|
|
|
11
11
|
not over `SPEC.md`. Below 1.0 a breaking change bumps the leading non-zero
|
|
12
12
|
component.
|
|
13
13
|
|
|
14
|
+
## 0.17.6 — 2026-09-08
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- **auth/step-up/approve-response**: Add a recorded status for a bound approval (#391)
|
|
20
|
+
- **persona/claim-types/list**: Serve the claim-type registry (#390)
|
|
21
|
+
|
|
22
|
+
CLAIM-TYPES.md §6 deferred this until "the first extension type ships". The
|
|
23
|
+
reasoning has not survived contact with the copies: both implementations
|
|
24
|
+
vendored the table, between them they found four holes in it, and each fix
|
|
25
|
+
became a pull request against two repositories that do not own the data. The
|
|
26
|
+
cost being deferred is paid per change, not once.
|
|
27
|
+
|
|
28
|
+
The response carries `unregistered` and `strictness` as REQUIRED, not just the
|
|
29
|
+
entries. §4 rule 3 takes the longest registered prefix and the floor and keeps
|
|
30
|
+
whichever is more protective — a client cannot compute that from entries alone,
|
|
31
|
+
and one that hard-codes the floor or the ordering cannot be tightened by a
|
|
32
|
+
maintainer that raises it.
|
|
33
|
+
|
|
34
|
+
Exact tokens and family prefixes appear undistinguished, because marking them
|
|
35
|
+
would invite a client to walk only one kind — the hole that let a gated family
|
|
36
|
+
be escaped by inventing a member.
|
|
37
|
+
|
|
38
|
+
Authorization is any authenticated caller: the response is a constant, and both
|
|
39
|
+
of the usual answers refuse a caller that legitimately needs it.
|
|
40
|
+
|
|
14
41
|
## 0.17.5 — 2026-09-07
|
|
15
42
|
|
|
16
43
|
|