@agent-teams/repository-mutation 0.0.0 → 0.1.0
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 +25 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#224](https://github.com/agent-teams-ai/engineering-foundation/pull/224) [`4e22962`](https://github.com/agent-teams-ai/engineering-foundation/commit/4e229623ff555b655e7df24f9d1502ec5b968911) Thanks [@777genius](https://github.com/777genius)! - Extract the zero-monorepo-dependency Repository Mutation leaf, cut generic
|
|
8
|
+
callers over to its new-only API, and remove the obsolete Foundation mutation
|
|
9
|
+
facade.
|
|
10
|
+
|
|
11
|
+
- [#230](https://github.com/agent-teams-ai/engineering-foundation/pull/230) [`8c6a252`](https://github.com/agent-teams-ai/engineering-foundation/commit/8c6a252fe36d868bd3757a370b60775ecdafd185) Thanks [@777genius](https://github.com/777genius)! - Compose the document-authoring and scaffolding journal stores over one shared
|
|
12
|
+
journal slot store in Repository Mutation's Node-only mechanism surface. Both owners
|
|
13
|
+
keep their released on-disk names, byte formats, fault phases, crash residue,
|
|
14
|
+
and error wording; only the duplicated candidate, quarantine, retirement, and
|
|
15
|
+
reconciliation mechanics now live in one implementation. The retired
|
|
16
|
+
pretty-printed scaffold journal writer is removed; reading the historical format
|
|
17
|
+
is unchanged.
|
|
18
|
+
|
|
19
|
+
Two deliberate hardenings come with the shared store. A journal file that
|
|
20
|
+
disappears during a proof now reports the owner's "changed" diagnostic instead
|
|
21
|
+
of a raw `ENOENT`. Document authoring now re-proves its candidate immediately
|
|
22
|
+
before hard-linking it into the canonical slot and refuses to report a removal
|
|
23
|
+
as complete when the canonical slot was recreated concurrently, matching what
|
|
24
|
+
scaffolding already guaranteed. Both owners now validate the journal before
|
|
25
|
+
probing slot occupancy, so an invalid journal aimed at an occupied slot reports
|
|
26
|
+
the contract error first.
|
|
27
|
+
|
|
3
28
|
## 0.0.0
|
|
4
29
|
|
|
5
30
|
- Establish the new-only Repository Mutation package boundary.
|
package/package.json
CHANGED