jetstream_bridge 4.0.0 → 4.0.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 +9 -0
- data/README.md +2 -2
- data/lib/jetstream_bridge/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: 358b977021f3b620cbbedb6af88bca009060f2da62ec932cbdcf5db1e3b0b375
|
|
4
|
+
data.tar.gz: 4f0ca0e54a96aee5971460c2be2fdeac82e5f6df00fc70a17fb90e472e91e1ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 550efc74885ce2b4d2fbc86742bf0db0dabdf402b64c6b072a3007b435946e09f460f5b759f1f027a3ba4ed8211b9a807ff6f157b075179d2901284703097b47
|
|
7
|
+
data.tar.gz: '09478489b9e13b897979657cb5fa5dd6da90f9399ad4e09d7f5e0436c9fc881e02c1ffc2c7441834d72dff3c9549b846d199c4cb6bf5adee845babb4877235ae'
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ 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.1] - 2025-11-23
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Documentation** - Updated version references in README and YARD documentation
|
|
13
|
+
- Installation instructions now reference version 4.0
|
|
14
|
+
- Health check example output shows correct version
|
|
15
|
+
- YARD documentation reflects current version
|
|
16
|
+
|
|
8
17
|
## [4.0.0] - 2025-11-23
|
|
9
18
|
|
|
10
19
|
### Breaking Changes
|
data/README.md
CHANGED
|
@@ -92,7 +92,7 @@ Building event-driven systems with NATS JetStream is powerful, but comes with ch
|
|
|
92
92
|
|
|
93
93
|
```ruby
|
|
94
94
|
# Gemfile
|
|
95
|
-
gem "jetstream_bridge", "~>
|
|
95
|
+
gem "jetstream_bridge", "~> 4.0"
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
```bash
|
|
@@ -1249,7 +1249,7 @@ health = JetstreamBridge.health_check
|
|
|
1249
1249
|
# connected_at: "2025-11-22T20:00:00Z",
|
|
1250
1250
|
# stream: { exists: true, name: "...", ... },
|
|
1251
1251
|
# config: { env: "production", ... },
|
|
1252
|
-
# version: "
|
|
1252
|
+
# version: "4.0.1"
|
|
1253
1253
|
# }
|
|
1254
1254
|
|
|
1255
1255
|
# Force-connect & ensure topology at boot or in a check
|