Skip to content

Commit cdf5e9c

Browse files
committed
'Version 1.5.1 of the AWS CloudTrail Processing Library'
1 parent 1f88ab8 commit cdf5e9c

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

META-INF/MANIFEST.MF

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: AWS CloudTrail Processing Library for Java
44
Bundle-SymbolicName: com.amazonaws.awscloudtrailprocessinglibrary;singleton:=true
5-
Bundle-Version: 1.5.0
5+
Bundle-Version: 1.5.1
66
Bundle-Vendor: Amazon Technologies, Inc
77
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
8-
Require-Bundle: com.amazonaws.sdk;bundle-version="1.11.830"
8+
Require-Bundle: com.amazonaws.sdk;bundle-version="1.12.1"
99
Export-Package: com.amazonaws.services.cloudtrail,
1010
com.amazonaws.services.cloudtrail.processinglibrary,
1111
com.amazonaws.services.cloudtrail.processinglibrary.configuration,

README.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Getting Started
3232
Minimum Requirements
3333
~~~~~~~~~~~~~~~~~~~~
3434

35-
* **AWS Java SDK 1.11.830**: To use the |library|, you'll need the `AWS Java SDK`__.
35+
* **AWS Java SDK 1.12.1**: To use the |library|, you'll need the `AWS Java SDK`__.
3636
* **Java 1.8**: The |library| requires `Java 1.8 (Java SE 8)`__ or later.
3737

3838
.. __: https://github.com/aws/aws-sdk-java
@@ -65,6 +65,10 @@ build, use this command::
6565
Release Notes
6666
-------------
6767

68+
Release 1.5.1 (July 26, 2022)
69+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
70+
* Update AWS Java SDK (S3/SQS) version to 1.12.x
71+
6872
Release 1.5.0 (Jan 26, 2022)
6973
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7074
* Added support for implementing custom S3 manager.

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>aws-cloudtrail-processing-library</artifactId>
66
<packaging>jar</packaging>
77
<name>AWS CloudTrail Processing Library for Java</name>
8-
<version>1.5.0</version>
8+
<version>1.5.1</version>
99
<description>AWS CloudTrail Processing Library for Java helps Java
1010
developers to easily consume and process log files from AWS
1111
CloudTrail.
@@ -26,7 +26,7 @@
2626
</licenses>
2727

2828
<properties>
29-
<aws-java-sdk.version>1.11.830</aws-java-sdk.version>
29+
<aws-java-sdk.version>1.12.1</aws-java-sdk.version>
3030
</properties>
3131

3232
<dependencies>

src/main/java/com/amazonaws/services/cloudtrail/processinglibrary/model/CloudTrailEventData.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,7 @@ public String getApiVersion() {
277277
/**
278278
* Get the recipient account ID
279279
*
280-
* @return the account ID that received this event. This will be the same as the User Identity Element's accountId
281-
* value.
280+
* @return the account ID that received this event.
282281
*/
283282
public String getRecipientAccountId() {
284283
return (String) get(CloudTrailEventField.recipientAccountId.name());

0 commit comments

Comments
 (0)