File tree 22 files changed +44
-23
lines changed
powertools-examples-idempotency
powertools-examples-parameters
powertools-examples-serialization
powertools-examples-validation
powertools-cloudformation 22 files changed +44
-23
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,27 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo
8
8
9
9
## [ Unreleased]
10
10
11
+ ## [ 1.15.0] - 2023-03-20
12
+
13
+ ### Added
14
+ * Feature: Add DynamoDB provider to parameters module (#1091 ) by @scottgerring
15
+ * 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
16
+ * Update how a Lambda request handler method is identified (#1058 ) by @humanzz
17
+
18
+ ### Maintenance
19
+ * Deps: Bump third party dependencies to the latest versions.
20
+ * Examples: Import examples from aws-samples/aws-lambda-powertools-examples (#1051 ) by @scottgerring
21
+ * Deprecate withMetricLogger in favor of withMetricsLogger (#1060 ) by @humanzz
22
+ * Update issue templates (#1062 ) by @machafer
23
+ * Send code coverage report (jacoco) to codecov (#1094 ) by @jeromevdl
24
+
25
+ ### Documentation
26
+
27
+ * Improve ` powertools-cloudformation ` docs (#1090 ) by @mriccia
28
+ * Add link to Lambda powertools workshop (#1095 ) by @scottgerring
29
+ * Fix mdocs and git revision plugin integration (#1066 ) by @machafer
30
+
31
+
11
32
## [ 1.14.0] - 2023-02-17
12
33
13
34
### Added
Original file line number Diff line number Diff line change @@ -20,17 +20,17 @@ Powertools is available in Maven Central. You can use your favourite dependency
20
20
<dependency >
21
21
<groupId >software.amazon.lambda</groupId >
22
22
<artifactId >powertools-tracing</artifactId >
23
- <version >1.14 .0</version >
23
+ <version >1.15 .0</version >
24
24
</dependency >
25
25
<dependency >
26
26
<groupId >software.amazon.lambda</groupId >
27
27
<artifactId >powertools-logging</artifactId >
28
- <version >1.14 .0</version >
28
+ <version >1.15 .0</version >
29
29
</dependency >
30
30
<dependency >
31
31
<groupId >software.amazon.lambda</groupId >
32
32
<artifactId >powertools-metrics</artifactId >
33
- <version >1.14 .0</version >
33
+ <version >1.15 .0</version >
34
34
</dependency >
35
35
...
36
36
</dependencies >
Original file line number Diff line number Diff line change 10
10
<parent >
11
11
<artifactId >powertools-parent</artifactId >
12
12
<groupId >software.amazon.lambda</groupId >
13
- <version >1.14 .0</version >
13
+ <version >1.15 .0</version >
14
14
</parent >
15
15
16
16
<name >AWS Lambda Powertools for Java library Examples</name >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >powertools-examples</artifactId >
10
10
<groupId >software.amazon.lambda</groupId >
11
- <version >1.14 .0</version >
11
+ <version >1.15 .0</version >
12
12
</parent >
13
13
14
14
<dependencies >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >powertools-examples</artifactId >
10
10
<groupId >software.amazon.lambda</groupId >
11
- <version >1.14 .0</version >
11
+ <version >1.15 .0</version >
12
12
</parent >
13
13
14
14
<dependencies >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >powertools-examples</artifactId >
10
10
<groupId >software.amazon.lambda</groupId >
11
- <version >1.14 .0</version >
11
+ <version >1.15 .0</version >
12
12
</parent >
13
13
14
14
<dependencies >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >powertools-examples</artifactId >
10
10
<groupId >software.amazon.lambda</groupId >
11
- <version >1.14 .0</version >
11
+ <version >1.15 .0</version >
12
12
</parent >
13
13
14
14
<dependencies >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >powertools-examples</artifactId >
10
10
<groupId >software.amazon.lambda</groupId >
11
- <version >1.14 .0</version >
11
+ <version >1.15 .0</version >
12
12
</parent >
13
13
14
14
<dependencies >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<artifactId >powertools-examples</artifactId >
10
10
<groupId >software.amazon.lambda</groupId >
11
- <version >1.14 .0</version >
11
+ <version >1.15 .0</version >
12
12
</parent >
13
13
14
14
<dependencies >
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ extra_javascript:
82
82
83
83
extra :
84
84
powertools :
85
- version : 1.14 .0
85
+ version : 1.15 .0
86
86
87
87
repo_url : https://github.com/awslabs/aws-lambda-powertools-java
88
88
edit_uri : edit/master/docs
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >software.amazon.lambda</groupId >
8
8
<artifactId >powertools-parent</artifactId >
9
- <version >1.14 .0</version >
9
+ <version >1.15 .0</version >
10
10
<packaging >pom</packaging >
11
11
12
12
<name >AWS Lambda Powertools for Java library Parent</name >
Original file line number Diff line number Diff line change 10
10
<parent >
11
11
<artifactId >powertools-parent</artifactId >
12
12
<groupId >software.amazon.lambda</groupId >
13
- <version >1.14 .0</version >
13
+ <version >1.15 .0</version >
14
14
</parent >
15
15
16
16
<name >AWS Lambda Powertools for Java library Cloudformation</name >
Original file line number Diff line number Diff line change 10
10
<parent >
11
11
<artifactId >powertools-parent</artifactId >
12
12
<groupId >software.amazon.lambda</groupId >
13
- <version >1.14 .0</version >
13
+ <version >1.15 .0</version >
14
14
</parent >
15
15
16
16
<name >AWS Lambda Powertools for Java library Core</name >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >software.amazon.lambda</groupId >
9
9
<artifactId >powertools-parent</artifactId >
10
- <version >1.14 .0</version >
10
+ <version >1.15 .0</version >
11
11
</parent >
12
12
13
13
<artifactId >powertools-idempotency</artifactId >
Original file line number Diff line number Diff line change 10
10
<parent >
11
11
<artifactId >powertools-parent</artifactId >
12
12
<groupId >software.amazon.lambda</groupId >
13
- <version >1.14 .0</version >
13
+ <version >1.15 .0</version >
14
14
</parent >
15
15
16
16
<name >AWS Lambda Powertools for Java library Logging</name >
Original file line number Diff line number Diff line change 10
10
<parent >
11
11
<artifactId >powertools-parent</artifactId >
12
12
<groupId >software.amazon.lambda</groupId >
13
- <version >1.14 .0</version >
13
+ <version >1.15 .0</version >
14
14
</parent >
15
15
16
16
<name >AWS Lambda Powertools for Java library Metrics</name >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<artifactId >powertools-parent</artifactId >
9
9
<groupId >software.amazon.lambda</groupId >
10
- <version >1.14 .0</version >
10
+ <version >1.15 .0</version >
11
11
</parent >
12
12
13
13
<artifactId >powertools-parameters</artifactId >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<artifactId >powertools-parent</artifactId >
9
9
<groupId >software.amazon.lambda</groupId >
10
- <version >1.14 .0</version >
10
+ <version >1.15 .0</version >
11
11
</parent >
12
12
13
13
<artifactId >powertools-serialization</artifactId >
Original file line number Diff line number Diff line change 10
10
<parent >
11
11
<artifactId >powertools-parent</artifactId >
12
12
<groupId >software.amazon.lambda</groupId >
13
- <version >1.14 .0</version >
13
+ <version >1.15 .0</version >
14
14
</parent >
15
15
16
16
<name >AWS Lambda Powertools for Java library SQS</name >
Original file line number Diff line number Diff line change 10
10
<parent >
11
11
<artifactId >powertools-parent</artifactId >
12
12
<groupId >software.amazon.lambda</groupId >
13
- <version >1.14 .0</version >
13
+ <version >1.15 .0</version >
14
14
</parent >
15
15
16
16
<name >AWS Lambda Powertools for Java library Test Suite</name >
Original file line number Diff line number Diff line change 10
10
<parent >
11
11
<artifactId >powertools-parent</artifactId >
12
12
<groupId >software.amazon.lambda</groupId >
13
- <version >1.14 .0</version >
13
+ <version >1.15 .0</version >
14
14
</parent >
15
15
16
16
<name >AWS Lambda Powertools for Java library Tracing</name >
Original file line number Diff line number Diff line change 10
10
<parent >
11
11
<artifactId >powertools-parent</artifactId >
12
12
<groupId >software.amazon.lambda</groupId >
13
- <version >1.14 .0</version >
13
+ <version >1.15 .0</version >
14
14
</parent >
15
15
16
16
<name >AWS Lambda Powertools for Java validation library</name >
You can’t perform that action at this time.
0 commit comments