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 +4 -4
- data/.github/workflows/ci.yml +3 -12
- data/CHANGELOG.md +8 -0
- data/lib/riemann/tools/bacula/version.rb +1 -1
- data/riemann-bacula.gemspec +1 -1
- metadata +11 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a93d3774738893a96e8cffd27c1bc7725a4b2999e64a44ca2c21be4d3ffd0c96
|
|
4
|
+
data.tar.gz: 8e46f5e38c9eed023dec812167b4ff40e9daa5269e94913bedfd7e602871309f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfdc65a60f34d1395d04ec37071b0247fa1326adccecc74d21a6ca61c79961f5857e28d4af6dff36f8826b0935eb1db3c7099d944b02a6204eb55445c068339c
|
|
7
|
+
data.tar.gz: 353bc3868f841193f5253b424ec0422a7c500e8ad2bd20889fe9fa6045447e904a4b24924b0312495f3616d8d7d77fe142a18eff78d5c1d38bffde6b440d42cf
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
rubocop:
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
15
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
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@
|
|
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
|
|
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)
|
data/riemann-bacula.gemspec
CHANGED
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:
|
|
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:
|
|
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
|
-
|
|
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.
|
|
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: []
|