Skip to content

Commit c9c5624

Browse files
jeromevdlscottgerring
authored andcommitted
chore:Prep release 1.16.0 (aws-powertools#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 a792228 commit c9c5624

File tree

24 files changed

+42
-25
lines changed

24 files changed

+42
-25
lines changed

CHANGELOG.md

+17
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

+3-3
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.amazon.lambda</groupId>
88
<artifactId>powertools-parent</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 Parent</name>

powertools-cloudformation/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<artifactId>powertools-parent</artifactId>
1212
<groupId>software.amazon.lambda</groupId>
13-
<version>1.15.0</version>
13+
<version>1.16.0</version>
1414
</parent>
1515

1616
<name>Powertools for AWS Lambda (Java)library Cloudformation</name>

powertools-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<artifactId>powertools-parent</artifactId>
1212
<groupId>software.amazon.lambda</groupId>
13-
<version>1.15.0</version>
13+
<version>1.16.0</version>
1414
</parent>
1515

1616
<name>Powertools for AWS Lambda (Java) library Core</name>

powertools-e2e-tests/handlers/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>Fake handlers that use Powertools for AWS Lambda (Java).</description>
1111

1212
<properties>
13-
<lambda.powertools.version>1.15.0</lambda.powertools.version>
13+
<lambda.powertools.version>1.16.0</lambda.powertools.version>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
<maven.compiler.source>1.8</maven.compiler.source>
1616
<maven.compiler.target>1.8</maven.compiler.target>

powertools-e2e-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>powertools-parent</artifactId>
88
<groupId>software.amazon.lambda</groupId>
9-
<version>1.15.0</version>
9+
<version>1.16.0</version>
1010
</parent>
1111

1212
<artifactId>powertools-e2e-tests</artifactId>

powertools-idempotency/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>software.amazon.lambda</groupId>
99
<artifactId>powertools-parent</artifactId>
10-
<version>1.15.0</version>
10+
<version>1.16.0</version>
1111
</parent>
1212

1313
<artifactId>powertools-idempotency</artifactId>

powertools-logging/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<artifactId>powertools-parent</artifactId>
1212
<groupId>software.amazon.lambda</groupId>
13-
<version>1.15.0</version>
13+
<version>1.16.0</version>
1414
</parent>
1515

1616
<name>Powertools for AWS Lambda (Java) library Logging</name>

powertools-metrics/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<artifactId>powertools-parent</artifactId>
1212
<groupId>software.amazon.lambda</groupId>
13-
<version>1.15.0</version>
13+
<version>1.16.0</version>
1414
</parent>
1515

1616
<name>Powertools for AWS Lambda (Java) library Metrics</name>

powertools-parameters/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>powertools-parent</artifactId>
99
<groupId>software.amazon.lambda</groupId>
10-
<version>1.15.0</version>
10+
<version>1.16.0</version>
1111
</parent>
1212

1313
<artifactId>powertools-parameters</artifactId>

powertools-serialization/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>powertools-parent</artifactId>
99
<groupId>software.amazon.lambda</groupId>
10-
<version>1.15.0</version>
10+
<version>1.16.0</version>
1111
</parent>
1212

1313
<artifactId>powertools-serialization</artifactId>

powertools-sqs/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<artifactId>powertools-parent</artifactId>
1212
<groupId>software.amazon.lambda</groupId>
13-
<version>1.15.0</version>
13+
<version>1.16.0</version>
1414
</parent>
1515

1616
<name>Powertools for AWS Lambda (Java) library SQS</name>

powertools-test-suite/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<artifactId>powertools-parent</artifactId>
1212
<groupId>software.amazon.lambda</groupId>
13-
<version>1.15.0</version>
13+
<version>1.16.0</version>
1414
</parent>
1515

1616
<name>Powertools for AWS Lambda (Java) library Test Suite</name>

powertools-tracing/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<artifactId>powertools-parent</artifactId>
1212
<groupId>software.amazon.lambda</groupId>
13-
<version>1.15.0</version>
13+
<version>1.16.0</version>
1414
</parent>
1515

1616
<name>Powertools for AWS Lambda (Java) library Tracing</name>

powertools-validation/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<artifactId>powertools-parent</artifactId>
1212
<groupId>software.amazon.lambda</groupId>
13-
<version>1.15.0</version>
13+
<version>1.16.0</version>
1414
</parent>
1515

1616
<name>Powertools for AWS Lambda (Java) validation library</name>

0 commit comments

Comments
 (0)