Skip to content

Bump events lib version to 2.2.9 #128

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 1.8


# Install base modules
- name: Build core with Maven
run: mvn -B package --file aws-lambda-java-core/pom.xml
run: mvn -B install --file aws-lambda-java-core/pom.xml
- name: Build events with Maven
run: mvn -B package --file aws-lambda-java-events/pom.xml
run: mvn -B install --file aws-lambda-java-events/pom.xml

# Package modules that depend on base modules
- name: Build events-sdk-transformer with Maven
run: mvn -B package --file aws-lambda-java-events-sdk-transformer/pom.xml
- name: Build log4j with Maven
Expand Down
2 changes: 1 addition & 1 deletion aws-lambda-java-events-sdk-transformer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Add the following Apache Maven dependencies to your `pom.xml` file:
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-events</artifactId>
<version>2.2.8</version>
<version>2.2.9</version>
</dependency>
</dependencies>
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Apr 29, 2020
`1.0.0`:
- Added AWS SDK V2 transformers for `DynamodbEvent` in `aws-lambda-java-events` versions up to and including `2.2.8`
- Added AWS SDK V2 transformers for `DynamodbEvent` in `aws-lambda-java-events` versions up to and including `2.x`
2 changes: 1 addition & 1 deletion aws-lambda-java-events-sdk-transformer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-events</artifactId>
<version>2.2.8</version>
<version>2.2.9</version>
<scope>provided</scope>
</dependency>

Expand Down
8 changes: 4 additions & 4 deletions aws-lambda-java-events/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ so the dependencies section in the pom.xml file would like this
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-events</artifactId>
<version>2.2.8</version>
<version>2.2.9</version>
</dependency>
...
</dependencies>
Expand All @@ -69,7 +69,7 @@ For the S3 event the pom would look like this:
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-events</artifactId>
<version>2.2.8</version>
<version>2.2.9</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
Expand All @@ -95,7 +95,7 @@ For the Kinesis event
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-events</artifactId>
<version>2.2.8</version>
<version>2.2.9</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
Expand All @@ -121,7 +121,7 @@ For the Dynamodb event
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-events</artifactId>
<version>2.2.8</version>
<version>2.2.9</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
Expand Down
4 changes: 4 additions & 0 deletions aws-lambda-java-events/RELEASE.CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### May 13, 2020
`2.2.9`:
- Added field `operationName` to `APIGatewayProxyRequestEvent` ([#126](https://github.com/aws/aws-lambda-java-libs/pull/126))

### Apr 28, 2020
`2.2.8`:
- Added missing XML namespace declarations to `pom.xml` file ([#97](https://github.com/aws/aws-lambda-java-libs/issues/97))
Expand Down
2 changes: 1 addition & 1 deletion aws-lambda-java-events/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-events</artifactId>
<version>2.2.8</version>
<version>2.2.9</version>
<packaging>jar</packaging>

<name>AWS Lambda Java Events Library</name>
Expand Down