@fabricorg/ports 0.5.1 → 0.5.2
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 +10 -26
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,35 +1,19 @@
|
|
|
1
1
|
# @fabricorg/ports
|
|
2
2
|
|
|
3
|
+
## 0.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e41c1f5: The 0.5.1 changelog entry narrated the whole seventh-review fix batch, nearly all of which landed in other packages. The only change to this package was a removed comment. The entry is corrected in place; no code changes.
|
|
8
|
+
|
|
3
9
|
## 0.5.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
6
12
|
|
|
7
|
-
- 8436c64:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
means that. An `authority_binding` or `action_version` conflict means the _original_ invocation
|
|
12
|
-
exists and may well have applied — the capture-authority adapter mints a fresh binding on every
|
|
13
|
-
attempt, so a first attempt whose response was lost conflicts with itself on the second. Deleting that
|
|
14
|
-
capture and calling it refused was the worst available answer; it is now surfaced as `unknown` under
|
|
15
|
-
status `conflict_prior_invocation`.
|
|
16
|
-
|
|
17
|
-
**A policy block or validation failure is now `unknown`, not `refused`.** Within one attempt both are
|
|
18
|
-
decided before any effect. On a recovery re-execution the worker skips adapter steps that already
|
|
19
|
-
succeeded, then re-evaluates policy with a fresh clock and re-parses parameters against a possibly
|
|
20
|
-
newer action, and either can flip after effects committed. Unlike the authority path, the host
|
|
21
|
-
persists no execution reason for these, so the client cannot tell first delivery from recovery; it
|
|
22
|
-
errs toward a person checking. The precise fix is for the host to persist `executionReason` on failed
|
|
23
|
-
invocations, which is a store change and is recorded rather than attempted here.
|
|
24
|
-
|
|
25
|
-
**`failed` means "never delivered" again.** A store fault after a successful delivery was being counted
|
|
26
|
-
in it; it now lives only in `storeFailures`. The 0.3.0 changelog's disclosure misdescribed what 0.2.0
|
|
27
|
-
had changed — `parked` never shipped as a count; only `expired` did — and it is corrected in place.
|
|
28
|
-
|
|
29
|
-
Every validation pass now sees a duplicated contract once, so one root cause produces one finding
|
|
30
|
-
rather than one per copy. `deriveAuthorizationGrants` no longer emits a reference for an intent whose
|
|
31
|
-
action the contract does not declare, matching what promotion resolves. A superseded comment above
|
|
32
|
-
`PORT_ID` that asserted the claim the fix retracted is removed.
|
|
13
|
+
- 8436c64: Removed a superseded comment above `PORT_ID` that asserted the claim the previous release
|
|
14
|
+
had retracted. Nothing else in this package changed. The entry originally published here narrated
|
|
15
|
+
the whole seventh-review fix batch, most of which landed in `@fabricorg/experience-runtime` and
|
|
16
|
+
`@fabricorg/sdui-release`; it is corrected in place.
|
|
33
17
|
|
|
34
18
|
## 0.5.0
|
|
35
19
|
|
package/package.json
CHANGED