Skip to content

Commit

Permalink
Preparation for release 0.15.12 (#602)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenylee-aws authored Oct 18, 2024
1 parent 909b890 commit 0158c0d
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
## Changelog

## 0.15.12
* [#593](https://github.com/awslabs/amazon-kinesis-producer/pull/593) Replace all usage of sys_siglist with strsignal as sys_siglist is deprecated
* [#594](https://github.com/awslabs/amazon-kinesis-producer/pull/594) Check if dimension.value is blank before using it in metrics manager
* [#596](https://github.com/awslabs/amazon-kinesis-producer/pull/596) Update getOldestRecordTimeMillis to avoid potential NullPointerException
* [#600](https://github.com/awslabs/amazon-kinesis-producer/pull/600) Fix build issue after cpp sdk upgrade
* [#597](https://github.com/awslabs/amazon-kinesis-producer/pull/597) Bump cpp sdk from 1.11.62 to 1.11.420 and java sdk from 1.12.772 to 1.12.773
* [#570](https://github.com/awslabs/amazon-kinesis-producer/pull/570) Bump commons-lang from 2.6 to 3.14.0
* [#598](https://github.com/awslabs/amazon-kinesis-producer/pull/598) Bump commons-io:commons-io from 2.13.0 to 2.17.0 in /java/amazon-kinesis-producer to address CVE vulnerability
* [#589](https://github.com/awslabs/amazon-kinesis-producer/pull/589) Bump com.google.protobuf:protobuf-java from 3.21.12 to 3.25.5 in /java/amazon-kinesis-producer to address CVE vulnerability
* [#579](https://github.com/awslabs/amazon-kinesis-producer/pull/579) Bump com.google.guava:guava from 31.1-jre to 33.3.0-jre in /java/amazon-kinesis-producer to address CVE vulnerability
* [#588](https://github.com/awslabs/amazon-kinesis-producer/pull/588) Bump com.amazonaws:aws-java-sdk-core from 1.12.382 to 1.12.772 in /java/amazon-kinesis-producer and java/amazon-kinesis-producer-sample

## 0.15.11
* [#576](https://github.com/awslabs/amazon-kinesis-producer/pull/576) Improve retry logic during stream scaling
* [#571](https://github.com/awslabs/amazon-kinesis-producer/pull/571) Upgrade ch.qos.logback:logback-classic from 1.3.0 to 1.3.12
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,18 @@ If you have further questions [please open a GitHub Issue](https://github.com/aw
This is a restatement of the [notice published](https://docs.aws.amazon.com/streams/latest/dev/kinesis-kpl-upgrades.html) in the [Amazon Kinesis Data Streams Developer Guide][kinesis-developer-guide]

## Release Notes
## 0.15.12
* [#593](https://github.com/awslabs/amazon-kinesis-producer/pull/593) Replace all usage of sys_siglist with strsignal as sys_siglist is deprecated
* [#594](https://github.com/awslabs/amazon-kinesis-producer/pull/594) Check if dimension.value is blank before using it in metrics manager
* [#596](https://github.com/awslabs/amazon-kinesis-producer/pull/596) Update getOldestRecordTimeMillis to avoid potential NullPointerException
* [#600](https://github.com/awslabs/amazon-kinesis-producer/pull/600) Fix build issue after cpp sdk upgrade
* [#597](https://github.com/awslabs/amazon-kinesis-producer/pull/597) Bump cpp sdk from 1.11.62 to 1.11.420 and java sdk from 1.12.772 to 1.12.773
* [#570](https://github.com/awslabs/amazon-kinesis-producer/pull/570) Bump commons-lang from 2.6 to 3.14.0
* [#598](https://github.com/awslabs/amazon-kinesis-producer/pull/598) Bump commons-io:commons-io from 2.13.0 to 2.17.0 in /java/amazon-kinesis-producer to address CVE vulnerability
* [#589](https://github.com/awslabs/amazon-kinesis-producer/pull/589) Bump com.google.protobuf:protobuf-java from 3.21.12 to 3.25.5 in /java/amazon-kinesis-producer to address CVE vulnerability
* [#579](https://github.com/awslabs/amazon-kinesis-producer/pull/579) Bump com.google.guava:guava from 31.1-jre to 33.3.0-jre in /java/amazon-kinesis-producer to address CVE vulnerability
* [#588](https://github.com/awslabs/amazon-kinesis-producer/pull/588) Bump com.amazonaws:aws-java-sdk-core from 1.12.382 to 1.12.772 in /java/amazon-kinesis-producer and java/amazon-kinesis-producer-sample

## 0.15.11
* [#576](https://github.com/awslabs/amazon-kinesis-producer/pull/576) Improve retry logic during stream scaling
* [#571](https://github.com/awslabs/amazon-kinesis-producer/pull/571) Upgrade ch.qos.logback:logback-classic from 1.3.0 to 1.3.12
Expand Down
2 changes: 1 addition & 1 deletion aws/kinesis/core/kinesis_producer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ struct EndpointConfiguration {
sts_endpoint_(sts_endpoint) {}
};

const constexpr char* kVersion = "0.15.11N";
const constexpr char* kVersion = "0.15.12N";
const std::unordered_map< std::string, EndpointConfiguration > kRegionEndpointOverride = {
{ "cn-north-1", { "kinesis.cn-north-1.amazonaws.com.cn", "monitoring.cn-north-1.amazonaws.com.cn" } },
{ "cn-northwest-1", { "kinesis.cn-northwest-1.amazonaws.com.cn", "monitoring.cn-northwest-1.amazonaws.com.cn" } }
Expand Down
2 changes: 1 addition & 1 deletion java/amazon-kinesis-producer-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>amazon-kinesis-producer</artifactId>
<version>0.15.11</version>
<version>0.15.12</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
2 changes: 1 addition & 1 deletion java/amazon-kinesis-producer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.amazonaws</groupId>
<artifactId>amazon-kinesis-producer</artifactId>
<version>0.15.11</version>
<version>0.15.12</version>
<name>Amazon Kinesis Producer Library</name>

<scm>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public final class GlueSchemaRegistrySerializerInstance {

private volatile GlueSchemaRegistrySerializer instance = null;
private static final String USER_AGENT_APP_NAME = "kpl-0.15.11";
private static final String USER_AGENT_APP_NAME = "kpl-0.15.12";

/**
* Instantiate GlueSchemaRegistrySerializer using the KinesisProducerConfiguration.
Expand Down

0 comments on commit 0158c0d

Please sign in to comment.