riemann-bacula 3.0.0 → 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: e1b8e3157426aa0222146772ab55d4280db70914f68798338165facdbbeaed26
4
- data.tar.gz: 044d6f5915334353b15453e8c6667613afe1117776aeaf29b06862f112b43de7
3
+ metadata.gz: a93d3774738893a96e8cffd27c1bc7725a4b2999e64a44ca2c21be4d3ffd0c96
4
+ data.tar.gz: 8e46f5e38c9eed023dec812167b4ff40e9daa5269e94913bedfd7e602871309f
5
5
  SHA512:
6
- metadata.gz: 93cf5171b18914c899079304d8a6a62792793bbd9271ad0c1a271dfee744e28ec86b594f71aab5c22c92b7017a5f32bcd7e8ad2750b0bcb6d940ad9cf532850a
7
- data.tar.gz: 20c939d535b07c4ac48397a86d5b8a20d77fbabdadd81cc8cb42e388b8c9bbd32d1aeeb4fd49bc2877be585a29ed0c3eddffdd02a280ef95300a1c48f40c0cff
6
+ metadata.gz: dfdc65a60f34d1395d04ec37071b0247fa1326adccecc74d21a6ca61c79961f5857e28d4af6dff36f8826b0935eb1db3c7099d944b02a6204eb55445c068339c
7
+ data.tar.gz: 353bc3868f841193f5253b424ec0422a7c500e8ad2bd20889fe9fa6045447e904a4b24924b0312495f3616d8d7d77fe142a18eff78d5c1d38bffde6b440d42cf
@@ -13,7 +13,7 @@ jobs:
13
13
  rubocop:
14
14
  runs-on: ubuntu-latest
15
15
  steps:
16
- - uses: actions/checkout@v3
16
+ - uses: actions/checkout@v6
17
17
  - name: Setup ruby
18
18
  uses: ruby/setup-ruby@v1
19
19
  with:
@@ -27,7 +27,6 @@ jobs:
27
27
  strategy:
28
28
  matrix:
29
29
  ruby:
30
- - "2.6"
31
30
  - "2.7"
32
31
  - "3.0"
33
32
  - "3.1"
@@ -36,19 +35,11 @@ jobs:
36
35
  - "3.4"
37
36
  name: Ruby ${{ matrix.ruby }}
38
37
  steps:
39
- - uses: actions/checkout@v3
38
+ - uses: actions/checkout@v6
40
39
  - name: Setup ruby
41
40
  uses: ruby/setup-ruby@v1
42
41
  with:
43
42
  ruby-version: ${{ matrix.ruby }}
44
43
  bundler-cache: true
45
- - name: Run tests without uploading code coverage
46
- if: ${{ matrix.ruby != '3.0' }}
44
+ - name: Run tests
47
45
  run: bundle exec rake
48
- - name: Run tests and upload coverage to Code Climate
49
- if: ${{ matrix.ruby == '3.0' }}
50
- uses: paambaati/codeclimate-action@v3.1.1
51
- env:
52
- CC_TEST_REPORTER_ID: ${{ secrets.CODECLIMATE_TOKEN }}
53
- with:
54
- coverageCommand: bundle exec rake
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [v4.0.0](https://github.com/opus-codium/riemann-bacula/tree/v4.0.0) (2026-05-29)
4
+
5
+ [Full Changelog](https://github.com/opus-codium/riemann-bacula/compare/v3.0.0...v4.0.0)
6
+
7
+ **Breaking changes:**
8
+
9
+ - Drop Ruby 2.6; Allow riemann-tools 2.0.0 [\#16](https://github.com/opus-codium/riemann-bacula/pull/16) ([smortex](https://github.com/smortex))
10
+
3
11
  ## [v3.0.0](https://github.com/opus-codium/riemann-bacula/tree/v3.0.0) (2025-01-06)
4
12
 
5
13
  [Full Changelog](https://github.com/opus-codium/riemann-bacula/compare/v2.0.2...v3.0.0)
@@ -3,7 +3,7 @@
3
3
  module Riemann
4
4
  module Tools # :nodoc:
5
5
  class Bacula
6
- VERSION = '3.0.0'
6
+ VERSION = '4.0.0'
7
7
  end
8
8
  end
9
9
  end
@@ -30,5 +30,5 @@ Gem::Specification.new do |spec|
30
30
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
31
31
  spec.require_paths = ['lib']
32
32
 
33
- spec.add_dependency 'riemann-tools', '~> 1.0'
33
+ spec.add_dependency 'riemann-tools', '>= 1.0', '< 3.0'
34
34
  end
metadata CHANGED
@@ -1,30 +1,34 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: riemann-bacula
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Romain Tartière
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-01-06 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: riemann-tools
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
- - - "~>"
16
+ - - ">="
18
17
  - !ruby/object:Gem::Version
19
18
  version: '1.0'
19
+ - - "<"
20
+ - !ruby/object:Gem::Version
21
+ version: '3.0'
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
23
25
  requirements:
24
- - - "~>"
26
+ - - ">="
25
27
  - !ruby/object:Gem::Version
26
28
  version: '1.0'
27
- description:
29
+ - - "<"
30
+ - !ruby/object:Gem::Version
31
+ version: '3.0'
28
32
  email:
29
33
  - romain@blogreen.org
30
34
  executables:
@@ -55,7 +59,6 @@ metadata:
55
59
  source_code_uri: https://github.com/opus-codium/riemann-bacula
56
60
  changelog_uri: https://github.com/opus-codium/riemann-bacula
57
61
  rubygems_mfa_required: 'true'
58
- post_install_message:
59
62
  rdoc_options: []
60
63
  require_paths:
61
64
  - lib
@@ -70,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
73
  - !ruby/object:Gem::Version
71
74
  version: '0'
72
75
  requirements: []
73
- rubygems_version: 3.3.15
74
- signing_key:
76
+ rubygems_version: 3.6.7
75
77
  specification_version: 4
76
78
  summary: Submits bacula information to riemann
77
79
  test_files: []