Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo

## [Unreleased]

## [1.20.1] - 2025-04-08

* docs: fix 2 typos (#1739) by @ntestor
* docs: Correct XML formatting for Maven configuration in Large Messages utility docs (#1796) by @jreijn
* fix: Load version.properties file as resource stream to fix loading when packaged as jar (#1813) by @phipag

## [1.20.0] - 2025-03-25

* feat(cfn-custom-resource): Add optional 'reason' field for detailed failure reporting (#1758) by @moizsh
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ Powertools for AWS Lambda (Java) is available in Maven Central. You can use your
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-tracing</artifactId>
<version>1.20.0</version>
<version>1.20.1</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-logging</artifactId>
<version>1.20.0</version>
<version>1.20.1</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-metrics</artifactId>
<version>1.20.0</version>
<version>1.20.1</version>
</dependency>
...
</dependencies>
Expand Down Expand Up @@ -217,7 +217,7 @@ More info [here](https://github.com/aws-powertools/powertools-lambda-java/pull/1

## Examples

See the latest release of the **[examples](https://github.com/aws-powertools/powertools-lambda-java/tree/v1.20.0/examples)** for example projects showcasing usage of different utilities.
See the latest release of the **[examples](https://github.com/aws-powertools/powertools-lambda-java/tree/v1.20.1/examples)** for example projects showcasing usage of different utilities.

Have a demo project to contribute which showcase usage of different utilities from powertools? We are happy to accept it [here](CONTRIBUTING.md#security-issue-notifications).

Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-examples</artifactId>
<version>1.20.0</version>
<version>1.20.1</version>
<packaging>pom</packaging>

<name>Powertools for AWS Lambda (Java) library Examples</name>
Expand Down
2 changes: 1 addition & 1 deletion examples/powertools-examples-batch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>software.amazon.lambda.examples</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
<artifactId>powertools-examples-batch</artifactId>
<packaging>jar</packaging>
<name>Powertools for AWS Lambda (Java) library Examples - Batch</name>
Expand Down
2 changes: 1 addition & 1 deletion examples/powertools-examples-cloudformation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>software.amazon.lambda.examples</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
<artifactId>powertools-examples-cloudformation</artifactId>
<packaging>jar</packaging>

Expand Down
2 changes: 1 addition & 1 deletion examples/powertools-examples-core/cdk/infra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>software.amazon.lambda.examples</groupId>
<artifactId>cdk</artifactId>
<version>1.20.0</version>
<version>1.20.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<cdk.version>2.178.1</cdk.version>
Expand Down
6 changes: 3 additions & 3 deletions examples/powertools-examples-core/gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ dependencies {
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
implementation 'com.amazonaws:aws-lambda-java-events:3.11.0'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2'
aspect 'software.amazon.lambda:powertools-tracing:1.20.0'
aspect 'software.amazon.lambda:powertools-logging:1.20.0'
aspect 'software.amazon.lambda:powertools-metrics:1.20.0'
aspect 'software.amazon.lambda:powertools-tracing:1.20.1'
aspect 'software.amazon.lambda:powertools-logging:1.20.1'
aspect 'software.amazon.lambda:powertools-metrics:1.20.1'
}

2 changes: 1 addition & 1 deletion examples/powertools-examples-core/sam/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>software.amazon.lambda.examples</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
<artifactId>powertools-examples-core-sam</artifactId>
<packaging>jar</packaging>

Expand Down
2 changes: 1 addition & 1 deletion examples/powertools-examples-core/serverless/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>software.amazon.lambda.examples</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
<artifactId>powertools-examples-core-serverless</artifactId>
<packaging>jar</packaging>

Expand Down
2 changes: 1 addition & 1 deletion examples/powertools-examples-core/terraform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>software.amazon.lambda.examples</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
<artifactId>powertools-examples-core-terraform</artifactId>
<packaging>jar</packaging>

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 @@ -17,7 +17,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>software.amazon.lambda.examples</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
<artifactId>powertools-examples-idempotency</artifactId>
<packaging>jar</packaging>
<name>Powertools for AWS Lambda (Java) library Examples - Idempotency</name>
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 @@ -2,7 +2,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>software.amazon.lambda.examples</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
<artifactId>powertools-examples-parameters</artifactId>
<packaging>jar</packaging>
<name>Powertools for AWS Lambda (Java) library Examples - Parameters</name>
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 @@ -2,7 +2,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>software.amazon.lambda.examples</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
<artifactId>powertools-examples-serialization</artifactId>
<packaging>jar</packaging>
<name>Powertools for AWS Lambda (Java) library Examples - Serialization</name>
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 @@ -2,7 +2,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>software.amazon.lambda.examples</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
<artifactId>powertools-examples-sqs</artifactId>
<packaging>jar</packaging>
<name>Powertools for AWS Lambda (Java) library Examples - SQS</name>
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 @@ -16,7 +16,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>software.amazon.lambda.examples</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
<artifactId>powertools-examples-validation</artifactId>
<packaging>jar</packaging>
<name>Powertools for AWS Lambda (Java) library Examples - Validation</name>
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ extra_javascript:

extra:
powertools:
version: 1.20.0 # to update after each release (we do not want snapshot version here)
version: 1.20.1 # to update after each release (we do not want snapshot version here)

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

<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-parent</artifactId>
<version>1.20.0</version>
<version>1.20.1</version>
<packaging>pom</packaging>

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

<description>A suite of utilities that makes batch message processing using AWS Lambda easier.</description>
Expand Down
2 changes: 1 addition & 1 deletion powertools-cloudformation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
</parent>

<name>Powertools for AWS Lambda (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 @@ -24,7 +24,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
</parent>

<name>Powertools for AWS Lambda (Java) library Core</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-e2e-tests/handlers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<description>Fake handlers that use Powertools for AWS Lambda (Java).</description>

<properties>
<lambda.powertools.version>1.20.0</lambda.powertools.version>
<lambda.powertools.version>1.20.1</lambda.powertools.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down
2 changes: 1 addition & 1 deletion powertools-e2e-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
</parent>

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

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

<artifactId>powertools-large-messages</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 @@ -24,7 +24,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
</parent>

<name>Powertools for AWS Lambda (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 @@ -24,7 +24,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
</parent>

<name>Powertools for AWS Lambda (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 @@ -21,7 +21,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.20.0</version>
<version>1.20.1</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 @@ -21,7 +21,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.20.0</version>
<version>1.20.1</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 @@ -24,7 +24,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
</parent>

<name>Powertools for AWS Lambda (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 @@ -24,7 +24,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion powertools-tracing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
</parent>

<name>Powertools for AWS Lambda (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 @@ -24,7 +24,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.20.0</version>
<version>1.20.1</version>
</parent>

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