logstash-filter-geoip 7.2.4-java → 7.2.5-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ee4080f597ead66a5f575fe76fd7f6c814fbe6318b434eb386f55bb1daf44b5
4
- data.tar.gz: 113040d2bf666c804aca079dcf196b95df26f0bddc6a891c6e1edd944c86b509
3
+ metadata.gz: 5343724bbb8e5c095b58bce550a623e52b430be296389ca4fa96d590ae75e833
4
+ data.tar.gz: 1c4d5fbc791114fe2ef3fb84fd4c69ea727232e3e60bd4ceed3b2fb36fb1dee4
5
5
  SHA512:
6
- metadata.gz: cd3b11418095b4530b562cab2514c998614b89ea7962d9fb54bb66e8dd2022043208e77478c2abb4951679037b3a57b3539f6e3a9e3c6b59a409f7515a137f10
7
- data.tar.gz: ced208c5aba6a1c8177b2429bf22cbd366bce7a5093b046a043de3de1982a6aa624e2c315a8ec12c98f28224e9305f1d5d6458737378bebedd639cf05e8655b6
6
+ metadata.gz: a982a61ac68f2e8a53c480e26652970be26a0773e0c4aaa5ad062e476b957eabeef1d6671db62ba9469cfa39010f650ec1b5d797e6cd09115644013e13b6cf02
7
+ data.tar.gz: c3163f27b7cdd8bdd57765f5214c816c9e9a93093b0de4a4931e132df92d92ef544835ad6f69c337fa0376cab4044f34f94ccf50180714eb0844b6c1be7e896f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 7.2.5
2
+ - Added preview of ECS-v8 support with existing ECS-v1 implementation [#193](https://github.com/logstash-plugins/logstash-filter-geoip/pull/193)
3
+
1
4
  ## 7.2.4
2
5
  - Fix: update to Gradle 7 [#191](https://github.com/logstash-plugins/logstash-filter-geoip/pull/191)
3
6
  - [DOC] Clarify CC licensed database indefinite use condition and air-gapped environment [#192](https://github.com/logstash-plugins/logstash-filter-geoip/pull/192)
data/docs/index.asciidoc CHANGED
@@ -284,7 +284,7 @@ For the built-in GeoLite2 City database, the following are available:
284
284
  * Value type is <<string,string>>
285
285
  * Supported values are:
286
286
  ** `disabled`: unstructured geo data added at root level
287
- ** `v1`: uses fields that are compatible with Elastic Common Schema (for example, `[client][geo][country_name]`)
287
+ ** `v1`, `v8`: uses fields that are compatible with Elastic Common Schema (for example, `[client][geo][country_name]`)
288
288
  * Default value depends on which version of Logstash is running:
289
289
  ** When Logstash provides a `pipeline.ecs_compatibility` setting, its value is used as the default
290
290
  ** Otherwise, the default value is `disabled`.
@@ -32,7 +32,7 @@ require "logstash/plugin_mixins/ecs_compatibility_support"
32
32
  # --
33
33
 
34
34
  class LogStash::Filters::GeoIP < LogStash::Filters::Base
35
- include LogStash::PluginMixins::ECSCompatibilitySupport(:disabled, :v1)
35
+ include LogStash::PluginMixins::ECSCompatibilitySupport(:disabled, :v1, :v8 => :v1)
36
36
 
37
37
  config_name "geoip"
38
38
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-filter-geoip'
4
- s.version = '7.2.4'
4
+ s.version = '7.2.5'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Adds geographical information about an IP address"
7
7
  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"
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
22
22
 
23
23
  # Gem dependencies
24
24
  s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
25
- s.add_runtime_dependency 'logstash-mixin-ecs_compatibility_support', '~>1.1'
25
+ s.add_runtime_dependency 'logstash-mixin-ecs_compatibility_support', '~>1.2'
26
26
  s.add_development_dependency 'logstash-devutils'
27
27
  s.add_development_dependency 'insist'
28
28
  s.add_development_dependency 'benchmark-ips'
@@ -14,7 +14,7 @@ describe LogStash::Filters::GeoIP do
14
14
  describe "simple ip filter", :aggregate_failures do
15
15
 
16
16
  context "when specifying the target", :ecs_compatibility_support do
17
- ecs_compatibility_matrix(:disabled, :v1) do |ecs_select|
17
+ ecs_compatibility_matrix(:disabled, :v1, :v8 => :v1) do |ecs_select|
18
18
 
19
19
  let(:ip) { "8.8.8.8" }
20
20
  let(:event) { LogStash::Event.new("message" => ip) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-geoip
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.2.4
4
+ version: 7.2.5
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-29 00:00:00.000000000 Z
11
+ date: 2021-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -35,7 +35,7 @@ dependencies:
35
35
  requirements:
36
36
  - - "~>"
37
37
  - !ruby/object:Gem::Version
38
- version: '1.1'
38
+ version: '1.2'
39
39
  name: logstash-mixin-ecs_compatibility_support
40
40
  prerelease: false
41
41
  type: :runtime
@@ -43,7 +43,7 @@ dependencies:
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.2'
47
47
  - !ruby/object:Gem::Dependency
48
48
  requirement: !ruby/object:Gem::Requirement
49
49
  requirements: