From c8990d93aae26f3e4970d86222950bcc9313980a Mon Sep 17 00:00:00 2001 From: Wesley Pettit Date: Thu, 12 Dec 2019 13:23:39 -0800 Subject: [PATCH 1/4] Bump Fluent Bit version to patch 1.3.4 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b8fbc10e7..c15668243 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM amazonlinux:latest as builder # Fluent Bit version; update these for each release ENV FLB_MAJOR 1 ENV FLB_MINOR 3 -ENV FLB_PATCH 3 -ENV FLB_VERSION 1.3.3 +ENV FLB_PATCH 4 +ENV FLB_VERSION 1.3.4 # branch to pull parsers from in github.com/fluent/fluent-bit-docker-image ENV FLB_DOCKER_BRANCH 1.3 From 3d0d16d401817af8c8b4f643555320a4232ebec1 Mon Sep 17 00:00:00 2001 From: Wesley Pettit Date: Thu, 12 Dec 2019 13:23:48 -0800 Subject: [PATCH 2/4] Bump version to 2.1.0 --- AWS_FOR_FLUENT_BIT_VERSION | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/AWS_FOR_FLUENT_BIT_VERSION b/AWS_FOR_FLUENT_BIT_VERSION index 227cea215..7ec1d6db4 100644 --- a/AWS_FOR_FLUENT_BIT_VERSION +++ b/AWS_FOR_FLUENT_BIT_VERSION @@ -1 +1 @@ -2.0.0 +2.1.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index f16c8dc2d..f27816925 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +### 2.1.0 + +This release includes: +* An Amazon Linux 2 Base +* Fluent Bit 1.3.4 +* Amazon CloudWatch Logs for Fluent Bit 1.1.0 +* Amazon Kinesis Streams for Fluent Bit 1.1.0 +* Amazon Kinesis Firehose for Fluent Bit 1.1.0 + +Compared to `2.0.0` this release adds: +* Bug - Container exits with code 137 when stopped - [#11](https://github.com/aws/aws-for-fluent-bit/issues/11) +* Feature - Support IAM Roles for Service Accounts in Amazon EKS in all plugins + * [kinesis:6](https://github.com/aws/amazon-kinesis-streams-for-fluent-bit/pull/6) + * [firehose:17](https://github.com/aws/amazon-kinesis-firehose-for-fluent-bit/pull/17) + * [cloudwatch:33](https://github.com/aws/amazon-cloudwatch-logs-for-fluent-bit/pull/33) +* Feature - Add `credentials_endpoint` to CloudWatch plugin - [cloudwatch:36](https://github.com/aws/amazon-cloudwatch-logs-for-fluent-bit/pull/36) +* Bug - A single CloudWatch Logs PutLogEvents request can not contain logs that span more than 24 hours - [cloudwatch:29](https://github.com/aws/amazon-cloudwatch-logs-for-fluent-bit/issues/29) + ### 2.0.0 **Note:** This is the first AWS for Fluent Bit release under our new versioning scheme; previously the image was versioned by the Fluent Bit version it contained. Please see the project README for an explanation of how we version this project. From 0dcd10b0567e1d96e29303c21b66cb459cd82b99 Mon Sep 17 00:00:00 2001 From: Wesley Pettit Date: Thu, 12 Dec 2019 13:37:39 -0800 Subject: [PATCH 3/4] Remove unused env vars in Dockerfile --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c15668243..91ebdba24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,6 @@ FROM amazonlinux:latest as builder # Fluent Bit version; update these for each release -ENV FLB_MAJOR 1 -ENV FLB_MINOR 3 -ENV FLB_PATCH 4 ENV FLB_VERSION 1.3.4 # branch to pull parsers from in github.com/fluent/fluent-bit-docker-image ENV FLB_DOCKER_BRANCH 1.3 From 39c5369438fbf7eb658353aacf8bee29c65b7335 Mon Sep 17 00:00:00 2001 From: Wesley Pettit Date: Thu, 12 Dec 2019 14:50:55 -0800 Subject: [PATCH 4/4] Edit description of exit code bug --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f27816925..eddafd79b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ This release includes: * Amazon Kinesis Firehose for Fluent Bit 1.1.0 Compared to `2.0.0` this release adds: -* Bug - Container exits with code 137 when stopped - [#11](https://github.com/aws/aws-for-fluent-bit/issues/11) +* Bug - Container exits with code 0 when it gracefully shuts down - [#11](https://github.com/aws/aws-for-fluent-bit/issues/11) * Feature - Support IAM Roles for Service Accounts in Amazon EKS in all plugins * [kinesis:6](https://github.com/aws/amazon-kinesis-streams-for-fluent-bit/pull/6) * [firehose:17](https://github.com/aws/amazon-kinesis-firehose-for-fluent-bit/pull/17)