mammoth 1.3.0 → 1.4.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -1
- data/README.md +26 -4
- 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: 55bd93a58c383e07fe1930ed71f20ea52c05dbfa77a2354e258caddd726865ce
|
|
4
|
+
data.tar.gz: 2b01106f391f82ed0079d7efdf934447cdeb168d2ee5d6029fb8ac7cd8a617b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4359b50a25fada22578bca1ab80c3afcc187ce6d181110d83157d7231bdc9fb5f32ab407b24d39619cd7e63fa8d4a4fc01c14fd27474f640d53c874c5411eff8
|
|
7
|
+
data.tar.gz: 62eb55bba9825caaf491f8ed38ceb9f3da95580a57736c6998bb2349fa1980eb472e2ce7c775972ce7d7d9f8d6fa1ad43daffb22da7847b03c6b898c02e25762
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,25 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
# @title Changelog
|
|
3
|
+
-->
|
|
4
|
+
|
|
1
5
|
# Changelog
|
|
2
6
|
|
|
3
|
-
##
|
|
7
|
+
## 1.4.0 - 2026-07-19
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Declared PostgreSQL 14 through PostgreSQL 18, inclusive, as Mammoth's
|
|
12
|
+
supported server range.
|
|
13
|
+
- Replaced the PostgreSQL 17-only CI gate with real logical-replication E2E
|
|
14
|
+
coverage across PostgreSQL 14, 15, 16, 17, and 18.
|
|
15
|
+
- Documented the maintained-version support policy, version-dependent
|
|
16
|
+
`pg_replication_slots` fields, and PostgreSQL 18-only
|
|
17
|
+
`idle_replication_slot_timeout`.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Query `pg_replication_slots.invalidation_reason` in the E2E helper only on
|
|
22
|
+
PostgreSQL 17 and newer; PostgreSQL 16 does not expose that field.
|
|
4
23
|
|
|
5
24
|
## 1.3.0 - 2026-07-19
|
|
6
25
|
|
data/README.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
# @markup markdown
|
|
3
|
+
# @title Github Repo README
|
|
4
|
+
# @author Ken C. Demanawa
|
|
5
|
+
-->
|
|
6
|
+
|
|
1
7
|
<p align="center">
|
|
2
8
|
<picture>
|
|
3
9
|
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/kanutocd/mammoth/main/docs/branding/logo/exports/png/mammoth-primary-horizontal-reversed-transparent.png">
|
|
@@ -8,10 +14,12 @@
|
|
|
8
14
|
|
|
9
15
|
# Mammoth
|
|
10
16
|
|
|
11
|
-
[](https://rubygems.org/gems/mammoth)
|
|
18
|
+
[](https://www.ruby-lang.org/)
|
|
19
|
+
[](https://github.com/kanutocd/mammoth/actions/workflows/ci.yml)
|
|
20
|
+
[](https://github.com/kanutocd/mammoth/blob/main/.github/workflows/ci.yml#L50)
|
|
21
|
+
[](LICENSE.txt)
|
|
22
|
+
|
|
15
23
|
|
|
16
24
|
Mammoth is a self-hosted PostgreSQL event relay focused on reliable delivery
|
|
17
25
|
of database change events.
|
|
@@ -32,6 +40,20 @@ Mammoth is intentionally boring infrastructure. It uses YAML configuration,
|
|
|
32
40
|
JSON Schema validation, local SQLite operational state, and the CDC Ecosystem's
|
|
33
41
|
shared vocabulary so operators can inspect, recover, and reason about delivery.
|
|
34
42
|
|
|
43
|
+
## Supported PostgreSQL versions
|
|
44
|
+
|
|
45
|
+
Mammoth supports PostgreSQL 14 through PostgreSQL 18, inclusive. These are the
|
|
46
|
+
PostgreSQL major versions currently maintained by the PostgreSQL community and
|
|
47
|
+
covered by Mammoth's real logical-replication E2E compatibility matrix.
|
|
48
|
+
|
|
49
|
+
Mammoth supports PostgreSQL major versions that are both maintained by the
|
|
50
|
+
PostgreSQL community and included in Mammoth's compatibility test matrix. New
|
|
51
|
+
PostgreSQL majors are unsupported until explicitly tested and documented. EOL
|
|
52
|
+
versions may be removed from the supported range in a subsequent Mammoth minor
|
|
53
|
+
release with release-note notice.
|
|
54
|
+
|
|
55
|
+
PostgreSQL 19 is a development release and is not supported.
|
|
56
|
+
|
|
35
57
|
## Documentation
|
|
36
58
|
|
|
37
59
|
Documentation site:
|
data/lib/mammoth/version.rb
CHANGED