@openvtc/trust-tasks 0.17.2 → 0.17.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/package.json +1 -1
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.3 — 2026-09-07
15
+
16
+
17
+ ### Specifications
18
+
19
+ - **persona**: Say what a mask does at its two edges (#380)
20
+
21
+ Two clients implemented this table independently and both met the same two
22
+ questions, neither of which `maskStyles` answered.
23
+
24
+ **A value shorter than the tail a style keeps.** `last4` of a four-character
25
+ value is the value — a four-digit card number printed whole is not a masked card
26
+ number. Both clients masked in full. Now stated.
27
+
28
+ **Whether a mask tracks the value's length.** Both drew a fixed run, and the
29
+ reasoning is worth keeping rather than rediscovering: a run of one character per
30
+ character hidden publishes the length of a passport number, a date of birth or a
31
+ card, which is what the mask was drawn to withhold and is often enough to
32
+ identify the format on its own. The exact width is the client's; that it does
33
+ not vary with the value is not.
34
+
35
+ They guessed alike, which is luck rather than a specification — and the third
36
+ implementation is the one that would have differed.
37
+
38
+ Also stated for `emailLocal`: a value with no local part or no `@` is masked in
39
+ full rather than guessed at.
40
+
14
41
  ## 0.17.2 — 2026-09-07
15
42
 
16
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openvtc/trust-tasks",
3
- "version": "0.17.2",
3
+ "version": "0.17.3",
4
4
  "description": "Generated TypeScript bindings for the Trust Tasks framework registry.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",