mammoth 1.5.1 → 1.5.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/README.md +10 -0
- data/lib/mammoth/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 46b595362901f1421a5859f5bf085eba22ea1cd611d727d957fc652c6fd9716d
|
|
4
|
+
data.tar.gz: a3a0cf5f02e354913f93043af7301016ff708e802f44098aa833cd38e7860bf5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b27e4e3cfca6c73f5a9965847a5423838dae7b178e84ae4cc8a126fe899b3a987f5da5b50c8d8e1cf25d7c698d4fdb26b9f8f3c4a70d1fef98068c126c8edffd
|
|
7
|
+
data.tar.gz: 011eddde2e7573e675d10cb87ffdd0a5da02d330b2575ac58c1f13500649fd18811076554e2c0e49de21b20f30b1f9bc92b2ada1d01ec69a69a6b0ac61ebda49
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,24 @@
|
|
|
6
6
|
|
|
7
7
|
## Unreleased
|
|
8
8
|
|
|
9
|
+
## 1.5.3 - 2026-07-26
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Add the actual Publish chart step to helm.yml github actions workflow
|
|
14
|
+
|
|
15
|
+
## 1.5.2 - 2026-07-26
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Document the roadmap for publishing Mammoth-owned, versioned JSON Schema
|
|
20
|
+
artifacts for canonical webhook event and transaction payloads.
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Correct the Mammoth Helm chart's default image tag to `1.5.2`, matching the
|
|
25
|
+
published container image tag convention.
|
|
26
|
+
|
|
9
27
|
## 1.5.1 - 2026-07-25
|
|
10
28
|
|
|
11
29
|
### Changed
|
data/README.md
CHANGED
|
@@ -52,6 +52,16 @@ Mammoth is intentionally boring infrastructure. It uses YAML configuration,
|
|
|
52
52
|
JSON Schema validation, local SQLite operational state, and the CDC Ecosystem's
|
|
53
53
|
shared vocabulary so operators can inspect, recover, and reason about delivery.
|
|
54
54
|
|
|
55
|
+
## Mammoth ecosystem
|
|
56
|
+
|
|
57
|
+
The Data Plane is one component of the broader Mammoth ecosystem. The companion
|
|
58
|
+
Control Plane, Control Agent, and Extensions are developed separately and are
|
|
59
|
+
not part of this open-source repository or its MIT distribution.
|
|
60
|
+
|
|
61
|
+
See the [Mammoth ecosystem overview](docs/ECOSYSTEM.md) for public scope,
|
|
62
|
+
integration boundaries, and roadmap status. Planned capabilities are
|
|
63
|
+
directional and do not represent a release commitment.
|
|
64
|
+
|
|
55
65
|
## Supported PostgreSQL versions
|
|
56
66
|
|
|
57
67
|
Mammoth supports PostgreSQL 14 through PostgreSQL 18, inclusive. These are the
|
data/lib/mammoth/version.rb
CHANGED