@panaversity/ksor 0.0.8 → 0.0.9
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 +19 -0
- package/dist/cli.mjs +1498 -1490
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @panaversity/ksor
|
|
2
2
|
|
|
3
|
+
## 0.0.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f5ad207: A refused `ksor ingest --flip` no longer publishes.
|
|
8
|
+
|
|
9
|
+
The governance gate added in 0.0.8 ran _after_ the build, and the build had
|
|
10
|
+
already flipped — so an ingest into a state no surface can serve reported the
|
|
11
|
+
problem, exited 1, and left the record's active pointer moved to the generation
|
|
12
|
+
it had just refused. The shrink guard does the opposite and always has: it
|
|
13
|
+
refuses inside the build and leaves the old generation serving.
|
|
14
|
+
|
|
15
|
+
`ingest` now builds without flipping, runs the gate against the new generation,
|
|
16
|
+
and activates only if it passes. A refusal says what was left behind and that
|
|
17
|
+
the previous generation still serves; `ksor gc` reaps the abandoned one.
|
|
18
|
+
|
|
19
|
+
Found by running the real 0.0.8 package against a live Neon database rather
|
|
20
|
+
than by reading the code.
|
|
21
|
+
|
|
3
22
|
## 0.0.8
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|