From f55fc5c4c439c71f006d0625fc5c0544e38f0ee1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Poniedzia=C5=82ek?= Date: Mon, 30 Sep 2024 13:26:13 +0200 Subject: [PATCH] Prepare for 3.0.0 release --- CHANGELOG | 18 ++++++++++++++++++ README.md | 2 +- VERSION | 2 +- cmd/constants.go | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 40293c46..56d29cba 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,21 @@ +Version 3.0.0 (2024-11-06) +-------------------------- +Ensure all timestamps used in reporting are UTC +Add JQ filter +Patch bug in avg request latency calculation (#376) +Update dependencies (#371) +Add expiry config + base64 validation to the GTM SS preview header transformation +Add boolean config to enable TLS (#370) +Add configurable retries for target writes +Add in memory source +Add empty `/tmp/config.hcl` file to Dockerfile +Feat/batch templating (#347) +Remove env configuration +Add a note on preserving transformation input +Patch kinesis source leader action frequency setting +Remove Lua transformation +Add jq generic mapper transformation + Version 2.4.2 (2024-09-05) -------------------------- Use existing timestamp for request finish in measuring latency metrics diff --git a/README.md b/README.md index 7c8e6eed..918e2e08 100644 --- a/README.md +++ b/README.md @@ -18,5 +18,5 @@ The AWS-specific distribution contains everything, including the Kinesis source, To comply with the [Amazon Software License](https://github.com/twitchscience/kinsumer/blob/master/LICENSE), you may only use this distribution of Snowbridge _“with the web services, computing platforms or applications provided by Amazon.com, Inc. or its affiliates, including Amazon Web Services, Inc.”_ -[release-image]: http://img.shields.io/badge/golang-2.4.2-6ad7e5.svg?style=flat +[release-image]: http://img.shields.io/badge/golang-3.0.0-6ad7e5.svg?style=flat [releases]: https://github.com/snowplow/snowbridge/releases/ diff --git a/VERSION b/VERSION index 8e8299dc..4a36342f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.4.2 +3.0.0 diff --git a/cmd/constants.go b/cmd/constants.go index 8c5f5869..511247bc 100644 --- a/cmd/constants.go +++ b/cmd/constants.go @@ -13,7 +13,7 @@ package cmd const ( // AppVersion is the current version of the app - AppVersion = "2.4.2" + AppVersion = "3.0.0" // AppName is the name of the application to use in logging / places that require the artifact AppName = "snowbridge"