logstash-input-beats 6.6.3-java → 6.7.0-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: c696c69278011b1aadeedad788ce604967afd127c544aa5a6a8441f47158ca6e
4
- data.tar.gz: '09197738b3af6edc6702767c3c8a030f3de47987df7eca313a6ea7068efe0816'
3
+ metadata.gz: 58cf42e276f440a1338075962e528abf5463d53c0920f657f5bd4901412b2051
4
+ data.tar.gz: f81eda811d149a9c93e4320fe2b8b5eafecfe1d2cf06492fe2e76a1dfa3a9f55
5
5
  SHA512:
6
- metadata.gz: 623cf09ed39282f8d9354fe7b3c02ddc041184f5a23fee7608d228e55cf178fb3b050ca8be9570afdc7aa87ab12e91f8d82636c7d780db1e7da7c96245a3cae8
7
- data.tar.gz: b9e7af92685131e415127874d160cb93d12ed17497f7b474bcd5beb794fe3f7bfe675136f841c19b2396402e5712eeb84f3103383089fed077503660717077b7
6
+ metadata.gz: 31777a8b07f9030864edb3c351891258133d35a29b9f52b68b418f0aa1ae4da8a39d16e624529a31b3c00fd481d6bb0b73dbf6b48789889830bb0934d8fafcce
7
+ data.tar.gz: 7abeafcaac28ac5d512f0d35ba5ce7c5eb747fa830b8899adb1dd3bf09e051727be92d43193a04b83f9bfef62a032d8979b18bb28f6fb2645a95afef2fd8bc36
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 6.7.0
2
+ - 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
+
4
+ ## 6.6.4
5
+ - [DOC] Fix misleading `enrich/source_data` input beats documentation about the Logstash host. [#478](https://github.com/logstash-plugins/logstash-input-beats/pull/478)
6
+
1
7
  ## 6.6.3
2
8
  - [DOC] Updated the `ssl_client_authentication` and `ssl_verify_mode` documentation explaining that CN and SAN are not validated. [#473](https://github.com/logstash-plugins/logstash-input-beats/pull/473)
3
9
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 6.6.3
1
+ 6.7.0
data/docs/index.asciidoc CHANGED
@@ -300,8 +300,7 @@ Refer to <<plugins-{type}s-{plugin}-ecs_metadata,ECS mapping>> for detailed info
300
300
  explicitly specified, _excluding_ `codec_metadata` from `enrich` will
301
301
  disable `ecs_compatibility` for this plugin.
302
302
  | source_metadata | Information about the _source_ of the event, such as the IP address
303
- of the inbound connection this input received the event from and the
304
- name of the Logstash host that processed the event
303
+ of the inbound connection this input received the event from
305
304
  | ssl_peer_metadata | Detailed information about the _SSL peer_ we received the event from,
306
305
  such as identity information from the SSL client certificate that was
307
306
  presented when establishing a connection to this input
@@ -8,4 +8,4 @@ require_jar('io.netty', 'netty-transport', '4.1.94.Final')
8
8
  require_jar('io.netty', 'netty-handler', '4.1.94.Final')
9
9
  require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.94.Final')
10
10
  require_jar('org.javassist', 'javassist', '3.24.0-GA')
11
- require_jar('org.logstash.beats', 'logstash-input-beats', '6.6.3')
11
+ require_jar('org.logstash.beats', 'logstash-input-beats', '6.7.0')
data/lib/tasks/test.rake CHANGED
@@ -21,6 +21,9 @@ end
21
21
  require "logstash/devutils/rake"
22
22
 
23
23
  namespace :test do
24
+ task :java do
25
+ exit(1) unless system './gradlew test'
26
+ end
24
27
  namespace :integration do
25
28
  task :setup do
26
29
  Rake::Task["test:integration:setup:filebeat"].invoke
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.6.3
4
+ version: 6.7.0
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-03 00:00:00.000000000 Z
11
+ date: 2023-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -327,7 +327,7 @@ files:
327
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
328
  - vendor/jar-dependencies/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.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.6.3/logstash-input-beats-6.6.3.jar
330
+ - vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/6.7.0/logstash-input-beats-6.7.0.jar
331
331
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
332
332
  licenses:
333
333
  - Apache License (2.0)