logstash-input-beats 6.7.0-java → 6.7.2-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: 58cf42e276f440a1338075962e528abf5463d53c0920f657f5bd4901412b2051
4
- data.tar.gz: f81eda811d149a9c93e4320fe2b8b5eafecfe1d2cf06492fe2e76a1dfa3a9f55
3
+ metadata.gz: cfe0b8587cd80a4285628570381bf998f5765e4d779ee02173b18c90cea621cc
4
+ data.tar.gz: 9f7b15e3627e6b6a594b9e2227185a7875b321d0a7062639d06332047480a59e
5
5
  SHA512:
6
- metadata.gz: 31777a8b07f9030864edb3c351891258133d35a29b9f52b68b418f0aa1ae4da8a39d16e624529a31b3c00fd481d6bb0b73dbf6b48789889830bb0934d8fafcce
7
- data.tar.gz: 7abeafcaac28ac5d512f0d35ba5ce7c5eb747fa830b8899adb1dd3bf09e051727be92d43193a04b83f9bfef62a032d8979b18bb28f6fb2645a95afef2fd8bc36
6
+ metadata.gz: 7f4f396f596f515f4194083e8e590a83a84e4d6f1e222f7a12de1a3dcb7483c830654f806781ab1fa494568f562fbfccfed09f0a40780858fcec70bf4a46c1e0
7
+ data.tar.gz: 1307df00e5d5edc2325020dbd8dd0f1902dcf4404412869f254a2b9303560267cebae254cf4852138533b8a6281ce599fb2d86312c2077792982338d9f471e3e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 6.7.2
2
+ - Restore accidentally removed Lumberjack event parse source lines [#486](https://github.com/logstash-plugins/logstash-input-beats/pull/486)
3
+
4
+ ## 6.7.1
5
+ - bump netty to 4.1.100 and jackson to 2.15.3 [#484](https://github.com/logstash-plugins/logstash-input-beats/pull/484)
6
+
1
7
  ## 6.7.0
2
8
  - PROTOCOL: adds explicit support for receiving a 0-length window to encapsulate an empty batch. Empty batches are acknowledged with the same 0-sequence ACK's that are used as keep-alives during processing. [#479](https://github.com/logstash-plugins/logstash-input-beats/pull/479)
3
9
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 6.7.0
1
+ 6.7.2
@@ -1,11 +1,11 @@
1
1
  # AUTOGENERATED BY THE GRADLE SCRIPT. DO NOT EDIT.
2
2
 
3
3
  require 'jar_dependencies'
4
- require_jar('io.netty', 'netty-buffer', '4.1.94.Final')
5
- require_jar('io.netty', 'netty-codec', '4.1.94.Final')
6
- require_jar('io.netty', 'netty-common', '4.1.94.Final')
7
- require_jar('io.netty', 'netty-transport', '4.1.94.Final')
8
- require_jar('io.netty', 'netty-handler', '4.1.94.Final')
9
- require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.94.Final')
4
+ require_jar('io.netty', 'netty-buffer', '4.1.100.Final')
5
+ require_jar('io.netty', 'netty-codec', '4.1.100.Final')
6
+ require_jar('io.netty', 'netty-common', '4.1.100.Final')
7
+ require_jar('io.netty', 'netty-transport', '4.1.100.Final')
8
+ require_jar('io.netty', 'netty-handler', '4.1.100.Final')
9
+ require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.100.Final')
10
10
  require_jar('org.javassist', 'javassist', '3.24.0-GA')
11
- require_jar('org.logstash.beats', 'logstash-input-beats', '6.7.0')
11
+ require_jar('org.logstash.beats', 'logstash-input-beats', '6.7.2')
@@ -222,7 +222,9 @@ describe "Filebeat", :integration => true do
222
222
 
223
223
  # NOTE: CentOS 7 base image (LS < 7.17) uses OpenSSL 1.0 while later is using Ubuntu 20.04 with OpenSSL 1.1.1
224
224
  # the default algorithm for `openssl pkcs8 -topk8` changed to -v2 which Java does not support (see GH-443)
225
- cmd = "openssl pkcs8 -topk8 -in #{cert_key} -out #{@cert_key_pkcs8} -v1 PBE-SHA1-RC2-128 -passin pass:#{@passphrase} -passout pass:#{@passphrase}"
225
+ # Starting from OpenSSL 3, RC cipher algorithms has been moved into provider-legacy package which is not always installed in all OSes.
226
+ # Use cipher that is available in openssl main package.
227
+ cmd = "openssl pkcs8 -topk8 -in #{cert_key} -out #{@cert_key_pkcs8} -v1 PBE-SHA1-3DES -passin pass:#{@passphrase} -passout pass:#{@passphrase}"
226
228
  unless system(cmd)
227
229
  fail "failed to run openssl command: #{$?} \n#{cmd}"
228
230
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-beats
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.7.0
4
+ version: 6.7.2
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-07 00:00:00.000000000 Z
11
+ date: 2023-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -320,14 +320,14 @@ files:
320
320
  - spec/support/integration_shared_context.rb
321
321
  - spec/support/logstash_test.rb
322
322
  - spec/support/shared_examples.rb
323
- - vendor/jar-dependencies/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.jar
324
- - vendor/jar-dependencies/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.jar
325
- - vendor/jar-dependencies/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.jar
326
- - vendor/jar-dependencies/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.jar
327
- - vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.jar
328
- - vendor/jar-dependencies/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.jar
323
+ - vendor/jar-dependencies/io/netty/netty-buffer/4.1.100.Final/netty-buffer-4.1.100.Final.jar
324
+ - vendor/jar-dependencies/io/netty/netty-codec/4.1.100.Final/netty-codec-4.1.100.Final.jar
325
+ - vendor/jar-dependencies/io/netty/netty-common/4.1.100.Final/netty-common-4.1.100.Final.jar
326
+ - vendor/jar-dependencies/io/netty/netty-handler/4.1.100.Final/netty-handler-4.1.100.Final.jar
327
+ - vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.100.Final/netty-transport-native-unix-common-4.1.100.Final.jar
328
+ - vendor/jar-dependencies/io/netty/netty-transport/4.1.100.Final/netty-transport-4.1.100.Final.jar
329
329
  - vendor/jar-dependencies/org/javassist/javassist/3.24.0-GA/javassist-3.24.0-GA.jar
330
- - vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/6.7.0/logstash-input-beats-6.7.0.jar
330
+ - vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/6.7.2/logstash-input-beats-6.7.2.jar
331
331
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
332
332
  licenses:
333
333
  - Apache License (2.0)