Skip to content

Commit 3d7248e

Browse files
author
github-actions
committed
Bump CHANGELOG for release 0.5.0
1 parent bb9b929 commit 3d7248e

File tree

2 files changed

+24
-20
lines changed

2 files changed

+24
-20
lines changed

CHANGELOG.md

+23-19
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,28 @@
22

33
## [Unreleased]
44

5+
## [0.5.0] - 2022-09-22
6+
57
### Added
68

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)).
2527

2628
## [0.4.0] - 2022-08-31
2729

@@ -69,7 +71,9 @@ New properties are:
6971

7072
- Implement basic support for Http connector for Flink SQL
7173

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
7377

7478
[0.4.0]: https://github.com/getindata/flink-http-connector/compare/0.3.0...0.4.0
7579

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323

2424
<groupId>com.getindata</groupId>
2525
<artifactId>flink-http-connector</artifactId>
26-
<version>0.5.0-SNAPSHOT</version>
26+
<version>0.5.0</version>
2727
<packaging>jar</packaging>
2828

2929
<name>flink-http-connector</name>

0 commit comments

Comments
 (0)