jetstream_bridge 3.0.2 → 4.0.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: 01cdd0f6836d3c3ed272e69b801c9d583240774cb1dc76a7d4792fb3047c316d
4
- data.tar.gz: a0e5feff3f131ab762607027138816ae7805aea7b4642e6247f86616803d8f8f
3
+ metadata.gz: 49a16aef4847e83b0ccfa6ff6d4f2af0584369a81eafd52af2598270bf85e8f2
4
+ data.tar.gz: 70d92c2eb56e4fba90ff2166995f56928158db94adad238f5e422aba079ce8bb
5
5
  SHA512:
6
- metadata.gz: 7c54289ab32d5798edff32bbfcb8a4e0758e8d251b05bf0ecfdc258c8a9fa4da77ea7c55608dd177507170a6434307b71b27c7b4cbcf0082667c431654669dfc
7
- data.tar.gz: c8e60865e3b3082d5c199aa75d0411415cddbeae4a74d254e51be24bc223c8a9ebf9461e0d0e1ce8be7e73269783dadc3f16b23ecadb2fb571c8923ae8ace4c3
6
+ metadata.gz: 9e91bf6c92ce75b647021795286034950f4efa6090f755c5ce55474fe268ebde56256e5e14236aa058437b12301366965dcd05347695236af842b794fc275c96
7
+ data.tar.gz: 85c343e6b8eefd357863728170a5f3bc5ac6a55dc4a18113f1275d7aeecece2b96709103d086125dd9e5f50244d212fe1be48bc3d2346a96cd344e85d74244c3
data/CHANGELOG.md CHANGED
@@ -5,6 +5,50 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [4.0.0] - 2025-11-23
9
+
10
+ ### Breaking Changes
11
+
12
+ - **Per-app Dead Letter Queue (DLQ)** - DLQ subject pattern changed for better isolation
13
+ - **Old pattern**: `{env}.sync.dlq` (shared across all apps)
14
+ - **New pattern**: `{env}.{app_name}.sync.dlq` (isolated per app)
15
+ - **Example**: `production.api.sync.dlq` instead of `production.sync.dlq`
16
+
17
+ ### Benefits
18
+
19
+ - **Isolation**: Failed messages from different services don't mix
20
+ - **Easier Monitoring**: Track DLQ metrics per service
21
+ - **Simpler Debugging**: Identify which service is having issues
22
+ - **Independent Processing**: Each team can manage their own DLQ consumer
23
+
24
+ ### Migration Guide
25
+
26
+ 1. **Drain existing DLQ**: Process or archive messages from the old shared DLQ (`{env}.sync.dlq`)
27
+ 2. **Deploy update**: Each app will automatically create its own DLQ subject on next deployment
28
+ 3. **Update monitoring**: Adjust dashboards to track per-app DLQ subjects (`{env}.{app_name}.sync.dlq`)
29
+ 4. **Update DLQ consumers**: Update DLQ consumer configuration to use app-specific subjects
30
+
31
+ ### Documentation
32
+
33
+ - **Enhanced README** - Comprehensive documentation improvements
34
+ - Fixed consumer handler signature (single `event` parameter, not three)
35
+ - Added complete DLQ consumer examples with Rake task
36
+ - Added thread-safety documentation for Publisher
37
+ - Updated all subject pattern references
38
+ - Added DLQ monitoring examples
39
+ - **YARD documentation** - Professional API documentation
40
+ - Added `.yardopts` configuration for consistent doc generation
41
+ - 60%+ documentation coverage across public APIs
42
+ - Configured RubyDoc.info integration
43
+ - Added Rake tasks for generating docs (`rake yard`)
44
+
45
+ ### Code Quality
46
+
47
+ - **RuboCop compliance** - Zero offenses across entire codebase
48
+ - Configured appropriate exclusions for test files and acceptable patterns
49
+ - Fixed all auto-correctable style violations
50
+ - Added clear comments for non-correctable patterns
51
+
8
52
  ## [3.0.0] - 2025-11-23
9
53
 
10
54
  ### Added
@@ -134,7 +178,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
134
178
  - Better error messages
135
179
  - More robust subject matching
136
180
 
137
- ### Documentation
181
+ ### Documentation Updates
138
182
 
139
183
  - **Updated README** - Comprehensive documentation updates
140
184
  - Added section for Rails generators and rake tasks