File tree Expand file tree Collapse file tree 6 files changed +17
-10
lines changed
src/main/java/software/amazon/kinesis/retrieval
amazon-kinesis-client-multilang Expand file tree Collapse file tree 6 files changed +17
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ### Release 2.2.10 (March 26, 2020)
4
+ [ Milestone #48 ] ( https://github.com/awslabs/amazon-kinesis-client/milestone/48 )
5
+ * Fixing a bug in DynamoDB billing mode support for special regions.
6
+ * [ PR #703 ] ( https://github.com/awslabs/amazon-kinesis-client/pull/703 )
7
+ * Adding request id logging to ShardConsumerSubscriber.
8
+ * [ PR #705 ] ( https://github.com/awslabs/amazon-kinesis-client/pull/705 )
9
+
3
10
### Release 2.2.9 (Febuary 17, 2020)
4
11
[ Milestone #47 ] ( https://github.com/awslabs/amazon-kinesis-client/milestone/47 )
5
12
* Updating the AWS SDK version to 2.10.66.
Original file line number Diff line number Diff line change @@ -63,12 +63,12 @@ The recommended way to use the KCL for Java is to consume it from Maven.
63
63
64
64
## Release Notes
65
65
66
- ### Latest Release 2.2.9 (Febuary 17 , 2020)
67
- [ Milestone #47 ] ( https://github.com/awslabs/amazon-kinesis-client/milestone/47 )
68
- * Updating the AWS SDK version to 2.10.66 .
69
- * [ PR #687 ] ( https://github.com/awslabs/amazon-kinesis-client/commit/8aaf2aa11c43f77f459732cdb7d88f4418d367ff )
70
- * Adding request id logging to SubscribeToShard response .
71
- * [ PR #678 ] ( https://github.com/awslabs/amazon-kinesis-client/pull/678 )
66
+ ### Release 2.2.10 (March 26 , 2020)
67
+ [ Milestone #48 ] ( https://github.com/awslabs/amazon-kinesis-client/milestone/48 )
68
+ * Fixing a bug in DynamoDB billing mode support for special regions .
69
+ * [ PR #703 ] ( https://github.com/awslabs/amazon-kinesis-client/pull/703 )
70
+ * Adding request id logging to ShardConsumerSubscriber .
71
+ * [ PR #705 ] ( https://github.com/awslabs/amazon-kinesis-client/pull/705 )
72
72
73
73
### For remaining release notes check ** [ CHANGELOG.md] [ changelog-md ] ** .
74
74
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<artifactId >amazon-kinesis-client-pom</artifactId >
23
23
<groupId >software.amazon.kinesis</groupId >
24
- <version >2.2.10-SNAPSHOT </version >
24
+ <version >2.2.10</version >
25
25
</parent >
26
26
<modelVersion >4.0.0</modelVersion >
27
27
Original file line number Diff line number Diff line change 22
22
<parent >
23
23
<groupId >software.amazon.kinesis</groupId >
24
24
<artifactId >amazon-kinesis-client-pom</artifactId >
25
- <version >2.2.10-SNAPSHOT </version >
25
+ <version >2.2.10</version >
26
26
</parent >
27
27
28
28
<artifactId >amazon-kinesis-client</artifactId >
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public class RetrievalConfig {
34
34
*/
35
35
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java" ;
36
36
37
- public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.10-SNAPSHOT " ;
37
+ public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.10" ;
38
38
39
39
/**
40
40
* Client used to make calls to Kinesis for records retrieval
Original file line number Diff line number Diff line change 22
22
<artifactId >amazon-kinesis-client-pom</artifactId >
23
23
<packaging >pom</packaging >
24
24
<name >Amazon Kinesis Client Library</name >
25
- <version >2.2.10-SNAPSHOT </version >
25
+ <version >2.2.10</version >
26
26
<description >The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
27
27
from Amazon Kinesis.
28
28
</description >
You can’t perform that action at this time.
0 commit comments