internet_security_event 1.2.1 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +2 -0
- data/CHANGELOG.md +23 -13
- data/HISTORY.md +31 -0
- data/Rakefile +9 -0
- data/internet_security_event.gemspec +2 -1
- data/lib/internet_security_event/version.rb +1 -1
- metadata +18 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96f9a7ff480196b6577e3d641424234b389a047b9c96c4f3984d8eabc1def59b
|
4
|
+
data.tar.gz: 194a8f754e108ac4abc3caec23711da90744aedc9afd0709e138f513ae07d840
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 225eb6c94b4d3888546451f3676dd243e52b5587cce800fa1da10638f0b0c202bd2365bc6091419c63e5a6e406f55ba34d1b94e103911ce071e1bf7f301627e8
|
7
|
+
data.tar.gz: 669d9be990c119395fb67b76db876f94319693a3379d9e9a28442f5cb30498a93510f5b1142f83d47fca0bc7e3ae34d6df7c8a52b81394d37ac957afd315045d
|
data/.github/workflows/ci.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,38 +1,48 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
|
3
|
+
## [v2.0.0](https://github.com/smortex/internet_security_event/tree/v2.0.0) (2022-07-16)
|
4
4
|
|
5
|
-
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
5
|
+
[Full Changelog](https://github.com/smortex/internet_security_event/compare/v1.2.1...v2.0.0)
|
7
6
|
|
8
|
-
|
7
|
+
**Breaking changes:**
|
8
|
+
|
9
|
+
- Bump activesupport to 6.x [\#2](https://github.com/smortex/internet_security_event/pull/2) ([smortex](https://github.com/smortex))
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- Integrate github\_changelog\_generator [\#1](https://github.com/smortex/internet_security_event/pull/1) ([smortex](https://github.com/smortex))
|
14
|
+
|
15
|
+
## [v1.2.1] - 2022-07-15
|
9
16
|
|
10
17
|
### Changed
|
11
18
|
- Emit a `warning` state instead of a `warn` state to match Riemann wording.
|
12
19
|
|
13
|
-
## [
|
20
|
+
## [v1.2.0] - 2019-02-28
|
14
21
|
|
15
22
|
### Changed
|
16
23
|
- Rely on `OpenSSL::SSL.verify_certificate_identity` to check that a certificate
|
17
24
|
is valid for the provided hostname.
|
18
25
|
|
19
|
-
## [
|
26
|
+
## [v1.1.0] - 2019-02-21
|
20
27
|
|
21
28
|
### Added
|
22
29
|
- Add basic suport for TLSA events.
|
23
30
|
|
24
|
-
## [
|
31
|
+
## [v1.0.2] - 2019-02-21
|
25
32
|
|
26
33
|
### Changed
|
27
34
|
- Fix checking of TLS hostnames with wildcard certificates.
|
28
35
|
|
29
|
-
## [
|
36
|
+
## [v1.0.1] - 2019-02-18
|
30
37
|
|
31
38
|
### Changed
|
32
39
|
- Improve the way TLS certificates state is computed.
|
33
40
|
|
34
|
-
[
|
35
|
-
[
|
36
|
-
[
|
37
|
-
[
|
38
|
-
[
|
41
|
+
[v1.2.1]: https://github.com/smortex/internet_security_event/compare/v1.2.0...v1.2.1
|
42
|
+
[v1.2.0]: https://github.com/smortex/internet_security_event/compare/v1.1.0...v1.2.0
|
43
|
+
[v1.1.0]: https://github.com/smortex/internet_security_event/compare/v1.0.2...v1.1.0
|
44
|
+
[v1.0.2]: https://github.com/smortex/internet_security_event/compare/v1.0.1...v1.0.2
|
45
|
+
[v1.0.1]: https://github.com/smortex/internet_security_event/compare/v1.0.0...v1.0.1
|
46
|
+
|
47
|
+
|
48
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/HISTORY.md
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
## [v1.2.1] - 2022-07-15
|
2
|
+
|
3
|
+
### Changed
|
4
|
+
- Emit a `warning` state instead of a `warn` state to match Riemann wording.
|
5
|
+
|
6
|
+
## [v1.2.0] - 2019-02-28
|
7
|
+
|
8
|
+
### Changed
|
9
|
+
- Rely on `OpenSSL::SSL.verify_certificate_identity` to check that a certificate
|
10
|
+
is valid for the provided hostname.
|
11
|
+
|
12
|
+
## [v1.1.0] - 2019-02-21
|
13
|
+
|
14
|
+
### Added
|
15
|
+
- Add basic suport for TLSA events.
|
16
|
+
|
17
|
+
## [v1.0.2] - 2019-02-21
|
18
|
+
|
19
|
+
### Changed
|
20
|
+
- Fix checking of TLS hostnames with wildcard certificates.
|
21
|
+
|
22
|
+
## [v1.0.1] - 2019-02-18
|
23
|
+
|
24
|
+
### Changed
|
25
|
+
- Improve the way TLS certificates state is computed.
|
26
|
+
|
27
|
+
[v1.2.1]: https://github.com/smortex/internet_security_event/compare/v1.2.0...v1.2.1
|
28
|
+
[v1.2.0]: https://github.com/smortex/internet_security_event/compare/v1.1.0...v1.2.0
|
29
|
+
[v1.1.0]: https://github.com/smortex/internet_security_event/compare/v1.0.2...v1.1.0
|
30
|
+
[v1.0.2]: https://github.com/smortex/internet_security_event/compare/v1.0.1...v1.0.2
|
31
|
+
[v1.0.1]: https://github.com/smortex/internet_security_event/compare/v1.0.0...v1.0.1
|
data/Rakefile
CHANGED
@@ -1,8 +1,17 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require 'bundler/gem_tasks'
|
4
|
+
require 'github_changelog_generator/task'
|
4
5
|
require 'rspec/core/rake_task'
|
5
6
|
|
6
7
|
RSpec::Core::RakeTask.new(:spec)
|
7
8
|
|
9
|
+
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
10
|
+
config.user = 'smortex'
|
11
|
+
config.project = 'internet_security_event'
|
12
|
+
config.since_tag = 'v1.2.1'
|
13
|
+
require 'internet_security_event/version'
|
14
|
+
config.future_release = "v#{InternetSecurityEvent::VERSION}"
|
15
|
+
end
|
16
|
+
|
8
17
|
task default: :spec
|
@@ -24,9 +24,10 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
25
|
spec.require_paths = ['lib']
|
26
26
|
|
27
|
-
spec.add_dependency 'activesupport', '~>
|
27
|
+
spec.add_dependency 'activesupport', '~> 6.0'
|
28
28
|
|
29
29
|
spec.add_development_dependency 'bundler'
|
30
|
+
spec.add_development_dependency 'github_changelog_generator'
|
30
31
|
spec.add_development_dependency 'rake'
|
31
32
|
spec.add_development_dependency 'rspec'
|
32
33
|
spec.add_development_dependency 'rubocop'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: internet_security_event
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Romain Tartière
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '6.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '6.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: github_changelog_generator
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: rake
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -136,6 +150,7 @@ files:
|
|
136
150
|
- CHANGELOG.md
|
137
151
|
- CODE_OF_CONDUCT.md
|
138
152
|
- Gemfile
|
153
|
+
- HISTORY.md
|
139
154
|
- LICENSE.txt
|
140
155
|
- README.md
|
141
156
|
- Rakefile
|