Skip to content

chore(ci): bump version to 2.4.0 #2763

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.3.0...v2.4.0) (2024-07-10)


### Bug Fixes

* **idempotency:** check error identity via names ([#2747](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2747)) ([55c3878](https://github.com/aws-powertools/powertools-lambda-typescript/commit/55c387816baee98829441526a0de001044d67344))


### Features

* **batch:** add option to not throw `FullBatchFailureError` when the entire batch fails ([#2711](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2711)) ([74198ef](https://github.com/aws-powertools/powertools-lambda-typescript/commit/74198ef1ec1d11267813d2f4b6dd5f4c5692f7d4))
* **internal:** support Middy.js 5.x ([#2748](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2748)) ([1d7ad61](https://github.com/aws-powertools/powertools-lambda-typescript/commit/1d7ad61a569a4b1421dbe1754b0179f676cfede7))
* **layers:** deploy Lambda layers in `ap-south-2` and `me-central-1` ([#2675](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2675)) ([208c57a](https://github.com/aws-powertools/powertools-lambda-typescript/commit/208c57a28eb7140bf4a2a93a4201a06fced049b9))
* **logger:** time zone aware timestamp in Logger ([#2710](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2710)) ([9fe4c75](https://github.com/aws-powertools/powertools-lambda-typescript/commit/9fe4c754960a07aad008ff4ada63cf68aa9ba89a))
* **maintenance:** drop support for Node.js 16.x ([#2717](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2717)) ([e4eee73](https://github.com/aws-powertools/powertools-lambda-typescript/commit/e4eee73770ffccead9212a566335ec256a31af7d))





# [2.3.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.2.0...v2.3.0) (2024-06-27)


Expand Down
8 changes: 8 additions & 0 deletions examples/app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.3.0...v2.4.0) (2024-07-10)

**Note:** Version bump only for package powertools-sample-app





# [2.3.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.2.0...v2.3.0) (2024-06-27)

**Note:** Version bump only for package powertools-sample-app
Expand Down
14 changes: 7 additions & 7 deletions examples/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "powertools-sample-app",
"version": "2.3.0",
"version": "2.4.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
Expand Down Expand Up @@ -45,12 +45,12 @@
"typescript": "^5.4.5"
},
"dependencies": {
"@aws-lambda-powertools/batch": "^2.3.0",
"@aws-lambda-powertools/idempotency": "^2.3.0",
"@aws-lambda-powertools/logger": "^2.3.0",
"@aws-lambda-powertools/metrics": "^2.3.0",
"@aws-lambda-powertools/parameters": "^2.3.0",
"@aws-lambda-powertools/tracer": "^2.3.0",
"@aws-lambda-powertools/batch": "^2.4.0",
"@aws-lambda-powertools/idempotency": "^2.4.0",
"@aws-lambda-powertools/logger": "^2.4.0",
"@aws-lambda-powertools/metrics": "^2.4.0",
"@aws-lambda-powertools/parameters": "^2.4.0",
"@aws-lambda-powertools/tracer": "^2.4.0",
"@aws-sdk/client-ssm": "^3.613.0",
"@aws-sdk/lib-dynamodb": "^3.613.0",
"@middy/core": "^4.7.0",
Expand Down
12 changes: 12 additions & 0 deletions examples/snippets/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.3.0...v2.4.0) (2024-07-10)


### Features

* **batch:** add option to not throw `FullBatchFailureError` when the entire batch fails ([#2711](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2711)) ([74198ef](https://github.com/aws-powertools/powertools-lambda-typescript/commit/74198ef1ec1d11267813d2f4b6dd5f4c5692f7d4))
* **logger:** time zone aware timestamp in Logger ([#2710](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2710)) ([9fe4c75](https://github.com/aws-powertools/powertools-lambda-typescript/commit/9fe4c754960a07aad008ff4ada63cf68aa9ba89a))





# [2.3.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.2.0...v2.3.0) (2024-06-27)

**Note:** Version bump only for package code-snippets
Expand Down
18 changes: 9 additions & 9 deletions examples/snippets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "code-snippets",
"version": "2.3.0",
"version": "2.4.0",
"description": "A collection code snippets for the Powertools for AWS Lambda (TypeScript) docs",
"author": {
"name": "Amazon Web Services",
Expand Down Expand Up @@ -29,14 +29,14 @@
},
"homepage": "https://github.com/aws-powertools/powertools-lambda-typescript#readme",
"devDependencies": {
"@aws-lambda-powertools/batch": "^2.3.0",
"@aws-lambda-powertools/idempotency": "^2.3.0",
"@aws-lambda-powertools/jmespath": "^2.3.0",
"@aws-lambda-powertools/logger": "^2.3.0",
"@aws-lambda-powertools/metrics": "^2.3.0",
"@aws-lambda-powertools/parameters": "^2.3.0",
"@aws-lambda-powertools/parser": "^2.3.0",
"@aws-lambda-powertools/tracer": "^2.3.0",
"@aws-lambda-powertools/batch": "^2.4.0",
"@aws-lambda-powertools/idempotency": "^2.4.0",
"@aws-lambda-powertools/jmespath": "^2.4.0",
"@aws-lambda-powertools/logger": "^2.4.0",
"@aws-lambda-powertools/metrics": "^2.4.0",
"@aws-lambda-powertools/parameters": "^2.4.0",
"@aws-lambda-powertools/parser": "^2.4.0",
"@aws-lambda-powertools/tracer": "^2.4.0",
"@aws-sdk/client-appconfigdata": "^3.613.0",
"@aws-sdk/client-dynamodb": "^3.613.0",
"@aws-sdk/client-secrets-manager": "^3.613.0",
Expand Down
11 changes: 11 additions & 0 deletions layers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.3.0...v2.4.0) (2024-07-10)


### Features

* **maintenance:** drop support for Node.js 16.x ([#2717](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2717)) ([e4eee73](https://github.com/aws-powertools/powertools-lambda-typescript/commit/e4eee73770ffccead9212a566335ec256a31af7d))





# [2.3.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.2.0...v2.3.0) (2024-06-27)

**Note:** Version bump only for package layers
Expand Down
2 changes: 1 addition & 1 deletion layers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "layers",
"version": "2.3.0",
"version": "2.4.0",
"bin": {
"layer": "bin/layers.js"
},
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"layers",
"examples/snippets"
],
"version": "2.3.0",
"version": "2.4.0",
"npmClient": "npm",
"message": "chore(release): %s [skip ci]"
}
68 changes: 34 additions & 34 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions packages/batch/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.3.0...v2.4.0) (2024-07-10)


### Features

* **batch:** add option to not throw `FullBatchFailureError` when the entire batch fails ([#2711](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2711)) ([74198ef](https://github.com/aws-powertools/powertools-lambda-typescript/commit/74198ef1ec1d11267813d2f4b6dd5f4c5692f7d4))
* **maintenance:** drop support for Node.js 16.x ([#2717](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2717)) ([e4eee73](https://github.com/aws-powertools/powertools-lambda-typescript/commit/e4eee73770ffccead9212a566335ec256a31af7d))





# [2.3.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.2.0...v2.3.0) (2024-06-27)

**Note:** Version bump only for package @aws-lambda-powertools/batch
Expand Down
2 changes: 1 addition & 1 deletion packages/batch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-lambda-powertools/batch",
"version": "2.3.0",
"version": "2.4.0",
"description": "The batch processing package for the Powertools for AWS Lambda (TypeScript) library.",
"author": {
"name": "Amazon Web Services",
Expand Down
11 changes: 11 additions & 0 deletions packages/commons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.3.0...v2.4.0) (2024-07-10)


### Features

* **maintenance:** drop support for Node.js 16.x ([#2717](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2717)) ([e4eee73](https://github.com/aws-powertools/powertools-lambda-typescript/commit/e4eee73770ffccead9212a566335ec256a31af7d))





# [2.3.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.2.0...v2.3.0) (2024-06-27)

**Note:** Version bump only for package @aws-lambda-powertools/commons
Expand Down
2 changes: 1 addition & 1 deletion packages/commons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-lambda-powertools/commons",
"version": "2.3.0",
"version": "2.4.0",
"description": "A shared utility package for Powertools for AWS Lambda (TypeScript) libraries",
"author": {
"name": "Amazon Web Services",
Expand Down
2 changes: 1 addition & 1 deletion packages/commons/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// this file is auto generated, do not modify
export const PT_VERSION = '2.3.0';
export const PT_VERSION = '2.4.0';
Loading