File tree Expand file tree Collapse file tree 24 files changed +42
-25
lines changed
powertools-examples-idempotency
powertools-examples-parameters
powertools-examples-serialization
powertools-examples-validation
powertools-cloudformation Expand file tree Collapse file tree 24 files changed +42
-25
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,23 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo
88
99## [ Unreleased]
1010
11+ ## [ 1.16.0] - 2023-06-29
12+
13+
14+ ### Added
15+ * Feature: Add AppConfig provider to parameters module (#1104 ) by @scottgerring
16+
17+ ### Maintenance
18+ * Fix: missing idempotency key should not persist any data (#1201 ) by @jeromevdl
19+ * Fix: Removing env var credentials provider as default. (#1161 ) by @msailes
20+ * Chore: Swap implementation of ` aspectj-maven-plugin ` to support Java 17 (#1172 ) by @mriccia
21+ * Test: end-to-end tests for core modules and idempotency (#970 ) by @jeromevdl
22+ * Chore: cleanup spotbugs maven profiles (#1236 ) by @jeromevdl
23+ * Chore: removing logback from all components (#1227 ) by @jeromevdl
24+ * Chore: Roll SLF4J log4j bindings to v2 (#1190 ) by @scottgerring
25+ * Deps: Bump third party dependencies to the latest versions.
26+
27+
1128## [ 1.15.0] - 2023-03-20
1229
1330### Added
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
2020 <dependency >
2121 <groupId >software.amazon.lambda</groupId >
2222 <artifactId >powertools-tracing</artifactId >
23- <version >1.15 .0</version >
23+ <version >1.16 .0</version >
2424 </dependency >
2525 <dependency >
2626 <groupId >software.amazon.lambda</groupId >
2727 <artifactId >powertools-logging</artifactId >
28- <version >1.15 .0</version >
28+ <version >1.16 .0</version >
2929 </dependency >
3030 <dependency >
3131 <groupId >software.amazon.lambda</groupId >
3232 <artifactId >powertools-metrics</artifactId >
33- <version >1.15 .0</version >
33+ <version >1.16 .0</version >
3434 </dependency >
3535 ...
3636</dependencies >
Original file line number Diff line number Diff line change 66
77 <groupId >software.amazon.lambda</groupId >
88 <artifactId >powertools-examples</artifactId >
9- <version >1.15 .0</version >
9+ <version >1.16 .0</version >
1010 <packaging >pom</packaging >
1111
1212 <name >Powertools for AWS Lambda (Java) library Examples</name >
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44
55 <groupId >software.amazon.lambda.examples</groupId >
6- <version >1.15 .0</version >
6+ <version >1.16 .0</version >
77 <artifactId >powertools-examples-core</artifactId >
88 <packaging >jar</packaging >
99
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44
55 <groupId >software.amazon.lambda.examples</groupId >
6- <version >1.15 .0</version >
6+ <version >1.16 .0</version >
77 <artifactId >powertools-examples-idempotency</artifactId >
88 <packaging >jar</packaging >
99 <name >Powertools for AWS Lambda (Java) library Examples - Idempotency</name >
Original file line number Diff line number Diff line change 22 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
33 <modelVersion >4.0.0</modelVersion >
44 <groupId >software.amazon.lambda.examples</groupId >
5- <version >1.15 .0</version >
5+ <version >1.16 .0</version >
66 <artifactId >powertools-examples-parameters</artifactId >
77 <packaging >jar</packaging >
88 <name >Powertools for AWS Lambda (Java) library Examples - Parameters</name >
Original file line number Diff line number Diff line change 22 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
33 <modelVersion >4.0.0</modelVersion >
44 <groupId >software.amazon.lambda.examples</groupId >
5- <version >1.15 .0</version >
5+ <version >1.16 .0</version >
66 <artifactId >powertools-examples-serialization</artifactId >
77 <packaging >jar</packaging >
88 <name >Powertools for AWS Lambda (Java) library Examples - Serialization</name >
Original file line number Diff line number Diff line change 22 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
33 <modelVersion >4.0.0</modelVersion >
44 <groupId >software.amazon.lambda.examples</groupId >
5- <version >1.15 .0</version >
5+ <version >1.16 .0</version >
66 <artifactId >powertools-examples-sqs</artifactId >
77 <packaging >jar</packaging >
88 <name >Powertools for AWS Lambda (Java) library Examples - SQS</name >
Original file line number Diff line number Diff line change 22 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
33 <modelVersion >4.0.0</modelVersion >
44 <groupId >software.amazon.lambda.examples</groupId >
5- <version >1.15 .0</version >
5+ <version >1.16 .0</version >
66 <artifactId >powertools-examples-validation</artifactId >
77 <packaging >jar</packaging >
88 <name >Powertools for AWS Lambda (Java) library Examples - Validation</name >
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ extra_javascript:
8383
8484extra :
8585 powertools :
86- version : 1.15 .0
86+ version : 1.16 .0
8787
8888repo_url : https://github.com/aws-powertools/powertools-lambda-java
8989edit_uri : edit/main/docs
You can’t perform that action at this time.
0 commit comments