internet_security_event 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: 9618c67bc76530f18f67b1c2634fc8a1638f003216c0870bc7aeea96f72136e6
4
- data.tar.gz: eb38ae645cc40fee9e92b465bb05178d39769bd77aa3804666b13283fb0192bf
3
+ metadata.gz: c0e9c8ea09fa7bf7a9ba45617a8895c3cef64191c7c9d79781e1cf7f0c429908
4
+ data.tar.gz: e76ee0ae675bb3b23f19c069b44711a6e994399c3a376498c64f23046b023d12
5
5
  SHA512:
6
- metadata.gz: 1698abecd6ad8f8f76ee0cea45a3e6de1ce4c483b1f5082be060cda480e2e4bef7bdb261f5ed5baf6bc9d243f1a1e948b85f4b755f0a999376fcd9dbe59d1def
7
- data.tar.gz: da7e963cadddbe85148b28f8a0f4247e36f51d8f9ed6ccd502d0f69f04657180cc1b6c57642b022e7235cf11ed9abfd4be90f95d264918282d59231ba28e2222
6
+ metadata.gz: ad03d4baf5eeb39dd8006c761c00106ee7bf3f7ed713ed68afb1db5a28dad1dd464fd66a89dc021b18afa27da19358a12ab4ab1a5d5be2d83c9a2e5d7390dadc
7
+ data.tar.gz: 0ef2288e630626c33dd39b2eb46492a557ed9c886cbeb41478e73c7e9b192bb883d9ab94d2928f608d0b6e10bffbf9c947362951e7724c0dfedf87492787c1f6
@@ -26,11 +26,10 @@ jobs:
26
26
  strategy:
27
27
  matrix:
28
28
  ruby:
29
- - "2.6"
30
- - "2.7"
31
- - "3.0"
32
29
  - "3.1"
33
30
  - "3.2"
31
+ - "3.3"
32
+ - "3.4"
34
33
  name: Ruby ${{ matrix.ruby }}
35
34
  steps:
36
35
  - uses: actions/checkout@v2
data/.rubocop.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  AllCops:
2
2
  AllowSymlinksInCacheRootDirectory: true
3
3
 
4
- require:
4
+ plugins:
5
5
  - rubocop-rake
6
6
  - rubocop-rspec
7
7
 
@@ -9,7 +9,7 @@ Layout/HashAlignment:
9
9
  EnforcedColonStyle: table
10
10
  EnforcedHashRocketStyle: table
11
11
 
12
- Metrics/LineLength:
12
+ Layout/LineLength:
13
13
  Max: 160
14
14
 
15
15
  Style/Documentation:
data/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [v4.0.0](https://github.com/smortex/internet_security_event/tree/v4.0.0) (2025-10-07)
9
+
10
+ [Full Changelog](https://github.com/smortex/internet_security_event/compare/v3.0.0...v4.0.0)
11
+
12
+ **Breaking changes:**
13
+
14
+ - Switch to ActiveSupport 7.x [\#6](https://github.com/smortex/internet_security_event/pull/6) ([smortex](https://github.com/smortex))
15
+
16
+ **Implemented enhancements:**
17
+
18
+ - Run CI an Ruby 3.3 and 3.4 [\#7](https://github.com/smortex/internet_security_event/pull/7) ([smortex](https://github.com/smortex))
19
+
8
20
  ## [v3.0.0](https://github.com/smortex/internet_security_event/tree/v3.0.0) (2023-04-17)
9
21
 
10
22
  [Full Changelog](https://github.com/smortex/internet_security_event/compare/v2.0.0...v3.0.0)
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
13
13
  spec.summary = 'Build events describing the status of various internet services'
14
14
  spec.homepage = 'https://github.com/smortex/internet_security_event'
15
15
  spec.license = 'MIT'
16
- spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
16
+ spec.required_ruby_version = Gem::Requirement.new('>= 3.1.0')
17
17
 
18
18
  # Specify which files should be added to the gem when it is released.
19
19
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -24,7 +24,7 @@ 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', '~> 6.0'
27
+ spec.add_dependency 'activesupport', '~> 7.0'
28
28
 
29
29
  spec.add_development_dependency 'bundler'
30
30
  spec.add_development_dependency 'github_changelog_generator'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module InternetSecurityEvent
4
- VERSION = '3.0.0'
4
+ VERSION = '4.0.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: internet_security_event
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: exe
10
9
  cert_chain: []
11
- date: 2023-04-17 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: activesupport
@@ -16,14 +15,14 @@ dependencies:
16
15
  requirements:
17
16
  - - "~>"
18
17
  - !ruby/object:Gem::Version
19
- version: '6.0'
18
+ version: '7.0'
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - "~>"
25
24
  - !ruby/object:Gem::Version
26
- version: '6.0'
25
+ version: '7.0'
27
26
  - !ruby/object:Gem::Dependency
28
27
  name: bundler
29
28
  requirement: !ruby/object:Gem::Requirement
@@ -136,7 +135,6 @@ dependencies:
136
135
  - - ">="
137
136
  - !ruby/object:Gem::Version
138
137
  version: '0'
139
- description:
140
138
  email:
141
139
  - romain@blogreen.org
142
140
  executables: []
@@ -170,7 +168,6 @@ homepage: https://github.com/smortex/internet_security_event
170
168
  licenses:
171
169
  - MIT
172
170
  metadata: {}
173
- post_install_message:
174
171
  rdoc_options: []
175
172
  require_paths:
176
173
  - lib
@@ -178,15 +175,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
178
175
  requirements:
179
176
  - - ">="
180
177
  - !ruby/object:Gem::Version
181
- version: 2.6.0
178
+ version: 3.1.0
182
179
  required_rubygems_version: !ruby/object:Gem::Requirement
183
180
  requirements:
184
181
  - - ">="
185
182
  - !ruby/object:Gem::Version
186
183
  version: '0'
187
184
  requirements: []
188
- rubygems_version: 3.4.10
189
- signing_key:
185
+ rubygems_version: 3.7.1
190
186
  specification_version: 4
191
187
  summary: Build events describing the status of various internet services
192
188
  test_files: []