manageiq-messaging 2.0.0 → 2.1.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 +19 -12
- data/CHANGELOG.md +5 -1
- data/Gemfile +2 -0
- data/README.md +0 -2
- data/lib/manageiq/messaging/version.rb +1 -1
- data/manageiq-messaging.gemspec +1 -1
- metadata +3 -5
- data/.codeclimate.yml +0 -43
- data/.rubocop_cc.yml +0 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 75d498a62abe2fdbee6071ab94319c8134aa6f64ce1e341c0d609ba6e78434f9
|
|
4
|
+
data.tar.gz: b89db95d02a314eef4de7ac92bbb5ee03f39c498dc383b673a817997ebf5a642
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e111edf197b7eaac59450a7503747ce39aa14d6eec44f444c1e67f787cae73fedb10110013fa189c9b32b9dfd4f266b7fcc0f92e2eb073de335a6a0a3873c42b
|
|
7
|
+
data.tar.gz: 79fbf406239ea9557d6ddee17ed5b9d56dcaa2b60355ece662a5f294dca705402002b308a40110f690719f0df2275322957ac4a6ecb52373931786c653e4aa2a
|
data/.github/workflows/ci.yaml
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
name: CI
|
|
2
|
-
|
|
3
2
|
on:
|
|
4
|
-
push:
|
|
5
3
|
pull_request:
|
|
4
|
+
push:
|
|
5
|
+
branches-ignore:
|
|
6
|
+
- dependabot/*
|
|
7
|
+
- renovate/*
|
|
6
8
|
schedule:
|
|
7
|
-
- cron:
|
|
8
|
-
|
|
9
|
+
- cron: 0 0 * * 0
|
|
10
|
+
workflow_dispatch:
|
|
11
|
+
concurrency:
|
|
12
|
+
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
13
|
+
cancel-in-progress: true
|
|
14
|
+
permissions:
|
|
15
|
+
contents: read
|
|
9
16
|
jobs:
|
|
10
17
|
ci:
|
|
11
18
|
runs-on: ubuntu-latest
|
|
@@ -20,23 +27,23 @@ jobs:
|
|
|
20
27
|
- '7.0'
|
|
21
28
|
- '7.1'
|
|
22
29
|
- '7.2'
|
|
30
|
+
- '8.0'
|
|
23
31
|
exclude:
|
|
24
32
|
- ruby-version: '3.0'
|
|
25
33
|
rails-version: '7.2'
|
|
34
|
+
- ruby-version: '3.0'
|
|
35
|
+
rails-version: '8.0'
|
|
36
|
+
- ruby-version: '3.1'
|
|
37
|
+
rails-version: '8.0'
|
|
26
38
|
env:
|
|
27
|
-
TEST_RAILS_VERSION: ${{ matrix.rails-version }}
|
|
28
|
-
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
39
|
+
TEST_RAILS_VERSION: "${{ matrix.rails-version }}"
|
|
29
40
|
steps:
|
|
30
|
-
- uses: actions/checkout@
|
|
41
|
+
- uses: actions/checkout@v6
|
|
31
42
|
- name: Set up Ruby
|
|
32
43
|
uses: ruby/setup-ruby@v1
|
|
33
44
|
with:
|
|
34
|
-
ruby-version: ${{ matrix.ruby-version }}
|
|
45
|
+
ruby-version: "${{ matrix.ruby-version }}"
|
|
35
46
|
bundler-cache: true
|
|
36
47
|
timeout-minutes: 30
|
|
37
48
|
- name: Run tests
|
|
38
49
|
run: bundle exec rake
|
|
39
|
-
- name: Report code coverage
|
|
40
|
-
if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.1' && matrix.rails-version == '7.0' }}
|
|
41
|
-
continue-on-error: true
|
|
42
|
-
uses: paambaati/codeclimate-action@v9
|
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.1.0] - 20-Jan-2026
|
|
10
|
+
* Support rails 8.0 ([#102](https://github.com/ManageIQ/manageiq-messaging/pull/102))
|
|
11
|
+
|
|
9
12
|
## [2.0.0] - 17-Jul-2025
|
|
10
13
|
* BREAKING Don't default to Stomp protocol ([#97](https://github.com/ManageIQ/manageiq-messaging/pull/97))
|
|
11
14
|
|
|
@@ -97,7 +100,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
97
100
|
|
|
98
101
|
* Initial release
|
|
99
102
|
|
|
100
|
-
[Unreleased]: https://github.com/ManageIQ/manageiq-messaging/compare/v2.
|
|
103
|
+
[Unreleased]: https://github.com/ManageIQ/manageiq-messaging/compare/v2.1.0...HEAD
|
|
104
|
+
[2.1.0]: https://github.com/ManageIQ/manageiq-messaging/compare/v2.0.0...v2.1.0
|
|
101
105
|
[2.0.0]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.5.0...v2.0.0
|
|
102
106
|
[1.5.0]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.4.3...v1.5.0
|
|
103
107
|
[1.4.3]: https://github.com/ManageIQ/manageiq-messaging/compare/v1.4.2...v1.4.3
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/manageiq-messaging)
|
|
4
4
|
[](https://github.com/ManageIQ/manageiq-messaging/actions/workflows/ci.yaml)
|
|
5
|
-
[](https://codeclimate.com/github/ManageIQ/manageiq-messaging)
|
|
6
|
-
[](https://codeclimate.com/github/ManageIQ/manageiq-messaging/coverage)
|
|
7
5
|
|
|
8
6
|
Client library for ManageIQ components to exchange messages through its internal message bus.
|
|
9
7
|
|
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.1"
|
|
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.1.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.1'
|
|
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.1'
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: rdkafka
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -133,12 +133,10 @@ executables: []
|
|
|
133
133
|
extensions: []
|
|
134
134
|
extra_rdoc_files: []
|
|
135
135
|
files:
|
|
136
|
-
- ".codeclimate.yml"
|
|
137
136
|
- ".github/workflows/ci.yaml"
|
|
138
137
|
- ".gitignore"
|
|
139
138
|
- ".rspec"
|
|
140
139
|
- ".rubocop.yml"
|
|
141
|
-
- ".rubocop_cc.yml"
|
|
142
140
|
- ".rubocop_local.yml"
|
|
143
141
|
- ".whitesource"
|
|
144
142
|
- CHANGELOG.md
|
data/.codeclimate.yml
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
prepare:
|
|
2
|
-
fetch:
|
|
3
|
-
- url: https://raw.githubusercontent.com/ManageIQ/manageiq-style/master/.rubocop_base.yml
|
|
4
|
-
path: ".rubocop_base.yml"
|
|
5
|
-
- url: https://raw.githubusercontent.com/ManageIQ/manageiq-style/master/.rubocop_cc_base.yml
|
|
6
|
-
path: ".rubocop_cc_base.yml"
|
|
7
|
-
- url: https://raw.githubusercontent.com/ManageIQ/manageiq-style/master/styles/base.yml
|
|
8
|
-
path: styles/base.yml
|
|
9
|
-
- url: https://raw.githubusercontent.com/ManageIQ/manageiq-style/master/styles/cc_base.yml
|
|
10
|
-
path: styles/cc_base.yml
|
|
11
|
-
plugins:
|
|
12
|
-
rubocop:
|
|
13
|
-
enabled: true
|
|
14
|
-
config: ".rubocop_cc.yml"
|
|
15
|
-
channel: rubocop-1-56-3
|
|
16
|
-
brakeman:
|
|
17
|
-
enabled: false
|
|
18
|
-
bundler-audit:
|
|
19
|
-
enabled: false
|
|
20
|
-
csslint:
|
|
21
|
-
enabled: false
|
|
22
|
-
duplication:
|
|
23
|
-
enabled: true
|
|
24
|
-
config:
|
|
25
|
-
languages:
|
|
26
|
-
- ruby
|
|
27
|
-
- javascript
|
|
28
|
-
eslint:
|
|
29
|
-
enabled: false
|
|
30
|
-
channel: eslint-3
|
|
31
|
-
fixme:
|
|
32
|
-
enabled: false
|
|
33
|
-
markdownlint:
|
|
34
|
-
enabled: false
|
|
35
|
-
exclude_patterns:
|
|
36
|
-
- ".git/"
|
|
37
|
-
- "**.xml"
|
|
38
|
-
- "**.yaml"
|
|
39
|
-
- "**.yml"
|
|
40
|
-
- locale/
|
|
41
|
-
- spec/
|
|
42
|
-
- tools/
|
|
43
|
-
version: '2'
|
data/.rubocop_cc.yml
DELETED