Skip to content

Tags: logstash-plugins/logstash-input-tcp

Tags

v7.0.2

Toggle v7.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #232 from mashhurs/upgrade-netty

Upgrade netty to 4.1.118

v6.4.6

Toggle v6.4.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #233 from mashhurs/upgrade-netty-6.x

Upgrade netty to 4.1.118

v7.0.1

Toggle v7.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Name netty threads with plugin id and their purpose (#229)

v6.4.5

Toggle v6.4.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Backport #229: Name netty threads with plugin id and their purpose (#230

)

Co-authored-by: Mashhur <99575341+mashhurs@users.noreply.github.com>

v7.0.0

Toggle v7.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Mark deprecated SSL settings as obsolete (#228)

* Mark deprecated SSL settings as obsolete

This commit marks the following SSL settings as obsolete:

`ssl_cert`, which should be replaced by `ssl_certificate`
`ssl_enable`, which should be replaced by `ssl_enabled`
`ssl_verify`, which should be replaced by `ssl_client_authentication` when `mode` is `server` or `ssl_verification_mode`when mode is `client`

---------

Co-authored-by: Cas Donoghue <cas.donoghue@gmail.com>
Co-authored-by: Karen Metts <35154725+karenzone@users.noreply.github.com>

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)