parent
db30ac956b
commit
b011206f7b
4 changed files with 22 additions and 4 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -1,5 +1,14 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
### Latest Release (1.14.10 - Feb 15, 2023)
|
### Latest Release (1.15.0 - Jun 8, 2023)
|
||||||
|
* **[#1108](https://github.com/awslabs/amazon-kinesis-client/pull/1108) Add support for Stream ARNs**
|
||||||
|
* [#1111](https://github.com/awslabs/amazon-kinesis-client/pull/1111) More consistent testing behavior with HashRangesAreAlwaysComplete
|
||||||
|
* [#1054](https://github.com/awslabs/amazon-kinesis-client/pull/1054) Upgrade log4j-core from 2.17.1 to 2.20.0
|
||||||
|
* [#1103](https://github.com/awslabs/amazon-kinesis-client/pull/1103) Upgrade jackson-core from 2.13.0 to 2.15.0
|
||||||
|
* [#943](https://github.com/awslabs/amazon-kinesis-client/pull/943) Upgrade nexus-staging-maven-plugin from 1.6.8 to 1.6.13
|
||||||
|
* [#1044](https://github.com/awslabs/amazon-kinesis-client/pull/1044) Upgrade aws-java-sdk.version from 1.12.406 to 1.12.408
|
||||||
|
* [#1055](https://github.com/awslabs/amazon-kinesis-client/pull/1055) Upgrade maven-compiler-plugin from 3.10.0 to 3.11.0
|
||||||
|
|
||||||
|
### Release (1.14.10 - Feb 15, 2023)
|
||||||
* Updated aws-java-sdk from 1.12.130 to 1.12.406
|
* Updated aws-java-sdk from 1.12.130 to 1.12.406
|
||||||
* Updated com.google.protobuf from 3.19.4 to 3.19.6
|
* Updated com.google.protobuf from 3.19.4 to 3.19.6
|
||||||
* [Issue #1026](https://github.com/awslabs/amazon-kinesis-client/issues/1026)
|
* [Issue #1026](https://github.com/awslabs/amazon-kinesis-client/issues/1026)
|
||||||
|
|
|
||||||
11
README.md
11
README.md
|
|
@ -34,7 +34,16 @@ To make it easier for developers to write record processors in other languages,
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
### Latest Release (1.14.10 - Feb 15, 2023)
|
### Latest Release (1.15.0 - Jun 8, 2023)
|
||||||
|
* **[#1108](https://github.com/awslabs/amazon-kinesis-client/pull/1108) Add support for Stream ARNs**
|
||||||
|
* [#1111](https://github.com/awslabs/amazon-kinesis-client/pull/1111) More consistent testing behavior with HashRangesAreAlwaysComplete
|
||||||
|
* [#1054](https://github.com/awslabs/amazon-kinesis-client/pull/1054) Upgrade log4j-core from 2.17.1 to 2.20.0
|
||||||
|
* [#1103](https://github.com/awslabs/amazon-kinesis-client/pull/1103) Upgrade jackson-core from 2.13.0 to 2.15.0
|
||||||
|
* [#943](https://github.com/awslabs/amazon-kinesis-client/pull/943) Upgrade nexus-staging-maven-plugin from 1.6.8 to 1.6.13
|
||||||
|
* [#1044](https://github.com/awslabs/amazon-kinesis-client/pull/1044) Upgrade aws-java-sdk.version from 1.12.406 to 1.12.408
|
||||||
|
* [#1055](https://github.com/awslabs/amazon-kinesis-client/pull/1055) Upgrade maven-compiler-plugin from 3.10.0 to 3.11.0
|
||||||
|
|
||||||
|
### Release (1.14.10 - Feb 15, 2023)
|
||||||
* Updated aws-java-sdk from 1.12.130 to 1.12.406
|
* Updated aws-java-sdk from 1.12.130 to 1.12.406
|
||||||
* Updated com.google.protobuf from 3.19.4 to 3.19.6
|
* Updated com.google.protobuf from 3.19.4 to 3.19.6
|
||||||
* [Issue #1026](https://github.com/awslabs/amazon-kinesis-client/issues/1026)
|
* [Issue #1026](https://github.com/awslabs/amazon-kinesis-client/issues/1026)
|
||||||
|
|
|
||||||
2
pom.xml
2
pom.xml
|
|
@ -6,7 +6,7 @@
|
||||||
<artifactId>amazon-kinesis-client</artifactId>
|
<artifactId>amazon-kinesis-client</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<name>Amazon Kinesis Client Library for Java</name>
|
<name>Amazon Kinesis Client Library for Java</name>
|
||||||
<version>1.14.10</version>
|
<version>1.15.0</version>
|
||||||
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
||||||
from Amazon Kinesis.
|
from Amazon Kinesis.
|
||||||
</description>
|
</description>
|
||||||
|
|
|
||||||
|
|
@ -149,7 +149,7 @@ public class KinesisClientLibConfiguration {
|
||||||
/**
|
/**
|
||||||
* User agent set when Amazon Kinesis Client Library makes AWS requests.
|
* User agent set when Amazon Kinesis Client Library makes AWS requests.
|
||||||
*/
|
*/
|
||||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.14.10";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.15.0";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls
|
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue