Skip to content

Commit cfd45bd

Browse files
chore:Prep release 1.17.0 (#1381)
* chore:prep release 1.17.0 * Update changelog --------- Co-authored-by: scottgerring <[email protected]> Co-authored-by: Scott Gerring <[email protected]>
1 parent e7fb00c commit cfd45bd

File tree

27 files changed

+48
-26
lines changed

27 files changed

+48
-26
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,28 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo
88

99
## [Unreleased]
1010

11+
## [1.17.0] - 2023-08-21
12+
13+
### Added
14+
* Feat: Add Batch Processor module in (#1317) by @scottgerring
15+
* Feat: Add SNS+SQS large messages module (#1310) by @jeromevdl
16+
17+
### Maintenance
18+
* fix: use default credentials provider for all provided SDK clients in (#1303) by @roamingthings
19+
* Chore: Make request for Logger explicitly for current class in (#1307) by @jreijn
20+
* Chore: checkstyle formater & linter in (#1316) by @jeromevdl
21+
* Chore: Add powertools specific user-agent-suffix to the AWS SDK v2 clients by @eldimi in (#1306)
22+
* Chore: Add 'v2' branch to build workflows to prepare for v2 work in (#1341) by @scottgerring
23+
* Deps: Bump third party dependencies to the latest versions.
24+
25+
### Documentation
26+
* Docs: Add maintainers guide in (#1326) by @scottgerring
27+
* Docs: improve contributing guide in (#1334) by @jeromevdl
28+
* Docs: Improve example documentation in (#1291) by @scottgerring
29+
* Docs: Add discord + sec disclosure links to readme in (#1311) by @scottgerring
30+
* Docs: Add external examples from AWS SAM CLI App Templates in (#1318) by @AlexeySoshin
31+
* Docs: Add CDK example in (#1321) by @AlexeySoshin
32+
1133
## [1.16.1] - 2023-07-19
1234

1335
* Fix: idempotency timeout bug (#1285) by @scottgerring

examples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<groupId>software.amazon.lambda</groupId>
2222
<artifactId>powertools-examples</artifactId>
23-
<version>1.17.0-SNAPSHOT</version>
23+
<version>1.17.0</version>
2424
<packaging>pom</packaging>
2525

2626
<name>Powertools for AWS Lambda (Java) library Examples</name>

examples/powertools-examples-batch/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>software.amazon.lambda.examples</groupId>
8-
<version>1.17.0-SNAPSHOT</version>
8+
<version>1.17.0</version>
99
<artifactId>powertools-examples-batch</artifactId>
1010
<packaging>jar</packaging>
1111
<name>Powertools for AWS Lambda (Java) library Examples - Batch</name>

examples/powertools-examples-cloudformation/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.17.0-SNAPSHOT</version>
6+
<version>1.17.0</version>
77
<artifactId>powertools-examples-cloudformation</artifactId>
88
<packaging>jar</packaging>
99

examples/powertools-examples-core/cdk/infra/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>software.amazon.lambda.examples</groupId>
66
<artifactId>cdk</artifactId>
7-
<version>1.17.0-SNAPSHOT</version>
7+
<version>1.17.0</version>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
<cdk.version>2.91.0</cdk.version>

examples/powertools-examples-core/sam/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.17.0-SNAPSHOT</version>
6+
<version>1.17.0</version>
77
<artifactId>powertools-examples-core-sam</artifactId>
88
<packaging>jar</packaging>
99

examples/powertools-examples-idempotency/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<modelVersion>4.0.0</modelVersion>
1818

1919
<groupId>software.amazon.lambda.examples</groupId>
20-
<version>1.17.0-SNAPSHOT</version>
20+
<version>1.17.0</version>
2121
<artifactId>powertools-examples-idempotency</artifactId>
2222
<packaging>jar</packaging>
2323
<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.17.0-SNAPSHOT</version>
5+
<version>1.17.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.17.0-SNAPSHOT</version>
5+
<version>1.17.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.17.0-SNAPSHOT</version>
5+
<version>1.17.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
@@ -16,7 +16,7 @@
1616
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1717
<modelVersion>4.0.0</modelVersion>
1818
<groupId>software.amazon.lambda.examples</groupId>
19-
<version>1.17.0-SNAPSHOT</version>
19+
<version>1.17.0</version>
2020
<artifactId>powertools-examples-validation</artifactId>
2121
<packaging>jar</packaging>
2222
<name>Powertools for AWS Lambda (Java) library Examples - Validation</name>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<groupId>software.amazon.lambda</groupId>
2222
<artifactId>powertools-parent</artifactId>
23-
<version>1.17.0-SNAPSHOT</version>
23+
<version>1.17.0</version>
2424
<packaging>pom</packaging>
2525

2626
<name>Powertools for AWS Lambda (Java) library Parent</name>

powertools-batch/pom.xml

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

1212
<build>

powertools-cloudformation/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<artifactId>powertools-parent</artifactId>
2626
<groupId>software.amazon.lambda</groupId>
27-
<version>1.17.0-SNAPSHOT</version>
27+
<version>1.17.0</version>
2828
</parent>
2929

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

powertools-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<artifactId>powertools-parent</artifactId>
2626
<groupId>software.amazon.lambda</groupId>
27-
<version>1.17.0-SNAPSHOT</version>
27+
<version>1.17.0</version>
2828
</parent>
2929

3030
<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.17.0-SNAPSHOT</lambda.powertools.version>
13+
<lambda.powertools.version>1.17.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
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>powertools-parent</artifactId>
2222
<groupId>software.amazon.lambda</groupId>
23-
<version>1.17.0-SNAPSHOT</version>
23+
<version>1.17.0</version>
2424
</parent>
2525

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

powertools-idempotency/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.lambda</groupId>
2323
<artifactId>powertools-parent</artifactId>
24-
<version>1.17.0-SNAPSHOT</version>
24+
<version>1.17.0</version>
2525
</parent>
2626

2727
<artifactId>powertools-idempotency</artifactId>

powertools-large-messages/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>software.amazon.lambda</groupId>
2525
<artifactId>powertools-parent</artifactId>
26-
<version>1.17.0-SNAPSHOT</version>
26+
<version>1.17.0</version>
2727
</parent>
2828

2929
<artifactId>powertools-large-messages</artifactId>

powertools-logging/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<artifactId>powertools-parent</artifactId>
2626
<groupId>software.amazon.lambda</groupId>
27-
<version>1.17.0-SNAPSHOT</version>
27+
<version>1.17.0</version>
2828
</parent>
2929

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

powertools-metrics/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<artifactId>powertools-parent</artifactId>
2626
<groupId>software.amazon.lambda</groupId>
27-
<version>1.17.0-SNAPSHOT</version>
27+
<version>1.17.0</version>
2828
</parent>
2929

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

powertools-parameters/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>powertools-parent</artifactId>
2323
<groupId>software.amazon.lambda</groupId>
24-
<version>1.17.0-SNAPSHOT</version>
24+
<version>1.17.0</version>
2525
</parent>
2626

2727
<artifactId>powertools-parameters</artifactId>

powertools-serialization/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>powertools-parent</artifactId>
2323
<groupId>software.amazon.lambda</groupId>
24-
<version>1.17.0-SNAPSHOT</version>
24+
<version>1.17.0</version>
2525
</parent>
2626

2727
<artifactId>powertools-serialization</artifactId>

powertools-sqs/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<artifactId>powertools-parent</artifactId>
2626
<groupId>software.amazon.lambda</groupId>
27-
<version>1.17.0-SNAPSHOT</version>
27+
<version>1.17.0</version>
2828
</parent>
2929

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

powertools-test-suite/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<artifactId>powertools-parent</artifactId>
2626
<groupId>software.amazon.lambda</groupId>
27-
<version>1.17.0-SNAPSHOT</version>
27+
<version>1.17.0</version>
2828
</parent>
2929

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

powertools-tracing/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<artifactId>powertools-parent</artifactId>
2626
<groupId>software.amazon.lambda</groupId>
27-
<version>1.17.0-SNAPSHOT</version>
27+
<version>1.17.0</version>
2828
</parent>
2929

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

powertools-validation/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<artifactId>powertools-parent</artifactId>
2626
<groupId>software.amazon.lambda</groupId>
27-
<version>1.17.0-SNAPSHOT</version>
27+
<version>1.17.0</version>
2828
</parent>
2929

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

0 commit comments

Comments
 (0)