manageiq-messaging 2.1.0 → 2.2.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/.github/workflows/ci.yaml +6 -1
- data/CHANGELOG.md +5 -1
- data/Gemfile +2 -0
- data/lib/manageiq/messaging/version.rb +1 -1
- data/manageiq-messaging.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a4b26f7fe5456389457f9f3136d666198dbcc84ec86609291eb14f6f48909ef
|
|
4
|
+
data.tar.gz: 3438850c8f35d7ff19a50f5f46180ec09551f75454cbe461d38ac8d4ab99c055
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e2c5581a8d1b29f7f6d97119dcc35d5948eaaedb5b30c99f9e48611566ddc2a7f11a19116cd2e49f8756bf08b256330e5200feafd5636f0d946a43d63787d8c
|
|
7
|
+
data.tar.gz: 95b4248393d324dced3e42f9f7ce94e1112112256d80372e072deed75bfc54ef710af1a53db5c619e9d1f28e54c975ba9382588e8d9cd89dff771cc840eae781
|
data/.github/workflows/ci.yaml
CHANGED
|
@@ -28,6 +28,7 @@ jobs:
|
|
|
28
28
|
- '7.1'
|
|
29
29
|
- '7.2'
|
|
30
30
|
- '8.0'
|
|
31
|
+
- '8.1'
|
|
31
32
|
exclude:
|
|
32
33
|
- ruby-version: '3.0'
|
|
33
34
|
rails-version: '7.2'
|
|
@@ -35,10 +36,14 @@ jobs:
|
|
|
35
36
|
rails-version: '8.0'
|
|
36
37
|
- ruby-version: '3.1'
|
|
37
38
|
rails-version: '8.0'
|
|
39
|
+
- ruby-version: '3.0'
|
|
40
|
+
rails-version: '8.1'
|
|
41
|
+
- ruby-version: '3.1'
|
|
42
|
+
rails-version: '8.1'
|
|
38
43
|
env:
|
|
39
44
|
TEST_RAILS_VERSION: "${{ matrix.rails-version }}"
|
|
40
45
|
steps:
|
|
41
|
-
- uses: actions/checkout@
|
|
46
|
+
- uses: actions/checkout@v7
|
|
42
47
|
- name: Set up Ruby
|
|
43
48
|
uses: ruby/setup-ruby@v1
|
|
44
49
|
with:
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [2.2.0] - 19-Aug-2026
|
|
10
|
+
* Support rails 8.1 ([#128](https://github.com/ManageIQ/manageiq-messaging/pull/128))
|
|
11
|
+
|
|
9
12
|
## [2.1.0] - 20-Jan-2026
|
|
10
13
|
* Support rails 8.0 ([#102](https://github.com/ManageIQ/manageiq-messaging/pull/102))
|
|
11
14
|
|
|
@@ -100,7 +103,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
100
103
|
|
|
101
104
|
* Initial release
|
|
102
105
|
|
|
103
|
-
[Unreleased]: https://github.com/ManageIQ/manageiq-messaging/compare/v2.
|
|
106
|
+
[Unreleased]: https://github.com/ManageIQ/manageiq-messaging/compare/v2.2.0...HEAD
|
|
107
|
+
[2.2.0]: https://github.com/ManageIQ/manageiq-messaging/compare/v2.1.0...v2.2.0
|
|
104
108
|
[2.1.0]: https://github.com/ManageIQ/manageiq-messaging/compare/v2.0.0...v2.1.0
|
|
105
109
|
[2.0.0]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.5.0...v2.0.0
|
|
106
110
|
[1.5.0]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.4.3...v1.5.0
|
data/Gemfile
CHANGED
data/manageiq-messaging.gemspec
CHANGED
|
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
|
|
|
26
26
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
27
27
|
spec.require_paths = ["lib"]
|
|
28
28
|
|
|
29
|
-
spec.add_dependency 'activesupport', '>= 7.0.8', "<8.
|
|
29
|
+
spec.add_dependency 'activesupport', '>= 7.0.8', "<8.2"
|
|
30
30
|
spec.add_dependency 'rdkafka', '~> 0.8'
|
|
31
31
|
spec.add_dependency 'stomp', '~> 1.4.4'
|
|
32
32
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: manageiq-messaging
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ManageIQ Authors
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: 7.0.8
|
|
19
19
|
- - "<"
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: '8.
|
|
21
|
+
version: '8.2'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: 7.0.8
|
|
29
29
|
- - "<"
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: '8.
|
|
31
|
+
version: '8.2'
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: rdkafka
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|