File tree 33 files changed +45
-39
lines changed
powertools-examples-batch
powertools-examples-cloudformation
powertools-examples-idempotency
powertools-examples-parameters
powertools-examples-serialization
powertools-examples-validation
powertools-cloudformation
powertools-large-messages
33 files changed +45
-39
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo
8
8
9
9
## [ Unreleased]
10
10
11
+ ## [ 1.20.1] - 2025-04-08
12
+
13
+ * docs: fix 2 typos (#1739 ) by @ntestor
14
+ * docs: Correct XML formatting for Maven configuration in Large Messages utility docs (#1796 ) by @jreijn
15
+ * fix: Load version.properties file as resource stream to fix loading when packaged as jar (#1813 ) by @phipag
16
+
11
17
## [ 1.20.0] - 2025-03-25
12
18
13
19
* feat(cfn-custom-resource): Add optional 'reason' field for detailed failure reporting (#1758 ) by @moizsh
Original file line number Diff line number Diff line change @@ -20,17 +20,17 @@ Powertools for AWS Lambda (Java) is available in Maven Central. You can use your
20
20
<dependency >
21
21
<groupId >software.amazon.lambda</groupId >
22
22
<artifactId >powertools-tracing</artifactId >
23
- <version >1.20.0 </version >
23
+ <version >1.20.1 </version >
24
24
</dependency >
25
25
<dependency >
26
26
<groupId >software.amazon.lambda</groupId >
27
27
<artifactId >powertools-logging</artifactId >
28
- <version >1.20.0 </version >
28
+ <version >1.20.1 </version >
29
29
</dependency >
30
30
<dependency >
31
31
<groupId >software.amazon.lambda</groupId >
32
32
<artifactId >powertools-metrics</artifactId >
33
- <version >1.20.0 </version >
33
+ <version >1.20.1 </version >
34
34
</dependency >
35
35
...
36
36
</dependencies >
@@ -217,7 +217,7 @@ More info [here](https://github.com/aws-powertools/powertools-lambda-java/pull/1
217
217
218
218
## Examples
219
219
220
- 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.
220
+ 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.
221
221
222
222
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 ) .
223
223
Original file line number Diff line number Diff line change 20
20
21
21
<groupId >software.amazon.lambda</groupId >
22
22
<artifactId >powertools-examples</artifactId >
23
- <version >1.20.0 </version >
23
+ <version >1.20.1 </version >
24
24
<packaging >pom</packaging >
25
25
26
26
<name >Powertools for AWS Lambda (Java) library Examples</name >
Original file line number Diff line number Diff line change 5
5
<modelVersion >4.0.0</modelVersion >
6
6
7
7
<groupId >software.amazon.lambda.examples</groupId >
8
- <version >1.20.0 </version >
8
+ <version >1.20.1 </version >
9
9
<artifactId >powertools-examples-batch</artifactId >
10
10
<packaging >jar</packaging >
11
11
<name >Powertools for AWS Lambda (Java) library Examples - Batch</name >
Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
5
5
<groupId >software.amazon.lambda.examples</groupId >
6
- <version >1.20.0 </version >
6
+ <version >1.20.1 </version >
7
7
<artifactId >powertools-examples-cloudformation</artifactId >
8
8
<packaging >jar</packaging >
9
9
Original file line number Diff line number Diff line change 4
4
<modelVersion >4.0.0</modelVersion >
5
5
<groupId >software.amazon.lambda.examples</groupId >
6
6
<artifactId >cdk</artifactId >
7
- <version >1.20.0 </version >
7
+ <version >1.20.1 </version >
8
8
<properties >
9
9
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
10
10
<cdk .version>2.178.1</cdk .version>
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ dependencies {
28
28
implementation ' com.fasterxml.jackson.core:jackson-databind:2.17.2'
29
29
implementation ' com.amazonaws:aws-lambda-java-events:3.11.0'
30
30
implementation ' com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2'
31
- aspect ' software.amazon.lambda:powertools-tracing:1.20.0 '
32
- aspect ' software.amazon.lambda:powertools-logging:1.20.0 '
33
- aspect ' software.amazon.lambda:powertools-metrics:1.20.0 '
31
+ aspect ' software.amazon.lambda:powertools-tracing:1.20.1 '
32
+ aspect ' software.amazon.lambda:powertools-logging:1.20.1 '
33
+ aspect ' software.amazon.lambda:powertools-metrics:1.20.1 '
34
34
}
35
35
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ dependencies {
14
14
implementation(" com.fasterxml.jackson.core:jackson-databind:2.17.2" )
15
15
implementation(" com.amazonaws:aws-lambda-java-events:3.11.0" )
16
16
implementation(" com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2" )
17
- aspect(" software.amazon.lambda:powertools-tracing:1.19.0 " )
18
- aspect(" software.amazon.lambda:powertools-logging:1.19.0 " )
19
- aspect(" software.amazon.lambda:powertools-metrics:1.19.0 " )
17
+ aspect(" software.amazon.lambda:powertools-tracing:1.20.1 " )
18
+ aspect(" software.amazon.lambda:powertools-logging:1.20.1 " )
19
+ aspect(" software.amazon.lambda:powertools-metrics:1.20.1 " )
20
20
testImplementation(" junit:junit:4.13.2" )
21
21
implementation(" org.jetbrains.kotlin:kotlin-stdlib-jdk8" )
22
22
}
Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
5
5
<groupId >software.amazon.lambda.examples</groupId >
6
- <version >1.20.0 </version >
6
+ <version >1.20.1 </version >
7
7
<artifactId >powertools-examples-core-sam</artifactId >
8
8
<packaging >jar</packaging >
9
9
Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
5
5
<groupId >software.amazon.lambda.examples</groupId >
6
- <version >1.20.0 </version >
6
+ <version >1.20.1 </version >
7
7
<artifactId >powertools-examples-core-serverless</artifactId >
8
8
<packaging >jar</packaging >
9
9
Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
5
5
<groupId >software.amazon.lambda.examples</groupId >
6
- <version >1.20.0 </version >
6
+ <version >1.20.1 </version >
7
7
<artifactId >powertools-examples-core-terraform</artifactId >
8
8
<packaging >jar</packaging >
9
9
Original file line number Diff line number Diff line change 17
17
<modelVersion >4.0.0</modelVersion >
18
18
19
19
<groupId >software.amazon.lambda.examples</groupId >
20
- <version >1.20.0 </version >
20
+ <version >1.20.1 </version >
21
21
<artifactId >powertools-examples-idempotency</artifactId >
22
22
<packaging >jar</packaging >
23
23
<name >Powertools for AWS Lambda (Java) library Examples - Idempotency</name >
Original file line number Diff line number Diff line change 2
2
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >software.amazon.lambda.examples</groupId >
5
- <version >1.20.0 </version >
5
+ <version >1.20.1 </version >
6
6
<artifactId >powertools-examples-parameters</artifactId >
7
7
<packaging >jar</packaging >
8
8
<name >Powertools for AWS Lambda (Java) library Examples - Parameters</name >
Original file line number Diff line number Diff line change 2
2
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >software.amazon.lambda.examples</groupId >
5
- <version >1.20.0 </version >
5
+ <version >1.20.1 </version >
6
6
<artifactId >powertools-examples-serialization</artifactId >
7
7
<packaging >jar</packaging >
8
8
<name >Powertools for AWS Lambda (Java) library Examples - Serialization</name >
Original file line number Diff line number Diff line change 2
2
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >software.amazon.lambda.examples</groupId >
5
- <version >1.20.0 </version >
5
+ <version >1.20.1 </version >
6
6
<artifactId >powertools-examples-sqs</artifactId >
7
7
<packaging >jar</packaging >
8
8
<name >Powertools for AWS Lambda (Java) library Examples - SQS</name >
Original file line number Diff line number Diff line change 16
16
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
17
17
<modelVersion >4.0.0</modelVersion >
18
18
<groupId >software.amazon.lambda.examples</groupId >
19
- <version >1.20.0 </version >
19
+ <version >1.20.1 </version >
20
20
<artifactId >powertools-examples-validation</artifactId >
21
21
<packaging >jar</packaging >
22
22
<name >Powertools for AWS Lambda (Java) library Examples - Validation</name >
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ extra_javascript:
93
93
94
94
extra :
95
95
powertools :
96
- version : 1.20.0 # to update after each release (we do not want snapshot version here)
96
+ version : 1.20.1 # to update after each release (we do not want snapshot version here)
97
97
98
98
repo_url : https://github.com/aws-powertools/powertools-lambda-java
99
99
edit_uri : edit/main/docs
Original file line number Diff line number Diff line change 20
20
21
21
<groupId >software.amazon.lambda</groupId >
22
22
<artifactId >powertools-parent</artifactId >
23
- <version >1.20.0 </version >
23
+ <version >1.20.1 </version >
24
24
<packaging >pom</packaging >
25
25
26
26
<name >Powertools for AWS Lambda (Java) library Parent</name >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >software.amazon.lambda</groupId >
8
8
<artifactId >powertools-parent</artifactId >
9
- <version >1.20.0 </version >
9
+ <version >1.20.1 </version >
10
10
</parent >
11
11
12
12
<description >A suite of utilities that makes batch message processing using AWS Lambda easier.</description >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >1.20.0 </version >
27
+ <version >1.20.1 </version >
28
28
</parent >
29
29
30
30
<name >Powertools for AWS Lambda (Java)library Cloudformation</name >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >1.20.0 </version >
27
+ <version >1.20.1 </version >
28
28
</parent >
29
29
30
30
<name >Powertools for AWS Lambda (Java) library Core</name >
Original file line number Diff line number Diff line change 10
10
<description >Fake handlers that use Powertools for AWS Lambda (Java).</description >
11
11
12
12
<properties >
13
- <lambda .powertools.version>1.20.0 </lambda .powertools.version>
13
+ <lambda .powertools.version>1.20.1 </lambda .powertools.version>
14
14
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15
15
<maven .compiler.source>1.8</maven .compiler.source>
16
16
<maven .compiler.target>1.8</maven .compiler.target>
Original file line number Diff line number Diff line change 20
20
<parent >
21
21
<artifactId >powertools-parent</artifactId >
22
22
<groupId >software.amazon.lambda</groupId >
23
- <version >1.20.0 </version >
23
+ <version >1.20.1 </version >
24
24
</parent >
25
25
26
26
<artifactId >powertools-e2e-tests</artifactId >
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<groupId >software.amazon.lambda</groupId >
23
23
<artifactId >powertools-parent</artifactId >
24
- <version >1.20.0 </version >
24
+ <version >1.20.1 </version >
25
25
</parent >
26
26
27
27
<artifactId >powertools-idempotency</artifactId >
Original file line number Diff line number Diff line change 23
23
<parent >
24
24
<groupId >software.amazon.lambda</groupId >
25
25
<artifactId >powertools-parent</artifactId >
26
- <version >1.20.0 </version >
26
+ <version >1.20.1 </version >
27
27
</parent >
28
28
29
29
<artifactId >powertools-large-messages</artifactId >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >1.20.0 </version >
27
+ <version >1.20.1 </version >
28
28
</parent >
29
29
30
30
<name >Powertools for AWS Lambda (Java) library Logging</name >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >1.20.0 </version >
27
+ <version >1.20.1 </version >
28
28
</parent >
29
29
30
30
<name >Powertools for AWS Lambda (Java) library Metrics</name >
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<artifactId >powertools-parent</artifactId >
23
23
<groupId >software.amazon.lambda</groupId >
24
- <version >1.20.0 </version >
24
+ <version >1.20.1 </version >
25
25
</parent >
26
26
27
27
<artifactId >powertools-parameters</artifactId >
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<artifactId >powertools-parent</artifactId >
23
23
<groupId >software.amazon.lambda</groupId >
24
- <version >1.20.0 </version >
24
+ <version >1.20.1 </version >
25
25
</parent >
26
26
27
27
<artifactId >powertools-serialization</artifactId >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >1.20.0 </version >
27
+ <version >1.20.1 </version >
28
28
</parent >
29
29
30
30
<name >Powertools for AWS Lambda (Java) library SQS</name >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >1.20.0 </version >
27
+ <version >1.20.1 </version >
28
28
</parent >
29
29
30
30
<properties >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >1.20.0 </version >
27
+ <version >1.20.1 </version >
28
28
</parent >
29
29
30
30
<name >Powertools for AWS Lambda (Java) library Tracing</name >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<artifactId >powertools-parent</artifactId >
26
26
<groupId >software.amazon.lambda</groupId >
27
- <version >1.20.0 </version >
27
+ <version >1.20.1 </version >
28
28
</parent >
29
29
30
30
<name >Powertools for AWS Lambda (Java) validation library</name >
You can’t perform that action at this time.
0 commit comments