@agent-teams/repository-mutation 0.0.0 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#257](https://github.com/agent-teams-ai/engineering-foundation/pull/257) [`c99caa1`](https://github.com/agent-teams-ai/engineering-foundation/commit/c99caa1a785cfc7c876c79bf6934e228555e6afd) Thanks [@777genius](https://github.com/777genius)! - Publish a coordinated patch wave to obtain a new release provenance origin for managed Cohort qualification, preserving existing package behavior and exact internal dependency alignment.
8
+
9
+ ## 0.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#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
14
+ callers over to its new-only API, and remove the obsolete Foundation mutation
15
+ facade.
16
+
17
+ - [#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
18
+ journal slot store in Repository Mutation's Node-only mechanism surface. Both owners
19
+ keep their released on-disk names, byte formats, fault phases, crash residue,
20
+ and error wording; only the duplicated candidate, quarantine, retirement, and
21
+ reconciliation mechanics now live in one implementation. The retired
22
+ pretty-printed scaffold journal writer is removed; reading the historical format
23
+ is unchanged.
24
+
25
+ Two deliberate hardenings come with the shared store. A journal file that
26
+ disappears during a proof now reports the owner's "changed" diagnostic instead
27
+ of a raw `ENOENT`. Document authoring now re-proves its candidate immediately
28
+ before hard-linking it into the canonical slot and refuses to report a removal
29
+ as complete when the canonical slot was recreated concurrently, matching what
30
+ scaffolding already guaranteed. Both owners now validate the journal before
31
+ probing slot occupancy, so an invalid journal aimed at an occupied slot reports
32
+ the contract error first.
33
+
3
34
  ## 0.0.0
4
35
 
5
36
  - Establish the new-only Repository Mutation package boundary.
package/package.json CHANGED
@@ -48,5 +48,5 @@
48
48
  },
49
49
  "sideEffects": false,
50
50
  "type": "module",
51
- "version": "0.0.0"
51
+ "version": "0.1.1"
52
52
  }