Skip to content

Commit 01f7ea0

Browse files
chore:Prep release 1.16.0 (#1249)
* chore:prep release 1.16.0 * Write release notes --------- Co-authored-by: scottgerring <[email protected]> Co-authored-by: Scott Gerring <[email protected]>
1 parent fdd88ca commit 01f7ea0

File tree

24 files changed

+42
-25
lines changed

24 files changed

+42
-25
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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>

examples/powertools-examples-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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

examples/powertools-examples-idempotency/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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>

examples/powertools-examples-parameters/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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>

examples/powertools-examples-serialization/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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>

examples/powertools-examples-sqs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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>

examples/powertools-examples-validation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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>

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ extra_javascript:
8383

8484
extra:
8585
powertools:
86-
version: 1.15.0
86+
version: 1.16.0
8787

8888
repo_url: https://github.com/aws-powertools/powertools-lambda-java
8989
edit_uri: edit/main/docs

0 commit comments

Comments
 (0)