logstash-input-beats 6.6.1-java → 6.6.3-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 +4 -4
- data/CHANGELOG.md +6 -0
- data/VERSION +1 -1
- data/docs/index.asciidoc +9 -1
- data/lib/logstash-input-beats_jars.rb +7 -7
- data/vendor/jar-dependencies/io/netty/netty-buffer/{4.1.93.Final/netty-buffer-4.1.93.Final.jar → 4.1.94.Final/netty-buffer-4.1.94.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-codec/{4.1.93.Final/netty-codec-4.1.93.Final.jar → 4.1.94.Final/netty-codec-4.1.94.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-common/{4.1.93.Final/netty-common-4.1.93.Final.jar → 4.1.94.Final/netty-common-4.1.94.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-handler/{4.1.93.Final/netty-handler-4.1.93.Final.jar → 4.1.94.Final/netty-handler-4.1.94.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-transport/{4.1.93.Final/netty-transport-4.1.93.Final.jar → 4.1.94.Final/netty-transport-4.1.94.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/{4.1.93.Final/netty-transport-native-unix-common-4.1.93.Final.jar → 4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.jar} +0 -0
- data/vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/{6.6.1/logstash-input-beats-6.6.1.jar → 6.6.3/logstash-input-beats-6.6.3.jar} +0 -0
- metadata +9 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c696c69278011b1aadeedad788ce604967afd127c544aa5a6a8441f47158ca6e
|
|
4
|
+
data.tar.gz: '09197738b3af6edc6702767c3c8a030f3de47987df7eca313a6ea7068efe0816'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 623cf09ed39282f8d9354fe7b3c02ddc041184f5a23fee7608d228e55cf178fb3b050ca8be9570afdc7aa87ab12e91f8d82636c7d780db1e7da7c96245a3cae8
|
|
7
|
+
data.tar.gz: b9e7af92685131e415127874d160cb93d12ed17497f7b474bcd5beb794fe3f7bfe675136f841c19b2396402e5712eeb84f3103383089fed077503660717077b7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 6.6.3
|
|
2
|
+
- [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
|
+
|
|
4
|
+
## 6.6.2
|
|
5
|
+
- bump netty to 4.1.94 and jackson to 2.15.2 [#474](https://github.com/logstash-plugins/logstash-input-beats/pull/474)
|
|
6
|
+
|
|
1
7
|
## 6.6.1
|
|
2
8
|
- update netty to 4.1.93 and jackson to 2.13.5 [#472](https://github.com/logstash-plugins/logstash-input-beats/pull/472)
|
|
3
9
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.6.
|
|
1
|
+
6.6.3
|
data/docs/index.asciidoc
CHANGED
|
@@ -436,6 +436,10 @@ Controls the server's behavior in regard to requesting a certificate from client
|
|
|
436
436
|
`required` forces a client to present a certificate, while `optional` requests a client certificate
|
|
437
437
|
but the client is not required to present one. Defaults to `none`, which disables the client authentication.
|
|
438
438
|
|
|
439
|
+
When mutual TLS is enabled (`required` or `optional`), the certificate presented by the client must be signed by trusted
|
|
440
|
+
<<plugins-{type}s-{plugin}-ssl_certificate_authorities>> (CAs).
|
|
441
|
+
Please note that the server does not validate the client certificate CN (Common Name) or SAN (Subject Alternative Name).
|
|
442
|
+
|
|
439
443
|
NOTE: This setting can be used only if <<plugins-{type}s-{plugin}-ssl_certificate_authorities>> is set.
|
|
440
444
|
|
|
441
445
|
[id="plugins-{type}s-{plugin}-ssl_enabled"]
|
|
@@ -524,7 +528,11 @@ If the client provides a certificate, it will be validated.
|
|
|
524
528
|
`force_peer` will make the server ask the client to provide a certificate.
|
|
525
529
|
If the client doesn't provide a certificate, the connection will be closed.
|
|
526
530
|
|
|
527
|
-
|
|
531
|
+
When mutual TLS is enabled (`peer` or `force_peer`), the certificate presented by the client must be signed by trusted
|
|
532
|
+
<<plugins-{type}s-{plugin}-ssl_certificate_authorities>> (CAs).
|
|
533
|
+
Please note that the server does not validate the client certificate CN (Common Name) or SAN (Subject Alternative Name).
|
|
534
|
+
|
|
535
|
+
NOTE: This setting can be used only if <<plugins-{type}s-{plugin}-ssl_certificate_authorities>> is set.
|
|
528
536
|
|
|
529
537
|
[id="plugins-{type}s-{plugin}-tls_max_version"]
|
|
530
538
|
===== `tls_max_version`
|
|
@@ -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.
|
|
5
|
-
require_jar('io.netty', 'netty-codec', '4.1.
|
|
6
|
-
require_jar('io.netty', 'netty-common', '4.1.
|
|
7
|
-
require_jar('io.netty', 'netty-transport', '4.1.
|
|
8
|
-
require_jar('io.netty', 'netty-handler', '4.1.
|
|
9
|
-
require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.
|
|
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')
|
|
10
10
|
require_jar('org.javassist', 'javassist', '3.24.0-GA')
|
|
11
|
-
require_jar('org.logstash.beats', 'logstash-input-beats', '6.6.
|
|
11
|
+
require_jar('org.logstash.beats', 'logstash-input-beats', '6.6.3')
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
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.
|
|
4
|
+
version: 6.6.3
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-07-03 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.
|
|
324
|
-
- vendor/jar-dependencies/io/netty/netty-codec/4.1.
|
|
325
|
-
- vendor/jar-dependencies/io/netty/netty-common/4.1.
|
|
326
|
-
- vendor/jar-dependencies/io/netty/netty-handler/4.1.
|
|
327
|
-
- vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.
|
|
328
|
-
- vendor/jar-dependencies/io/netty/netty-transport/4.1.
|
|
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
|
|
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.
|
|
330
|
+
- vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/6.6.3/logstash-input-beats-6.6.3.jar
|
|
331
331
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
|
332
332
|
licenses:
|
|
333
333
|
- Apache License (2.0)
|