logstash-filter-tld 3.1.1 → 3.1.2

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: 8ca68ea5e6c3fc5108de5864a7153904a29ad5602e0a9f943ec2597ba3f98138
4
- data.tar.gz: 7f8132b292ecfa65a5ef4ad37836c553fd61d0cd8e65e960f89b86aeb3dc1968
3
+ metadata.gz: 971e758e880a9fb5c521da0414c99cc6ee5c5dd354e7df13f7c1b3b0639b9cce
4
+ data.tar.gz: 35d150315aca2a6ca4c911c0345dbae171bad7a035262e132bbae85f7a19af3c
5
5
  SHA512:
6
- metadata.gz: 22e5e968850ab860874fad21b4c570dda0c09ddcac8260357cde5dbb02b109602f4f0b7730a7961aa9c03e1bca4fc8df127de1adf589ce76a865a957cad730bb
7
- data.tar.gz: b08f561ad4ac3b0a7dfc804ecead03e7d3162c1d0b62245edb9c91a401a62c5255997f22e609501b7829437b61482b09d453b56d1a23f4a94d14b5f421bfb8b5
6
+ metadata.gz: daedf5f8a13ac78308effe6dc53b2a70d4da14550a0542929674711957a7e5b429dd9455d7a2e95c124d294c8833d814f01eda474ec14670f0030f364d298fe2
7
+ data.tar.gz: d09b7bba705e1b5cd714a5c1c4680b41d205dc1e26da8f41cf754b13dc47cefa7e7ad51123ec2ca3d66387057b42bc486ab4171a32d33facf6298e1e31df0b49
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 3.1.2
2
+ - Fix race condition initializing PublicSuffix list [#8](https://github.com/logstash-plugins/logstash-filter-tld/issues/8)
3
+
1
4
  ## 3.1.1
2
5
  - Honor ECS and add top_level_domain
3
6
 
@@ -29,6 +29,8 @@ class LogStash::Filters::Tld < LogStash::Filters::Base
29
29
  def register
30
30
  # Add instance variables
31
31
  require 'public_suffix'
32
+ # force the list to be initialised.
33
+ PublicSuffix::List.default
32
34
  end # def register
33
35
 
34
36
  public
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-filter-tld'
3
- s.version = '3.1.1'
3
+ s.version = '3.1.2'
4
4
  s.licenses = ['Apache-2.0']
5
5
  s.summary = "Replaces the contents of the default message field with whatever you specify in the configuration"
6
6
  s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-tld
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-16 00:00:00.000000000 Z
11
+ date: 2022-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -112,8 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
112
  - !ruby/object:Gem::Version
113
113
  version: '0'
114
114
  requirements: []
115
- rubyforge_project:
116
- rubygems_version: 2.6.13
115
+ rubygems_version: 3.1.6
117
116
  signing_key:
118
117
  specification_version: 4
119
118
  summary: Replaces the contents of the default message field with whatever you specify