You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+31Lines changed: 31 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,37 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo
8
8
9
9
## [Unreleased]
10
10
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
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
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
20
20
<dependency>
21
21
<groupId>software.amazon.lambda</groupId>
22
22
<artifactId>powertools-tracing</artifactId>
23
-
<version>1.17.0</version>
23
+
<version>1.18.0</version>
24
24
</dependency>
25
25
<dependency>
26
26
<groupId>software.amazon.lambda</groupId>
27
27
<artifactId>powertools-logging</artifactId>
28
-
<version>1.17.0</version>
28
+
<version>1.18.0</version>
29
29
</dependency>
30
30
<dependency>
31
31
<groupId>software.amazon.lambda</groupId>
32
32
<artifactId>powertools-metrics</artifactId>
33
-
<version>1.17.0</version>
33
+
<version>1.18.0</version>
34
34
</dependency>
35
35
...
36
36
</dependencies>
@@ -190,7 +190,7 @@ Next, configure the aspectj-maven-plugin to compile-time weave (CTW) the aws-lam
190
190
191
191
## Examples
192
192
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.
194
194
195
195
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).
0 commit comments