Skip to content

Commit

Permalink
chore: update the project version to 1.15.0 (#1097)
Browse files Browse the repository at this point in the history
  • Loading branch information
mriccia authored Mar 21, 2023
1 parent 0fdc34b commit 482778b
Show file tree
Hide file tree
Showing 22 changed files with 44 additions and 23 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,27 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo

## [Unreleased]

## [1.15.0] - 2023-03-20

### Added
* Feature: Add DynamoDB provider to parameters module (#1091) by @scottgerring
* Feature: Update to powertools-cloudformation to deprecate `Response.success()` and `Response.failed()` methods. New helper methods are added to make it easier to follow best practices `Response.success(String physicalResourceId)` and `Response.failed(String physicalResourceId)`. For a detailed explanation please read the [powertools-cloudformation documentation page](https://awslabs.github.io/aws-lambda-powertools-java/utilities/custom_resources/). (#1082) by @msailes
* Update how a Lambda request handler method is identified (#1058) by @humanzz

### Maintenance
* Deps: Bump third party dependencies to the latest versions.
* Examples: Import examples from aws-samples/aws-lambda-powertools-examples (#1051) by @scottgerring
* Deprecate withMetricLogger in favor of withMetricsLogger (#1060) by @humanzz
* Update issue templates (#1062) by @machafer
* Send code coverage report (jacoco) to codecov (#1094) by @jeromevdl

### Documentation

* Improve `powertools-cloudformation` docs (#1090) by @mriccia
* Add link to Lambda powertools workshop (#1095) by @scottgerring
* Fix mdocs and git revision plugin integration (#1066) by @machafer


## [1.14.0] - 2023-02-17

### Added
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ Powertools is available in Maven Central. You can use your favourite dependency
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-tracing</artifactId>
<version>1.14.0</version>
<version>1.15.0</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-logging</artifactId>
<version>1.14.0</version>
<version>1.15.0</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-metrics</artifactId>
<version>1.14.0</version>
<version>1.15.0</version>
</dependency>
...
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Examples</name>
Expand Down
2 changes: 1 addition & 1 deletion examples/powertools-examples-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>powertools-examples</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion examples/powertools-examples-idempotency/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>powertools-examples</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion examples/powertools-examples-parameters/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>powertools-examples</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion examples/powertools-examples-serialization/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>powertools-examples</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion examples/powertools-examples-sqs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>powertools-examples</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion examples/powertools-examples-validation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>powertools-examples</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ extra_javascript:

extra:
powertools:
version: 1.14.0
version: 1.15.0

repo_url: https://github.com/awslabs/aws-lambda-powertools-java
edit_uri: edit/master/docs
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-parent</artifactId>
<version>1.14.0</version>
<version>1.15.0</version>
<packaging>pom</packaging>

<name>AWS Lambda Powertools for Java library Parent</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-cloudformation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Cloudformation</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Core</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-idempotency/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-parent</artifactId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<artifactId>powertools-idempotency</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion powertools-logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Logging</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-metrics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Metrics</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-parameters/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<artifactId>powertools-parameters</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion powertools-serialization/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<artifactId>powertools-serialization</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion powertools-sqs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<name>AWS Lambda Powertools for Java library SQS</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-test-suite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Test Suite</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-tracing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Tracing</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-validation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.14.0</version>
<version>1.15.0</version>
</parent>

<name>AWS Lambda Powertools for Java validation library</name>
Expand Down

0 comments on commit 482778b

Please sign in to comment.