Skip to content

Commit 73f6ad5

Browse files
committed
Prepare for 0.2.0 release
1 parent b8999be commit 73f6ad5

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

CHANGELOG

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
Version 0.2.0 (2024-01-16)
2+
--------------------------
3+
Update common-streams to 0.3.0 (#26)
4+
Loader to start healthy if no privilege to create tables but table already exists (#29)
5+
Retry logs should express delays in milliseconds (#28)
6+
Add config parser specs (#27)
7+
Separate retry policies for transient errors and setup errors (#24)
8+
Extend app health with bad sink (#19)
9+
Bump snappy-java to 1.1.10.4
10+
Bump reactor-netty-http to 1.0.39
11+
Bump netty to 4.1.100.Final
12+
Refactor Channel to allow testing retries (#21)
13+
Use new badrows serializer checking max record size (#16)
14+
Split out channel resource management into a generic Coldswap (#20)
15+
Acquiring channel should not block graceful shutdown
16+
Separate app name and version in alert payload (#13)
17+
Implement alerting using webhook (#12)
18+
Parse events from bytes instead of string (#10)
19+
Don't crash app for Snowflake failures (#11)
20+
121
Version 0.1.0 (2023-11-29)
222
--------------------------
323
Initial release

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Basic usage:
1919
```bash
2020
docker run \
2121
-v /path/to/config.hocon:/var/config.hocon \
22-
snowplow/snowflake-loader-kafka:0.1.0 \
22+
snowplow/snowflake-loader-kafka:0.2.0 \
2323
--config /var/config.hocon
2424
```
2525

@@ -30,7 +30,7 @@ The GCP snowflake loader reads the stream of enriched events from Pubsub.
3030
```bash
3131
docker run \
3232
-v /path/to/config.hocon:/var/config.hocon \
33-
snowplow/snowflake-loader-pubsub:0.1.0 \
33+
snowplow/snowflake-loader-pubsub:0.2.0 \
3434
--config /var/config.hocon
3535
```
3636

@@ -41,7 +41,7 @@ The AWS snowflake loader reads the stream of enriched events from Kinesis.
4141
```bash
4242
docker run \
4343
-v /path/to/config.hocon:/var/config.hocon \
44-
snowplow/snowflake-loader-kinesis:0.1.0 \
44+
snowplow/snowflake-loader-kinesis:0.2.0 \
4545
--config /var/config.hocon
4646
```
4747

@@ -71,7 +71,7 @@ Licensed under the [Snowplow Community License](https://docs.snowplow.io/communi
7171
[build-image]: https://github.com/snowplow-incubator/snowplow-snowflake-streaming-loader/workflows/CI/badge.svg
7272
[build]: https://github.com/snowplow-incubator/snowplow-snowflake-streaming-loader/actions/workflows/ci.yml
7373

74-
[release-image]: https://img.shields.io/badge/release-0.1.0-blue.svg?style=flat
74+
[release-image]: https://img.shields.io/badge/release-0.2.0-blue.svg?style=flat
7575
[releases]: https://github.com/snowplow-incubator/snowplow-snowflake-streaming-loader/releases
7676

7777
[license]: https://docs.snowplow.io/docs/contributing/community-license-faq/

0 commit comments

Comments
 (0)