riemann-opensearch 1.0.0 → 1.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.yml +2 -2
- data/CHANGELOG.md +8 -0
- data/lib/riemann/tools/opensearch/version.rb +1 -1
- data/riemann-opensearch.gemspec +1 -1
- metadata +9 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c3276c4d43ee5988ee726cee244649c54e9899ce7872e2ad2d83bd41a5e4bad0
|
|
4
|
+
data.tar.gz: 263c976d0ebcedb7af0bb9160a3eb77029e60412b6ad682b1ab04c2ab1d316c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab78cf3868b58007f9dc000e1624c3b34cf397b34cd084b2aa109dc4f5481a4d035ad977c4dda0ea423075fdc95b873466ff66c7e14e7a0304508d73276b8f38
|
|
7
|
+
data.tar.gz: 5289238759636ed1103615aa08d66e51dfb776343f46b83d31aeaa81ad9b929f59329011dd8db4ab42acd35c341285a0937a16b9aec46c6b9944ea4ecc4cbb05
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
standard:
|
|
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:
|
|
@@ -35,7 +35,7 @@ jobs:
|
|
|
35
35
|
- "3.4"
|
|
36
36
|
name: Ruby ${{ matrix.ruby }}
|
|
37
37
|
steps:
|
|
38
|
-
- uses: actions/checkout@
|
|
38
|
+
- uses: actions/checkout@v6
|
|
39
39
|
- name: Setup ruby
|
|
40
40
|
uses: ruby/setup-ruby@v1
|
|
41
41
|
with:
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v1.1.0](https://github.com/opus-codium/riemann-opensearch/tree/v1.1.0) (2026-05-29)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/opus-codium/riemann-opensearch/compare/v1.0.0...v1.1.0)
|
|
6
|
+
|
|
7
|
+
**Implemented enhancements:**
|
|
8
|
+
|
|
9
|
+
- Allow riemann-tools 2.0.0 [\#6](https://github.com/opus-codium/riemann-opensearch/pull/6) ([smortex](https://github.com/smortex))
|
|
10
|
+
|
|
3
11
|
## [v1.0.0](https://github.com/opus-codium/riemann-opensearch/tree/v1.0.0) (2025-05-06)
|
|
4
12
|
|
|
5
13
|
[Full Changelog](https://github.com/opus-codium/riemann-opensearch/compare/v0.0.1...v1.0.0)
|
data/riemann-opensearch.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: riemann-opensearch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Romain Tartière
|
|
@@ -41,16 +41,22 @@ dependencies:
|
|
|
41
41
|
name: riemann-tools
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
|
-
- - "
|
|
44
|
+
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
46
|
version: '1.0'
|
|
47
|
+
- - "<"
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '3.0'
|
|
47
50
|
type: :runtime
|
|
48
51
|
prerelease: false
|
|
49
52
|
version_requirements: !ruby/object:Gem::Requirement
|
|
50
53
|
requirements:
|
|
51
|
-
- - "
|
|
54
|
+
- - ">="
|
|
52
55
|
- !ruby/object:Gem::Version
|
|
53
56
|
version: '1.0'
|
|
57
|
+
- - "<"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '3.0'
|
|
54
60
|
email:
|
|
55
61
|
- romain@blogreen.org
|
|
56
62
|
executables:
|