File tree Expand file tree Collapse file tree 6 files changed +22
-11
lines changed
src/main/java/software/amazon/kinesis/retrieval
amazon-kinesis-client-multilang Expand file tree Collapse file tree 6 files changed +22
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ### Release 2.2.11 (May 28, 2020)
4
+ [ Milestone #51 ] ( https://github.com/awslabs/amazon-kinesis-client/milestone/51 )
5
+ * Adjusting HTTP2 initial window size to 512 KB
6
+ * [ PR #706 ] ( https://github.com/awslabs/amazon-kinesis-client/pull/706 )
7
+ * Updating protobuf-java to version 3.11.4
8
+ * [ PR #718 ] ( https://github.com/awslabs/amazon-kinesis-client/pull/718 )
9
+ * Updating the AWS Java SDK to version 2.13.25
10
+ * [ PR #722 ] ( https://github.com/awslabs/amazon-kinesis-client/pull/722 )
11
+
3
12
### Release 2.2.10 (March 26, 2020)
4
13
[ Milestone #48 ] ( https://github.com/awslabs/amazon-kinesis-client/milestone/48 )
5
14
* Fixing a bug in DynamoDB billing mode support for special regions.
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ The recommended way to use the KCL for Java is to consume it from Maven.
47
47
<dependency >
48
48
<groupId >software.amazon.kinesis</groupId >
49
49
<artifactId >amazon-kinesis-client</artifactId >
50
- <version >2.2.9 </version >
50
+ <version >2.2.11 </version >
51
51
</dependency >
52
52
```
53
53
@@ -63,12 +63,14 @@ The recommended way to use the KCL for Java is to consume it from Maven.
63
63
64
64
## Release Notes
65
65
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 )
66
+ ### Release 2.2.11 (May 28, 2020)
67
+ [ Milestone #51 ] ( https://github.com/awslabs/amazon-kinesis-client/milestone/51 )
68
+ * Adjusting HTTP2 initial window size to 512 KB
69
+ * [ PR #706 ] ( https://github.com/awslabs/amazon-kinesis-client/pull/706 )
70
+ * Updating protobuf-java to version 3.11.4
71
+ * [ PR #718 ] ( https://github.com/awslabs/amazon-kinesis-client/pull/718 )
72
+ * Updating the AWS Java SDK to version 2.13.25
73
+ * [ PR #722 ] ( https://github.com/awslabs/amazon-kinesis-client/pull/722 )
72
74
73
75
### For remaining release notes check ** [ CHANGELOG.md] [ changelog-md ] ** .
74
76
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.11-SNAPSHOT </version >
24
+ <version >2.2.11</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.11-SNAPSHOT </version >
25
+ <version >2.2.11</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.11-SNAPSHOT " ;
37
+ public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.11" ;
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.11-SNAPSHOT </version >
25
+ <version >2.2.11</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