- SSL settings that were marked deprecated in version
1.6.0
are now marked obsolete, and will prevent the plugin from starting.- These settings are:
cacert
, which should be replaced byssl_certificate_authorities
client_cert
, which should be replaced byssl_certificate
client_key
, which should be replaced byssl_key
keystore
, which should be replaced byssl_keystore_path
keystore_password
, which should be replaced byssl_keystore_password
keystore_type
, which should be replaced byssl_keystore_type
truststore
, which should be replaced byssl_truststore_path>
truststore_password
, which should be replaced byssl_truststore_password
truststore_type
, which should be replaced byssl_truststore_type
- #54
- Added new
ssl_enabled
setting for enabling/disabling the SSL configurations #52
- Don't process response when the body is empty. #50
- Added standardized SSL settings and deprecates their non-standard counterparts. Deprecated settings will continue to work, and will provide pipeline maintainers with guidance toward using their standardized counterparts #49
- Added new
ssl_truststore_path
,ssl_truststore_password
, andssl_truststore_type
settings for configuring SSL-trust using a PKCS-12 or JKS trust store, deprecating theirtruststore
,truststore_password
, andtruststore_type
counterparts. - Added new
ssl_certificate_authorities
setting for configuring SSL-trust using a PEM-formatted list certificate authorities, deprecating itscacert
counterpart. - Added new
ssl_keystore_path
,ssl_keystore_password
, andssl_keystore_type
settings for configuring SSL-identity using a PKCS-12 or JKS key store, deprecating theirkeystore
,keystore_password
, andkeystore_type
counterparts. - Added new
ssl_certificate
andssl_key
settings for configuring SSL-identity using a PEM-formatted certificate/key pair, deprecating theirclient_cert
andclient_key
counterparts. - Added the
ssl_cipher_suites
option
- DOC: add clarification on sending data as json #48
- Fix: resolve content type when a content-type header contains an array #46
- Fix: don't process response body for HEAD requests #41
- Feat: added ssl_supported_protocols option #38
- Feat: support ssl_verification_mode option #37
- Fix: do not set content-type if provided by user #36
- Feat: improve ECS compatibility #35
- Add support for PUT requests #34
- Fixed exception when using debug logging #14
- Fixed minor documentation issues #9
- Minor documentation fixes
- Beta version of HTTP filter plugin based on @lucashenning's REST filter.