Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit fb34158

Browse filesBrowse files
authored
Stage events 3.6.0 and sdk-transformer 2.0.8 (aws#188)
* Bump junit and lombok dependencies in events and events-sdk libs * Stage events v3.6.0 and sdk-transformer v2.0.8
1 parent 71eeb78 commit fb34158
Copy full SHA for fb34158

File tree

Expand file treeCollapse file tree

6 files changed

+24
-12
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

6 files changed

+24
-12
lines changed
Open diff view settings
Collapse file

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

Copy file name to clipboardExpand all lines: aws-lambda-java-events-sdk-transformer/README.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ Add the following Apache Maven dependencies to your `pom.xml` file:
1616
<dependency>
1717
<groupId>com.amazonaws</groupId>
1818
<artifactId>aws-lambda-java-events-sdk-transformer</artifactId>
19-
<version>2.0.7</version>
19+
<version>2.0.8</version>
2020
</dependency>
2121
<dependency>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-lambda-java-events</artifactId>
24-
<version>3.5.0</version>
24+
<version>3.6.0</version>
2525
</dependency>
2626
</dependencies>
2727
```
Collapse file

‎aws-lambda-java-events-sdk-transformer/RELEASE.CHANGELOG.md‎

Copy file name to clipboardExpand all lines: aws-lambda-java-events-sdk-transformer/RELEASE.CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### November 06, 2020
2+
`2.0.8`:
3+
- Bumped `aws-lambda-java-events` to version `3.6.0`
4+
- Bumped `junit-jupiter-engine` to version `5.7.0`
5+
16
### October 28, 2020
27
`2.0.7`:
38
- Bumped `aws-lambda-java-events` to version `3.5.0`
Collapse file

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

Copy file name to clipboardExpand all lines: aws-lambda-java-events-sdk-transformer/pom.xml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-lambda-java-events-sdk-transformer</artifactId>
8-
<version>2.0.7</version>
8+
<version>2.0.8</version>
99
<packaging>jar</packaging>
1010

1111
<name>AWS Lambda Java Events SDK Transformer Library</name>
@@ -55,14 +55,14 @@
5555
<dependency>
5656
<groupId>com.amazonaws</groupId>
5757
<artifactId>aws-lambda-java-events</artifactId>
58-
<version>3.5.0</version>
58+
<version>3.6.0</version>
5959
<scope>provided</scope>
6060
</dependency>
6161

6262
<dependency>
6363
<groupId>org.junit.jupiter</groupId>
6464
<artifactId>junit-jupiter-engine</artifactId>
65-
<version>5.6.2</version>
65+
<version>5.7.0</version>
6666
<scope>test</scope>
6767
</dependency>
6868
</dependencies>
Collapse file

‎aws-lambda-java-events/README.md‎

Copy file name to clipboardExpand all lines: aws-lambda-java-events/README.md
+5-4Lines changed: 5 additions & 4 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# AWS Lambda Java Events v3
22

33
### Event Models Supported
4+
* `ActiveMQEvent`
45
* `APIGatewayCustomAuthorizerEvent`
56
* `APIGatewayProxyRequestEvent`
67
* `APIGatewayProxyResponseEvent`
@@ -57,7 +58,7 @@
5758
<dependency>
5859
<groupId>com.amazonaws</groupId>
5960
<artifactId>aws-lambda-java-events</artifactId>
60-
<version>3.5.0</version>
61+
<version>3.6.0</version>
6162
</dependency>
6263
...
6364
</dependencies>
@@ -67,19 +68,19 @@
6768

6869
```groovy
6970
'com.amazonaws:aws-lambda-java-core:1.2.1'
70-
'com.amazonaws:aws-lambda-java-events:3.5.0'
71+
'com.amazonaws:aws-lambda-java-events:3.6.0'
7172
```
7273

7374
[Leiningen](http://leiningen.org) and [Boot](http://boot-clj.com)
7475

7576
```clojure
7677
[com.amazonaws/aws-lambda-java-core "1.2.1"]
77-
[com.amazonaws/aws-lambda-java-events "3.5.0"]
78+
[com.amazonaws/aws-lambda-java-events "3.6.0"]
7879
```
7980

8081
[sbt](http://www.scala-sbt.org)
8182

8283
```scala
8384
"com.amazonaws" % "aws-lambda-java-core" % "1.2.1"
84-
"com.amazonaws" % "aws-lambda-java-events" % "3.5.0"
85+
"com.amazonaws" % "aws-lambda-java-events" % "3.6.0"
8586
```
Collapse file

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

Copy file name to clipboardExpand all lines: aws-lambda-java-events/RELEASE.CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### November 06, 2020
2+
`3.6.0`:
3+
- Added support for Amazon `ActiveMQ` event: ([#185](https://github.com/aws/aws-lambda-java-libs/pull/185))
4+
- Bumped `junit-jupiter-engine` to version `5.7.0`
5+
- Bumped `lombok` to version `1.18.16`
6+
17
### October 28, 2020
28
`3.5.0`:
39
- Added support for S3 Batch events: ([#179](https://github.com/aws/aws-lambda-java-libs/pull/179))
Collapse file

‎aws-lambda-java-events/pom.xml‎

Copy file name to clipboardExpand all lines: aws-lambda-java-events/pom.xml
+3-3Lines changed: 3 additions & 3 deletions
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.5.0</version>
8+
<version>3.6.0</version>
99
<packaging>jar</packaging>
1010

1111
<name>AWS Lambda Java Events Library</name>
@@ -53,13 +53,13 @@
5353
<dependency>
5454
<groupId>org.junit.jupiter</groupId>
5555
<artifactId>junit-jupiter-engine</artifactId>
56-
<version>5.5.2</version>
56+
<version>5.7.0</version>
5757
<scope>test</scope>
5858
</dependency>
5959
<dependency>
6060
<groupId>org.projectlombok</groupId>
6161
<artifactId>lombok</artifactId>
62-
<version>1.18.12</version>
62+
<version>1.18.16</version>
6363
<scope>provided</scope>
6464
</dependency>
6565
</dependencies>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.