|
2 | 2 |
|
3 | 3 | ## [Unreleased] |
4 | 4 |
|
| 5 | +## [0.5.0] - 2022-09-22 |
| 6 | + |
5 | 7 | ### Added |
6 | 8 |
|
7 | | -- Add Http Header value preprocessor mechanism, that can preprocess defined header value before setting it on the request. |
8 | | -- Allow user to specify `Authorization` header for Basic Authentication. The value will be converted to Base64, |
9 | | - or if it starts from prefix `Basic `, it will be used as is (without any extra modification). |
10 | | -- Add TLS and mTLS support for Http Sink and Lookup Source connectors. |
11 | | -New properties are: |
12 | | - - `gid.connector.http.security.cert.server` - path to server's certificate. |
13 | | - - `gid.connector.http.security.cert.client` - path to connector's certificate. |
14 | | - - `gid.connector.http.security.key.client` - path to connector's private key. |
15 | | - - `gid.connector.http.security.cert.server.allowSelfSigned` - allowing for self-signed certificates without adding them to KeyStore (not recommended for a production). |
16 | | -- Add [LookupQueryCreator](src/main/java/com/getindata/connectors/http/LookupQueryCreator.java) and |
17 | | - [LookupQueryCreatorFactory](src/main/java/com/getindata/connectors/http/LookupQueryCreatorFactory.java) interfaces |
18 | | - (along with a "default" |
19 | | - [GenericGetQueryCreator](src/main/java/com/getindata/connectors/http/internal/table/lookup/querycreators/GenericGetQueryCreator.java) |
20 | | - implementation) for customization of queries prepared by Lookup Source for its HTTP requests. |
21 | | -- Add [ElasticSearchLiteQueryCreator](src/main/java/com/getindata/connectors/http/internal/table/lookup/querycreators/ElasticSearchLiteQueryCreator.java) |
22 | | - that prepares [`q` parameter query](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html#search-api-query-params-q) |
23 | | - using Lucene query string syntax (in first versions of ElasticSearch called |
24 | | - [Search _Lite_](https://www.elastic.co/guide/en/elasticsearch/guide/current/search-lite.html)). |
| 9 | +- Add Http Header value preprocessor mechanism, that can preprocess defined header value before setting it on the request. |
| 10 | +- Allow user to specify `Authorization` header for Basic Authentication. The value will be converted to Base64, |
| 11 | + or if it starts from prefix `Basic `, it will be used as is (without any extra modification). |
| 12 | +- Add TLS and mTLS support for Http Sink and Lookup Source connectors. |
| 13 | + New properties are: |
| 14 | + - `gid.connector.http.security.cert.server` - path to server's certificate. |
| 15 | + - `gid.connector.http.security.cert.client` - path to connector's certificate. |
| 16 | + - `gid.connector.http.security.key.client` - path to connector's private key. |
| 17 | + - `gid.connector.http.security.cert.server.allowSelfSigned` - allowing for self-signed certificates without adding them to KeyStore (not recommended for a production). |
| 18 | +- Add [LookupQueryCreator](src/main/java/com/getindata/connectors/http/LookupQueryCreator.java) and |
| 19 | + [LookupQueryCreatorFactory](src/main/java/com/getindata/connectors/http/LookupQueryCreatorFactory.java) interfaces |
| 20 | + (along with a "default" |
| 21 | + [GenericGetQueryCreator](src/main/java/com/getindata/connectors/http/internal/table/lookup/querycreators/GenericGetQueryCreator.java) |
| 22 | + implementation) for customization of queries prepared by Lookup Source for its HTTP requests. |
| 23 | +- Add [ElasticSearchLiteQueryCreator](src/main/java/com/getindata/connectors/http/internal/table/lookup/querycreators/ElasticSearchLiteQueryCreator.java) |
| 24 | + that prepares [`q` parameter query](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html#search-api-query-params-q) |
| 25 | + using Lucene query string syntax (in first versions of ElasticSearch called |
| 26 | + [Search _Lite_](https://www.elastic.co/guide/en/elasticsearch/guide/current/search-lite.html)). |
25 | 27 |
|
26 | 28 | ## [0.4.0] - 2022-08-31 |
27 | 29 |
|
@@ -69,7 +71,9 @@ New properties are: |
69 | 71 |
|
70 | 72 | - Implement basic support for Http connector for Flink SQL |
71 | 73 |
|
72 | | -[Unreleased]: https://github.com/getindata/flink-http-connector/compare/0.4.0...HEAD |
| 74 | +[Unreleased]: https://github.com/getindata/flink-http-connector/compare/0.5.0...HEAD |
| 75 | + |
| 76 | +[0.5.0]: https://github.com/getindata/flink-http-connector/compare/0.4.0...0.5.0 |
73 | 77 |
|
74 | 78 | [0.4.0]: https://github.com/getindata/flink-http-connector/compare/0.3.0...0.4.0 |
75 | 79 |
|
|
0 commit comments