Skip to content

Commit 3037898

Browse files
authored
chore: update the project version to 1.14.0 (#1052)
1 parent 2ce81bd commit 3037898

File tree

15 files changed

+37
-21
lines changed

15 files changed

+37
-21
lines changed

CHANGELOG.md

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

99
## [Unreleased]
1010

11+
## [1.14.0] - 2023-02-17
12+
13+
### Added
14+
15+
* Feature: Introduce `MetricsUtils.withMetricsLogger()` utility method (#1000) by @humanzz
16+
17+
#### Maintenance
18+
19+
* Update logic for recording documentation pages views to use correct runtime name (#1047) by @kozub
20+
* Deps: Bump third party dependencies to the latest versions.
21+
22+
### Documentation
23+
24+
* Docs: Update PowerTools definition by @heitorlessa
25+
* Docs: Add information about other supported langauges to README and docs (#1033) by @kozub
26+
1127
## [1.13.0] - 2022-12-14
1228

1329
### Added
@@ -27,7 +43,7 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo
2743

2844
## [1.12.3] - 2022-07-12
2945

30-
### Maintenance
46+
#### Maintenance
3147

3248
* Fixes to resolve vulnerable transitive dependencies ([919](https://github.com/awslabs/aws-lambda-powertools-java/issues/919))
3349

@@ -47,7 +63,7 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo
4763
* **Idempotency**: disable dynamodb client creation in persistent store when disabling idempotency ([#796](https://github.com/awslabs/aws-lambda-powertools-java/pull/796))
4864

4965

50-
## Maintenance
66+
### Maintenance
5167

5268
* **deps**: Bump third party dependencies to the latest versions.
5369

@@ -121,7 +137,7 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo
121137

122138
* **Logging**: `@Logging` annotation now works with `@Tracing` annotation on `RequestStreamHandler` when used in `logEvent` mode. [#567](https://github.com/awslabs/aws-lambda-powertools-java/pull/567)
123139

124-
## Maintenance
140+
### Maintenance
125141

126142
* **deps**: Bump third party dependencies to the latest versions.
127143

@@ -147,7 +163,7 @@ Users no longer need to depend on [com.nickwongdev](https://mvnrepository.com/ar
147163
* **Logging**: Support for extracting Correlation id using `@Logging` annotation via `correlationIdPath` attribute and `setCorrelationId()` method in `LoggingUtils`([#448](https://github.com/awslabs/aws-lambda-powertools-java/pull/448)).
148164
* **Logging**: New `clearState` attribute on `@Logging` annotation to clear previously added custom keys upon invocation([#453](https://github.com/awslabs/aws-lambda-powertools-java/pull/453)).
149165

150-
## Maintenance
166+
### Maintenance
151167

152168
* **deps**: Bump third party dependencies to the latest versions.
153169

@@ -158,7 +174,7 @@ Users no longer need to depend on [com.nickwongdev](https://mvnrepository.com/ar
158174
* **Tracing**: Support for Boolean and Number type as value in `TracingUtils.putAnnotation()`([#423](https://github.com/awslabs/aws-lambda-powertools-java/pull/432)).
159175
* **Logging**: API to remove any additional custom key from logger entry using `LoggingUtils.removeKeys()`([#395](https://github.com/awslabs/aws-lambda-powertools-java/pull/395)).
160176

161-
## Maintenance
177+
### Maintenance
162178

163179
* **deps**: Bump third party dependencies to the latest versions.
164180

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ Powertools is available in Maven Central. You can use your favourite dependency
1919
<dependency>
2020
<groupId>software.amazon.lambda</groupId>
2121
<artifactId>powertools-tracing</artifactId>
22-
<version>1.13.0</version>
22+
<version>1.14.0</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>software.amazon.lambda</groupId>
2626
<artifactId>powertools-logging</artifactId>
27-
<version>1.13.0</version>
27+
<version>1.14.0</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>software.amazon.lambda</groupId>
3131
<artifactId>powertools-metrics</artifactId>
32-
<version>1.13.0</version>
32+
<version>1.14.0</version>
3333
</dependency>
3434
...
3535
</dependencies>

mkdocs.yml

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

8282
extra:
8383
powertools:
84-
version: 1.13.0
84+
version: 1.14.0
8585

8686
repo_url: https://github.com/awslabs/aws-lambda-powertools-java
8787
edit_uri: edit/master/docs

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-parent</artifactId>
9-
<version>1.13.0</version>
9+
<version>1.14.0</version>
1010
<packaging>pom</packaging>
1111

1212
<name>AWS Lambda Powertools for Java library Parent</name>

powertools-cloudformation/pom.xml

Lines changed: 1 addition & 1 deletion
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.13.0</version>
13+
<version>1.14.0</version>
1414
</parent>
1515

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

powertools-core/pom.xml

Lines changed: 1 addition & 1 deletion
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.13.0</version>
13+
<version>1.14.0</version>
1414
</parent>
1515

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

powertools-idempotency/pom.xml

Lines changed: 1 addition & 1 deletion
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.13.0</version>
10+
<version>1.14.0</version>
1111
</parent>
1212

1313
<artifactId>powertools-idempotency</artifactId>

powertools-logging/pom.xml

Lines changed: 1 addition & 1 deletion
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.13.0</version>
13+
<version>1.14.0</version>
1414
</parent>
1515

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

powertools-metrics/pom.xml

Lines changed: 1 addition & 1 deletion
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.13.0</version>
13+
<version>1.14.0</version>
1414
</parent>
1515

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

powertools-parameters/pom.xml

Lines changed: 1 addition & 1 deletion
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.13.0</version>
10+
<version>1.14.0</version>
1111
</parent>
1212

1313
<artifactId>powertools-parameters</artifactId>

powertools-serialization/pom.xml

Lines changed: 1 addition & 1 deletion
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.13.0</version>
10+
<version>1.14.0</version>
1111
</parent>
1212

1313
<artifactId>powertools-serialization</artifactId>

powertools-sqs/pom.xml

Lines changed: 1 addition & 1 deletion
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.13.0</version>
13+
<version>1.14.0</version>
1414
</parent>
1515

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

powertools-test-suite/pom.xml

Lines changed: 1 addition & 1 deletion
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.13.0</version>
13+
<version>1.14.0</version>
1414
</parent>
1515

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

powertools-tracing/pom.xml

Lines changed: 1 addition & 1 deletion
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.13.0</version>
13+
<version>1.14.0</version>
1414
</parent>
1515

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

powertools-validation/pom.xml

Lines changed: 1 addition & 1 deletion
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.13.0</version>
13+
<version>1.14.0</version>
1414
</parent>
1515

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

0 commit comments

Comments
 (0)