Skip to content

Commit 96e52cb

Browse files
Bump events version to 3.11.2 (#423)
1 parent 59e3548 commit 96e52cb

File tree

9 files changed

+15
-13
lines changed

9 files changed

+15
-13
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class HandlerStream implements RequestStreamHandler {
4141
<dependency>
4242
<groupId>com.amazonaws</groupId>
4343
<artifactId>aws-lambda-java-core</artifactId>
44-
<version>1.2.1</version>
44+
<version>1.2.2</version>
4545
</dependency>
4646
```
4747

@@ -71,7 +71,7 @@ public class SqsHandler implements RequestHandler<SQSEvent, String> {
7171
<dependency>
7272
<groupId>com.amazonaws</groupId>
7373
<artifactId>aws-lambda-java-events</artifactId>
74-
<version>3.11.0</version>
74+
<version>3.11.2</version>
7575
</dependency>
7676
```
7777

aws-lambda-java-events-sdk-transformer/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add the following Apache Maven dependencies to your `pom.xml` file:
2121
<dependency>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-lambda-java-events</artifactId>
24-
<version>3.11.0</version>
24+
<version>3.11.2</version>
2525
</dependency>
2626
</dependencies>
2727
```

aws-lambda-java-events-sdk-transformer/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<dependency>
6464
<groupId>com.amazonaws</groupId>
6565
<artifactId>aws-lambda-java-events</artifactId>
66-
<version>3.11.0</version>
66+
<version>3.11.2</version>
6767
<scope>provided</scope>
6868
</dependency>
6969

aws-lambda-java-events/README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@
5555
* `SQSBatchResponse`
5656
* `SQSEvent`
5757

58-
*As of version `3.0.0`, users are no longer required to pull in SDK dependencies in order to use this library.*
59-
6058

6159
### Getting Started
6260

@@ -68,12 +66,12 @@
6866
<dependency>
6967
<groupId>com.amazonaws</groupId>
7068
<artifactId>aws-lambda-java-core</artifactId>
71-
<version>1.2.1</version>
69+
<version>1.2.2</version>
7270
</dependency>
7371
<dependency>
7472
<groupId>com.amazonaws</groupId>
7573
<artifactId>aws-lambda-java-events</artifactId>
76-
<version>3.11.0</version>
74+
<version>3.11.2</version>
7775
</dependency>
7876
...
7977
</dependencies>

aws-lambda-java-events/RELEASE.CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### May 18, 2023
2+
`3.11.2`:
3+
- Add missing fields to API Gateway request context
4+
15
### March 10, 2023
26
`3.11.1`:
37
- Extended ActiveMQEvent with custom properties ([#408](https://github.com/aws/aws-lambda-java-libs/pull/408))

aws-lambda-java-events/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-lambda-java-events</artifactId>
8-
<version>3.11.1</version>
8+
<version>3.11.2</version>
99
<packaging>jar</packaging>
1010

1111
<name>AWS Lambda Java Events Library</name>

aws-lambda-java-log4j2/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<dependency>
4949
<groupId>com.amazonaws</groupId>
5050
<artifactId>aws-lambda-java-core</artifactId>
51-
<version>1.2.1</version>
51+
<version>1.2.2</version>
5252
</dependency>
5353
<dependency>
5454
<groupId>org.apache.logging.log4j</groupId>

aws-lambda-java-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>com.amazonaws</groupId>
4747
<artifactId>aws-lambda-java-events</artifactId>
48-
<version>3.11.1</version>
48+
<version>3.11.2</version>
4949
</dependency>
5050
<dependency>
5151
<groupId>org.junit.jupiter</groupId>

samples/kinesis-firehose-event-handler/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@
4141
<dependency>
4242
<groupId>com.amazonaws</groupId>
4343
<artifactId>aws-lambda-java-core</artifactId>
44-
<version>1.2.1</version>
44+
<version>1.2.2</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>com.amazonaws</groupId>
4848
<artifactId>aws-lambda-java-events</artifactId>
49-
<version>3.11.0</version>
49+
<version>3.11.2</version>
5050
</dependency>
5151

5252
<dependency>

0 commit comments

Comments
 (0)