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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 03761ea16810e4f57a0029f8df6e9022545833671db797692fdea532a4824dc6
4
- data.tar.gz: 40bde74258be786105aa85e728125a72d27158e870565ad41d493592a3761462
3
+ metadata.gz: 55bd93a58c383e07fe1930ed71f20ea52c05dbfa77a2354e258caddd726865ce
4
+ data.tar.gz: 2b01106f391f82ed0079d7efdf934447cdeb168d2ee5d6029fb8ac7cd8a617b8
5
5
  SHA512:
6
- metadata.gz: c107f0f46a2e7e9da588a0835de73851c0d87133967b99f15244b8b2b4867c1795a6cc73bf5005428819a59c76cf8f71fa3827083662ed1bfdb8f7df2b317256
7
- data.tar.gz: 0f59b536c3b9fe2585c850935eeb68541e73ac59830fcbe3969ac10b7b8f90473acdae762d2de4d9f55b36a7aec8274004e50a329b5d06986371aa53bf2e51b0
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
- ## Unreleased
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
- [![Gem Version](https://badge.fury.io/rb/mammoth.svg)](https://badge.fury.io/rb/mammoth)
12
- [![CI](https://github.com/kanutocd/mammoth/workflows/CI/badge.svg)](https://github.com/kanutocd/mammoth/actions)
13
- [![Ruby Version](https://img.shields.io/badge/ruby-%3E%3D%204.0-ruby.svg)](https://www.ruby-lang.org/en/)
14
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
17
+ [![Gem Version](https://img.shields.io/gem/v/mammoth?logo=rubygems&logoColor=white)](https://rubygems.org/gems/mammoth)
18
+ [![Requires Ruby 4.0+](https://img.shields.io/badge/Requires-Ruby%204.0%2B-CC342D?logo=ruby&logoColor=white)](https://www.ruby-lang.org/)
19
+ [![CI](https://github.com/kanutocd/mammoth/actions/workflows/ci.yml/badge.svg)](https://github.com/kanutocd/mammoth/actions/workflows/ci.yml)
20
+ [![Tested Against PostgreSQL 14–18](https://img.shields.io/badge/Tested%20Against-PostgreSQL%2014--18-336791?logo=postgresql&logoColor=white)](https://github.com/kanutocd/mammoth/blob/main/.github/workflows/ci.yml#L50)
21
+ [![License](https://img.shields.io/badge/License-MIT-22C55E)](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:
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Mammoth
4
4
  # Current Mammoth gem version.
5
- VERSION = "1.3.0"
5
+ VERSION = "1.4.0"
6
6
  end
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: 1.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ken C. Demanawa