Skip to content

Commit

Permalink
chore: update the project version to 1.14.0 (#1052)
Browse files Browse the repository at this point in the history
  • Loading branch information
kozub authored Feb 17, 2023
1 parent 2ce81bd commit 3037898
Show file tree
Hide file tree
Showing 15 changed files with 37 additions and 21 deletions.
26 changes: 21 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,22 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo

## [Unreleased]

## [1.14.0] - 2023-02-17

### Added

* Feature: Introduce `MetricsUtils.withMetricsLogger()` utility method (#1000) by @humanzz

#### Maintenance

* Update logic for recording documentation pages views to use correct runtime name (#1047) by @kozub
* Deps: Bump third party dependencies to the latest versions.

### Documentation

* Docs: Update PowerTools definition by @heitorlessa
* Docs: Add information about other supported langauges to README and docs (#1033) by @kozub

## [1.13.0] - 2022-12-14

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

## [1.12.3] - 2022-07-12

### Maintenance
#### Maintenance

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

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


## Maintenance
### Maintenance

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

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

* **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)

## Maintenance
### Maintenance

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

Expand All @@ -147,7 +163,7 @@ Users no longer need to depend on [com.nickwongdev](https://mvnrepository.com/ar
* **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)).
* **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)).

## Maintenance
### Maintenance

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

Expand All @@ -158,7 +174,7 @@ Users no longer need to depend on [com.nickwongdev](https://mvnrepository.com/ar
* **Tracing**: Support for Boolean and Number type as value in `TracingUtils.putAnnotation()`([#423](https://github.com/awslabs/aws-lambda-powertools-java/pull/432)).
* **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)).

## Maintenance
### Maintenance

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

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ Powertools is available in Maven Central. You can use your favourite dependency
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-tracing</artifactId>
<version>1.13.0</version>
<version>1.14.0</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-logging</artifactId>
<version>1.13.0</version>
<version>1.14.0</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-metrics</artifactId>
<version>1.13.0</version>
<version>1.14.0</version>
</dependency>
...
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ extra_javascript:

extra:
powertools:
version: 1.13.0
version: 1.14.0

repo_url: https://github.com/awslabs/aws-lambda-powertools-java
edit_uri: edit/master/docs
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-parent</artifactId>
<version>1.13.0</version>
<version>1.14.0</version>
<packaging>pom</packaging>

<name>AWS Lambda Powertools for Java library Parent</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-cloudformation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.13.0</version>
<version>1.14.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Cloudformation</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.13.0</version>
<version>1.14.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Core</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-idempotency/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-parent</artifactId>
<version>1.13.0</version>
<version>1.14.0</version>
</parent>

<artifactId>powertools-idempotency</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion powertools-logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.13.0</version>
<version>1.14.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Logging</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-metrics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.13.0</version>
<version>1.14.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Metrics</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-parameters/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.13.0</version>
<version>1.14.0</version>
</parent>

<artifactId>powertools-parameters</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion powertools-serialization/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.13.0</version>
<version>1.14.0</version>
</parent>

<artifactId>powertools-serialization</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion powertools-sqs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.13.0</version>
<version>1.14.0</version>
</parent>

<name>AWS Lambda Powertools for Java library SQS</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-test-suite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.13.0</version>
<version>1.14.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Test Suite</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-tracing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.13.0</version>
<version>1.14.0</version>
</parent>

<name>AWS Lambda Powertools for Java library Tracing</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-validation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>1.13.0</version>
<version>1.14.0</version>
</parent>

<name>AWS Lambda Powertools for Java validation library</name>
Expand Down

0 comments on commit 3037898

Please sign in to comment.