Skip to content

Commit 877ab51

Browse files
chore:Prep release 1.18.0 (#1515)
* chore:prep release 1.18.0 * update version * update version in kotlin example * maven local repo in gradle example * update changelog --------- Co-authored-by: scottgerring <[email protected]>
1 parent 6b8fe49 commit 877ab51

File tree

34 files changed

+72
-40
lines changed

34 files changed

+72
-40
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,37 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo
88

99
## [Unreleased]
1010

11+
## [1.18.0] - 2023-11-16
12+
13+
### Added
14+
15+
* feat: add support for [Lambda Advanced Logging Controls (ALC)](https://docs.aws.amazon.com/lambda/latest/dg/monitoring-cloudwatchlogs.html#monitoring-cloudwatchlogs-advanced) (#1514) by @jeromevdl
16+
* feat: Add support for POWERTOOLS_LOGGER_LOG_EVENT (#1510) by @AlexeySoshin
17+
18+
### Maintenance
19+
20+
* fix: json schema 403 error (#1457) by @jeromevdl
21+
* fix: array jmespath fail in idempotency module (#1420) by @jeromevdl
22+
* chore: java21 support in our build (#1488) by @jeromevdl
23+
* chore: Addition of Warn Message If Invalid Annotation Key While Tracing #1511 (#1512) by @jdoherty
24+
* fix: null namespace should fallback to default namespace (#1506) by @jeromevdl
25+
* fix: get trace id from system property when env var is not set (#1503) by @mriccia
26+
* chore: artifacts size on good branches (#1493) by @jeromevdl
27+
* fix: enforce jackson databind version (#1472) by @jeromevdl
28+
* chore: add missing projects and improve workflow (#1487) by @jeromevdl
29+
* chore: Reporting size of the jars in GitHub comments (#1196) by @jeromevdl
30+
* Deps: Bump third party dependencies to the latest versions.
31+
32+
### Documentation
33+
34+
* docs(customer-reference): add Vertex Pharmaceuticals as a customer reference (#1486) by @scottgerring
35+
* docs: Adding Kotlin example. (#1454) by @jasoniharris
36+
* docs: Terraform example (#1478) by @skal111
37+
* docs: Add Serveless Framework example (#1363) by @AlexeySoshin
38+
* docs: Fix link to SQS large message migration guide (#1422) by @scottgerring
39+
* docs(logging): correct log example keys (#1411) by @walmsles
40+
* docs: Update gradle configuration readme (#1359) by @scottgerring
41+
1142
## [1.17.0] - 2023-08-21
1243

1344
### Added

README.md

Lines changed: 4 additions & 4 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.17.0</version>
23+
<version>1.18.0</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>software.amazon.lambda</groupId>
2727
<artifactId>powertools-logging</artifactId>
28-
<version>1.17.0</version>
28+
<version>1.18.0</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>software.amazon.lambda</groupId>
3232
<artifactId>powertools-metrics</artifactId>
33-
<version>1.17.0</version>
33+
<version>1.18.0</version>
3434
</dependency>
3535
...
3636
</dependencies>
@@ -190,7 +190,7 @@ Next, configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lam
190190

191191
## Examples
192192

193-
See the latest release of the **[examples](https://github.com/aws-powertools/powertools-lambda-java/tree/v1.17.0/examples)** for example projects showcasing usage of different utilities.
193+
See the latest release of the **[examples](https://github.com/aws-powertools/powertools-lambda-java/tree/v1.18.0/examples)** for example projects showcasing usage of different utilities.
194194

195195
Have a demo project to contribute which showcase usage of different utilities from powertools? We are happy to accept it [here](CONTRIBUTING.md#security-issue-notifications).
196196

examples/pom.xml

Lines changed: 1 addition & 1 deletion
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.18.0-SNAPSHOT</version>
23+
<version>1.18.0</version>
2424
<packaging>pom</packaging>
2525

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

examples/powertools-examples-batch/pom.xml

Lines changed: 1 addition & 1 deletion
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.18.0-SNAPSHOT</version>
8+
<version>1.18.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

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

examples/powertools-examples-core/cdk/app/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.16.1</version>
6+
<version>1.17.0</version>
77
<artifactId>powertools-examples-core-cdk</artifactId>
88
<packaging>jar</packaging>
99

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

Lines changed: 1 addition & 1 deletion
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.18.0-SNAPSHOT</version>
7+
<version>1.18.0</version>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
<cdk.version>2.100.0</cdk.version>

examples/powertools-examples-core/gradle/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ compileJava {
1818
}
1919

2020
repositories {
21+
mavenLocal()
2122
mavenCentral()
2223
}
2324

@@ -27,8 +28,8 @@ dependencies {
2728
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2'
2829
implementation 'com.amazonaws:aws-lambda-java-events:3.11.0'
2930
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.2'
30-
aspect 'software.amazon.lambda:powertools-tracing:1.17.0'
31-
aspect 'software.amazon.lambda:powertools-logging:1.17.0'
32-
aspect 'software.amazon.lambda:powertools-metrics:1.17.0'
31+
aspect 'software.amazon.lambda:powertools-tracing:1.18.0'
32+
aspect 'software.amazon.lambda:powertools-logging:1.18.0'
33+
aspect 'software.amazon.lambda:powertools-metrics:1.18.0'
3334
}
3435

examples/powertools-examples-core/kotlin/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ dependencies {
1414
implementation("com.fasterxml.jackson.core:jackson-databind:2.13.2.2")
1515
implementation("com.amazonaws:aws-lambda-java-events:3.11.0")
1616
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.2")
17-
aspect("software.amazon.lambda:powertools-tracing:1.18.0-SNAPSHOT")
18-
aspect("software.amazon.lambda:powertools-logging:1.18.0-SNAPSHOT")
19-
aspect("software.amazon.lambda:powertools-metrics:1.18.0-SNAPSHOT")
17+
aspect("software.amazon.lambda:powertools-tracing:1.18.0")
18+
aspect("software.amazon.lambda:powertools-logging:1.18.0")
19+
aspect("software.amazon.lambda:powertools-metrics:1.18.0")
2020
testImplementation("junit:junit:4.13.2")
2121
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
2222
}

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

0 commit comments

Comments
 (0)