logstash-output-elasticsearch 10.8.0-java → 10.8.1-java

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: 29d2b5e316c2ba3dd1d67af673733bd90dd0b5b82c436b1f107cc11d681bd8b5
4
- data.tar.gz: 102c70fde50016c59245287f09eeed0d51d4fb411a617b7d397ab306688f022d
3
+ metadata.gz: 9c547ba2082e8d6ee23bca31219922bef90ea367665e8693488c0a2af918355d
4
+ data.tar.gz: 83a8e5c3261f551fb2cb116cfa16db6db7534c3eea1859f14d32c0ce9fa6d858
5
5
  SHA512:
6
- metadata.gz: 6bd3b56c08debf7408ac1cd31980235d3224b5705a42ecc78d28e8da94825cd310ee1b8d0f47b16400327bcc6b0c1e777e2a937a09b1a5a483584d6ca523317d
7
- data.tar.gz: c9ba096fb1a39064616ef10be681d1d3b64ab344a7b3b51560b68391c525cf61c6c98a289e068958e43806e7042d9a7ced140ec29407f80680e0323ba44ce165
6
+ metadata.gz: fd0df72d793640fffae40ace04c528e06af52b7a24381bd52e29677ed3da3e2bd82db9521b73695746ef55322f95bc919d374c29e19d85f22a1dbcdc9f1c4123
7
+ data.tar.gz: d043c430f6bfcf652e5ca85f9f1e90103b1a64650c003fcb5651235784c008c981dc0b18e898df166c1a194ef89e57e655a3f0224bf4fc958d4df277b2972e4d
@@ -1,3 +1,6 @@
1
+ ## 10.8.1
2
+ - Fixed an issue when assigning the no-op license checker [#984](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/984)
3
+
1
4
  ## 10.8.0
2
5
  - Refactored configuration options into specific and shared in PluginMixins namespace [#973](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/973)
3
6
  - Refactored common methods into specific and shared in PluginMixins namespace [#976](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/976)
@@ -70,7 +70,7 @@ module LogStash; module Outputs; class ElasticSearch; class HttpClient;
70
70
  @url_info = {}
71
71
  @stopping = false
72
72
 
73
- @license_checker = options.fetch(:license_checker) { LogStash::PluginMixins::ElasticSearch::NoopLicenseChecker::INSTANCE }
73
+ @license_checker = options[:license_checker] || LogStash::PluginMixins::ElasticSearch::NoopLicenseChecker::INSTANCE
74
74
  end
75
75
 
76
76
  def start
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-elasticsearch'
3
- s.version = '10.8.0'
3
+ s.version = '10.8.1'
4
4
 
5
5
  s.licenses = ['apache-2.0']
6
6
  s.summary = "Stores logs in Elasticsearch"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-elasticsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.8.0
4
+ version: 10.8.1
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic