riemann-rdap 1.1.0 → 1.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/CHANGELOG.md +10 -2
- data/Rakefile +2 -2
- data/lib/riemann/tools/rdap/version.rb +1 -1
- data/riemann-rdap.gemspec +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d09b1cc1d821813ecc7ea034e0da53d3ff31a047f568d36b27b2057e52b0656
|
|
4
|
+
data.tar.gz: f86d5814ad1be8ef6284b3e0d72a1f12e560f33a92071876b8b131fa3fd189b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ce6e8b3071cda94bd4c2d72c6c178331794dd76256120282427ffbf398a8d05783576beb26534961562f306915944628a6a10abf50f4af9483c457436a0686f
|
|
7
|
+
data.tar.gz: 19926ff8ae33b8a0b4690926b56e04012fa20bee7b6c56ac8bea7440c55df31f59c34cfba460d6a72916d78bdd05ceeca896bca4884c58435f2e3e0e14c9fd54
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [v1.2.0](https://github.com/opus-codium/riemann-rdap/tree/v1.2.0) (2026-08-21)
|
|
4
4
|
|
|
5
|
-
[Full Changelog](https://github.com/opus-codium/riemann-rdap/compare/v1.
|
|
5
|
+
[Full Changelog](https://github.com/opus-codium/riemann-rdap/compare/v1.1.0...v1.2.0)
|
|
6
|
+
|
|
7
|
+
**Implemented enhancements:**
|
|
8
|
+
|
|
9
|
+
- Allow rdap 1.x [\#17](https://github.com/opus-codium/riemann-rdap/pull/17) ([smortex](https://github.com/smortex))
|
|
10
|
+
|
|
11
|
+
## [v1.1.0](https://github.com/opus-codium/riemann-rdap/tree/v1.1.0) (2026-06-02)
|
|
12
|
+
|
|
13
|
+
[Full Changelog](https://github.com/opus-codium/riemann-rdap/compare/v1.0.0...v1.1.0)
|
|
6
14
|
|
|
7
15
|
**Implemented enhancements:**
|
|
8
16
|
|
data/Rakefile
CHANGED
|
@@ -17,7 +17,7 @@ require "github_changelog_generator/task"
|
|
|
17
17
|
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
|
18
18
|
config.user = "opus-codium"
|
|
19
19
|
config.project = "riemann-rdap"
|
|
20
|
-
config.exclude_labels = ["
|
|
21
|
-
config.future_release = Riemann::Tools::Rdap::VERSION
|
|
20
|
+
config.exclude_labels = ["github_actions", "modulesync", "skip-changelog"]
|
|
21
|
+
config.future_release = "v#{Riemann::Tools::Rdap::VERSION}"
|
|
22
22
|
config.since_tag = "v1.0.0"
|
|
23
23
|
end
|
data/riemann-rdap.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: riemann-rdap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Romain Tartière
|
|
@@ -53,16 +53,22 @@ dependencies:
|
|
|
53
53
|
name: rdap
|
|
54
54
|
requirement: !ruby/object:Gem::Requirement
|
|
55
55
|
requirements:
|
|
56
|
-
- - "
|
|
56
|
+
- - ">="
|
|
57
57
|
- !ruby/object:Gem::Version
|
|
58
58
|
version: 0.1.5
|
|
59
|
+
- - "<"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 2.0.0
|
|
59
62
|
type: :runtime
|
|
60
63
|
prerelease: false
|
|
61
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
62
65
|
requirements:
|
|
63
|
-
- - "
|
|
66
|
+
- - ">="
|
|
64
67
|
- !ruby/object:Gem::Version
|
|
65
68
|
version: 0.1.5
|
|
69
|
+
- - "<"
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: 2.0.0
|
|
66
72
|
email:
|
|
67
73
|
- romain@blogreen.org
|
|
68
74
|
executables:
|
|
@@ -104,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
104
110
|
- !ruby/object:Gem::Version
|
|
105
111
|
version: '0'
|
|
106
112
|
requirements: []
|
|
107
|
-
rubygems_version:
|
|
113
|
+
rubygems_version: 4.0.16
|
|
108
114
|
specification_version: 4
|
|
109
115
|
summary: Submit domain expiration information to Riemann
|
|
110
116
|
test_files: []
|