Skip to content

Tags: logstash-plugins/logstash-input-tcp

Tags

v6.4.4

Toggle v6.4.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
upgrade netty to 4.1.115 (#227)

v6.4.3

Toggle v6.4.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
update dependencies for tcp input: netty, jruby, and commons-io (#224)

v6.4.2

Toggle v6.4.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update Netty to 4.1.109 (#220)

* Update Netty version to 4.1.109

v6.4.1

Toggle v6.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bump netty to 4.1.100 (#217)

* bump netty to 4.1.100

* bump netty to 4.1.100

* Update CHANGELOG.md

v6.4.0

Toggle v6.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Standardize and add SSL settings (#213)

This commit reviewed and deprecated the following SSL settings to comply with Logstash's naming convention:
- ssl_enable in favor of ssl_enabled
- ssl_cert in favor of ssl_certificate
- ssl_verify in favor of ssl_client_authentication when mode is server
- ssl_verify in favor of ssl_verification_mode when mode is client

It also added a few SSL configuration validations:
- Added a warning log when ssl_* configs are set but ssl_enabled => false
- ssl_ceritifcate & ssl_key config validation, including checking if both files are readable.
- Ensure no ssl_client_authentication when mode => client
- Ensure no ssl_verification_mode when mode => server
- Ensure an ssl_certificate is provided when mode => server
- Ensure ssl_certificate_authorities is provided when mode => server and it's using the new configuration (ssl_client_authentication)

v6.3.5

Toggle v6.3.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
update netty to 4.1.94 and other dependencies (#216)

v6.3.4

Toggle v6.3.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
reduce error logging on connection resets (#214)

log "Connection reset" error in INFO level
Fixed: #215

v6.3.3

Toggle v6.3.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bump netty to 4.1.93 (#212)

v6.3.2

Toggle v6.3.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update Netty to 4.1.87 (#209)

* Update Netty to 4.1.87

v6.3.1

Toggle v6.3.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix SSL Subject regression in server mode (#199)

* Fix SSL Subject regression in server mode

Alters the TCP#decode_buffer signature to accept the _ssl subject_ instead of
expecting a ruby socket, so that it can be interoperable between the ruby-based
client mode and the netty-powered server mode.

In server mode, the SSL subject is extracted _once_ when initializing the
connection IFF SSL is enabled and verification is turned on.

Co-authored-by: Will Weber <[email protected]>
Closes: #159

* include docker jdk17 env

Co-authored-by: Will Weber <[email protected]>