0.5.0
What's Changed
- Adding TLS and mTLS support for Http Connector by @kristoffSC in #25
- Add TLS and mTLS support for Http Sink and Lookup Source connectors.
New properties are:gid.connector.http.security.cert.server
- path to server's certificate.gid.connector.http.security.cert.client
- path to connector's certificate.gid.connector.http.security.key.client
- path to connector's private key.gid.connector.http.security.cert.server.allowSelfSigned
- allowing for self-signed certificates without adding them to KeyStore (not recommended for a production).
- Add TLS and mTLS support for Http Sink and Lookup Source connectors.
- BasicAuth - adding HeaderPreprocessor and support for Basic Authentication mechanism. by @kristoffSC in #26
- Add Http Header value preprocessor mechanism, that can preprocess defined header value before setting it on the request.
- Allow user to specify
Authorization
header for Basic Authentication. The value will be converted to Base64, or if it starts from prefixBasic
, it will be used as is (without any extra modification).
- Adapt Http Lookup Source to Elastic by @swtwsk in #27
- Add LookupQueryCreator and LookupQueryCreatorFactory interfaces (along with a "default" GenericGetQueryCreator implementation) for customization of queries prepared by Lookup Source for its HTTP requests.
- Add ElasticSearchLiteQueryCreator that prepares
q
parameter query using Lucene query string syntax (in first versions of ElasticSearch called Search Lite).
Full Changelog: https://github.com/getindata/flink-http-connector/commits/0.5.0