mammoth 0.1.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +48 -0
- data/README.md +18 -3
- data/lib/mammoth/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3c304ab7c88b218cf4a09e3e672a914510636656941248f9dfd6bff00f1ac454
|
|
4
|
+
data.tar.gz: 40107e6a3400c92cc72f0c57a41d9b757b49d9bc30e51f8fb7b3a287502db723
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8f4f13c376eeb33b4768d06883131be409664411501ee3c1d525e508e4109531a58f4dc937d38576aaa9d84c2af6352b30d90b1744597b4c263322c2323dc56
|
|
7
|
+
data.tar.gz: 85cab27b802aec51af685afac69e10f0b56682d512b9271ff407b383807dab37d9d0d875624ba3a7d718cf1c684de2fbb106de87ad7635c22aef5f347780e39d
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,54 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## [0.1.1] - 2026-06-17
|
|
6
|
+
|
|
7
|
+
Documentation and operational guidance release.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
* Documentation site structure under `docs/`.
|
|
12
|
+
* Quick Start guide.
|
|
13
|
+
* PostgreSQL setup guide.
|
|
14
|
+
* Configuration reference.
|
|
15
|
+
* CLI reference.
|
|
16
|
+
* Operational state guide.
|
|
17
|
+
* Examples guide.
|
|
18
|
+
* Helm deployment guide.
|
|
19
|
+
* Troubleshooting guide.
|
|
20
|
+
|
|
21
|
+
### Improved
|
|
22
|
+
|
|
23
|
+
* GitHub Pages documentation experience.
|
|
24
|
+
* API documentation discoverability.
|
|
25
|
+
* Documentation navigation and onboarding flow.
|
|
26
|
+
* Cross-linking between guides and API reference.
|
|
27
|
+
|
|
28
|
+
### Clarified
|
|
29
|
+
|
|
30
|
+
* PostgreSQL logical replication requirements.
|
|
31
|
+
* Publication and replication slot expectations.
|
|
32
|
+
* SQLite operational state responsibilities.
|
|
33
|
+
* Checkpoint persistence behavior.
|
|
34
|
+
* Dead-letter persistence behavior.
|
|
35
|
+
* Helm deployment assumptions.
|
|
36
|
+
* Kubernetes operational considerations.
|
|
37
|
+
|
|
38
|
+
### Validation
|
|
39
|
+
|
|
40
|
+
Documentation was aligned with manually validated deployment scenarios:
|
|
41
|
+
|
|
42
|
+
* PostgreSQL logical replication.
|
|
43
|
+
* Live webhook delivery.
|
|
44
|
+
* Retry exhaustion and dead-letter persistence.
|
|
45
|
+
* SQLite operational state.
|
|
46
|
+
* Helm chart deployment.
|
|
47
|
+
* Kind-based Kubernetes deployment.
|
|
48
|
+
|
|
49
|
+
### Notes
|
|
50
|
+
|
|
51
|
+
This release focuses on documentation, onboarding, and operational clarity. No runtime or configuration changes were introduced.
|
|
52
|
+
|
|
5
53
|
|
|
6
54
|
## [0.1.0] - 2026-06-17
|
|
7
55
|
|
data/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://www.ruby-lang.org/en/)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
|
-
Mammoth is a self-hosted PostgreSQL event relay focused on reliable delivery
|
|
8
|
+
🦣 Mammoth is a self-hosted PostgreSQL event relay focused on reliable delivery
|
|
9
9
|
of database change events.
|
|
10
10
|
|
|
11
11
|
```text
|
|
@@ -20,13 +20,28 @@ Mammoth
|
|
|
20
20
|
Webhook
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
Mammoth is intentionally boring infrastructure. It uses YAML configuration,
|
|
23
|
+
🦣 Mammoth is intentionally boring infrastructure. It uses YAML configuration,
|
|
24
24
|
JSON Schema validation, local SQLite operational state, and the CDC Ecosystem's
|
|
25
25
|
shared vocabulary so operators can inspect, recover, and reason about delivery.
|
|
26
26
|
|
|
27
|
+
🦣 Mammoth is intentionally boring infrastructure. It uses YAML configuration,
|
|
28
|
+
JSON Schema validation, local SQLite operational state, and the CDC Ecosystem's
|
|
29
|
+
shared vocabulary so operators can inspect, recover, and reason about delivery.
|
|
30
|
+
|
|
31
|
+
## Documentation
|
|
32
|
+
|
|
33
|
+
Documentation site:
|
|
34
|
+
|
|
35
|
+
https://kanutocd.github.io/mammoth/
|
|
36
|
+
|
|
37
|
+
API documentation:
|
|
38
|
+
|
|
39
|
+
https://kanutocd.github.io/mammoth/Mammoth.html
|
|
40
|
+
|
|
41
|
+
|
|
27
42
|
## OSS MVP
|
|
28
43
|
|
|
29
|
-
Mammoth OSS includes:
|
|
44
|
+
🦣 Mammoth OSS includes:
|
|
30
45
|
|
|
31
46
|
- CLI foundation
|
|
32
47
|
- YAML configuration loading
|
data/lib/mammoth/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mammoth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ken C. Demanawa
|
|
@@ -153,7 +153,7 @@ metadata:
|
|
|
153
153
|
homepage_uri: https://kanutocd.github.io/mammoth/
|
|
154
154
|
source_code_uri: https://github.com/kanutocd/mammoth
|
|
155
155
|
changelog_uri: https://github.com/kanutocd/mammoth/blob/main/CHANGELOG.md
|
|
156
|
-
documentation_uri: https://kanutocd.github.io/mammoth/
|
|
156
|
+
documentation_uri: https://kanutocd.github.io/mammoth/Mammoth.html
|
|
157
157
|
rubygems_mfa_required: 'true'
|
|
158
158
|
rdoc_options: []
|
|
159
159
|
require_paths:
|
|
@@ -171,5 +171,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
171
171
|
requirements: []
|
|
172
172
|
rubygems_version: 4.0.10
|
|
173
173
|
specification_version: 4
|
|
174
|
-
summary: Reliable delivery of PostgreSQL
|
|
174
|
+
summary: Reliable delivery of PostgreSQL logical replication events with retries,
|
|
175
|
+
dead letters, and operational state.
|
|
175
176
|
test_files: []
|