Skip to content

Commit 540a14b

Browse files
chore(ci): bump version to 2.16.0 (#3702)
1 parent 1ca4b26 commit 540a14b

34 files changed

+251
-82
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.16.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.15.0...v2.16.0) (2025-03-07)
7+
8+
9+
### Bug Fixes
10+
11+
* **batch:** clear message group references after request ([#3674](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3674)) ([270115e](https://github.com/aws-powertools/powertools-lambda-typescript/commit/270115e288a552bdb32083f04f23530725a86243))
12+
* **ci:** Update layer balance scripts ([#3660](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3660)) ([aa14637](https://github.com/aws-powertools/powertools-lambda-typescript/commit/aa14637b0531b7a4a36d38158f684b68723c822e))
13+
* **parser:** envelope sub-path exports regression ([#3667](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3667)) ([beac102](https://github.com/aws-powertools/powertools-lambda-typescript/commit/beac1021107f4c117a561829b3b9ab1f404a4e14))
14+
* **parser:** update S3 Event Schema ([#3671](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3671)) ([c14c7b3](https://github.com/aws-powertools/powertools-lambda-typescript/commit/c14c7b3e7e1366379cd5062c91e09a62ddf7a42a))
15+
16+
17+
### Features
18+
19+
* **logger:** Enable log buffering feature ([#3641](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3641)) ([8203016](https://github.com/aws-powertools/powertools-lambda-typescript/commit/82030167abe3797392b919db2b4a006ae47e0ef7))
20+
* **logger:** flush buffer on uncaught error decorator ([#3676](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3676)) ([28db2e3](https://github.com/aws-powertools/powertools-lambda-typescript/commit/28db2e3c34e5fe27cb894112bf5c248704b3d9ea))
21+
* **logger:** Flush buffer on uncaught error in Middy middleware ([#3690](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3690)) ([23eebe4](https://github.com/aws-powertools/powertools-lambda-typescript/commit/23eebe46bd4d07315545ecefa672d53d14ac9a72))
22+
* **logger:** refresh sample rate calculation before each invocation ([#3672](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3672)) ([8c8d6b2](https://github.com/aws-powertools/powertools-lambda-typescript/commit/8c8d6b2ea4ccd473f56b05913169cc5995765562))
23+
* **validation:** add [@validator](https://github.com/validator) decorator for JSON Schema validation ([#3679](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3679)) ([ae6b7cf](https://github.com/aws-powertools/powertools-lambda-typescript/commit/ae6b7cf9dae3e1d233b9c51ca1e1dc04b26efa9a))
24+
* **validation:** Add Middy.js middleware for JSON Schema validation ([#3694](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3694)) ([443202b](https://github.com/aws-powertools/powertools-lambda-typescript/commit/443202bad2672ff26cc8237f417b8bf14bbd02d9))
25+
* **validation:** implement validate function ([#3662](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3662)) ([f55127b](https://github.com/aws-powertools/powertools-lambda-typescript/commit/f55127b7f894b5c673e739da06cbaabe12d0d1ca))
26+
27+
28+
29+
30+
631
# [2.15.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.14.0...v2.15.0) (2025-02-25)
732

833

examples/app/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.16.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.15.0...v2.16.0) (2025-03-07)
7+
8+
**Note:** Version bump only for package powertools-sample-app
9+
10+
11+
12+
13+
614
# [2.15.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.14.0...v2.15.0) (2025-02-25)
715

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

examples/app/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "powertools-sample-app",
3-
"version": "2.15.0",
3+
"version": "2.16.0",
44
"author": {
55
"name": "Amazon Web Services",
66
"url": "https://aws.amazon.com"
@@ -38,12 +38,12 @@
3838
"vitest": "^3.0.5"
3939
},
4040
"dependencies": {
41-
"@aws-lambda-powertools/batch": "^2.15.0",
42-
"@aws-lambda-powertools/idempotency": "^2.15.0",
43-
"@aws-lambda-powertools/logger": "^2.15.0",
44-
"@aws-lambda-powertools/metrics": "^2.15.0",
45-
"@aws-lambda-powertools/parameters": "^2.15.0",
46-
"@aws-lambda-powertools/tracer": "^2.15.0",
41+
"@aws-lambda-powertools/batch": "^2.16.0",
42+
"@aws-lambda-powertools/idempotency": "^2.16.0",
43+
"@aws-lambda-powertools/logger": "^2.16.0",
44+
"@aws-lambda-powertools/metrics": "^2.16.0",
45+
"@aws-lambda-powertools/parameters": "^2.16.0",
46+
"@aws-lambda-powertools/tracer": "^2.16.0",
4747
"@aws-sdk/client-ssm": "^3.759.0",
4848
"@aws-sdk/lib-dynamodb": "^3.758.0",
4949
"@middy/core": "^4.7.0",

examples/snippets/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.16.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.15.0...v2.16.0) (2025-03-07)
7+
8+
9+
### Features
10+
11+
* **logger:** refresh sample rate calculation before each invocation ([#3672](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3672)) ([8c8d6b2](https://github.com/aws-powertools/powertools-lambda-typescript/commit/8c8d6b2ea4ccd473f56b05913169cc5995765562))
12+
13+
14+
15+
16+
617
# [2.15.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.14.0...v2.15.0) (2025-02-25)
718

819

examples/snippets/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-snippets",
3-
"version": "2.15.0",
3+
"version": "2.16.0",
44
"description": "A collection code snippets for the Powertools for AWS Lambda (TypeScript) docs",
55
"author": {
66
"name": "Amazon Web Services",
@@ -24,14 +24,14 @@
2424
},
2525
"homepage": "https://github.com/aws-powertools/powertools-lambda-typescript#readme",
2626
"devDependencies": {
27-
"@aws-lambda-powertools/batch": "^2.15.0",
28-
"@aws-lambda-powertools/idempotency": "^2.15.0",
29-
"@aws-lambda-powertools/jmespath": "^2.15.0",
30-
"@aws-lambda-powertools/logger": "^2.15.0",
31-
"@aws-lambda-powertools/metrics": "^2.15.0",
32-
"@aws-lambda-powertools/parameters": "^2.15.0",
33-
"@aws-lambda-powertools/parser": "^2.15.0",
34-
"@aws-lambda-powertools/tracer": "^2.15.0",
27+
"@aws-lambda-powertools/batch": "^2.16.0",
28+
"@aws-lambda-powertools/idempotency": "^2.16.0",
29+
"@aws-lambda-powertools/jmespath": "^2.16.0",
30+
"@aws-lambda-powertools/logger": "^2.16.0",
31+
"@aws-lambda-powertools/metrics": "^2.16.0",
32+
"@aws-lambda-powertools/parameters": "^2.16.0",
33+
"@aws-lambda-powertools/parser": "^2.16.0",
34+
"@aws-lambda-powertools/tracer": "^2.16.0",
3535
"@aws-sdk/client-appconfigdata": "^3.758.0",
3636
"@aws-sdk/client-dynamodb": "^3.758.0",
3737
"@aws-sdk/client-secrets-manager": "^3.758.0",

layers/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.16.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.15.0...v2.16.0) (2025-03-07)
7+
8+
**Note:** Version bump only for package layers
9+
10+
11+
12+
13+
614
# [2.15.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.14.0...v2.15.0) (2025-02-25)
715

816
**Note:** Version bump only for package layers

layers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "layers",
3-
"version": "2.15.0",
3+
"version": "2.16.0",
44
"bin": {
55
"layer": "bin/layers.js"
66
},

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"layers",
1717
"examples/snippets"
1818
],
19-
"version": "2.15.0",
19+
"version": "2.16.0",
2020
"npmClient": "npm",
2121
"message": "chore(release): %s [skip ci]"
2222
}

package-lock.json

+40-40
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/batch/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.16.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.15.0...v2.16.0) (2025-03-07)
7+
8+
9+
### Bug Fixes
10+
11+
* **batch:** clear message group references after request ([#3674](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3674)) ([270115e](https://github.com/aws-powertools/powertools-lambda-typescript/commit/270115e288a552bdb32083f04f23530725a86243))
12+
13+
14+
15+
16+
617
# [2.15.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.14.0...v2.15.0) (2025-02-25)
718

819
**Note:** Version bump only for package @aws-lambda-powertools/batch

packages/batch/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-lambda-powertools/batch",
3-
"version": "2.15.0",
3+
"version": "2.16.0",
44
"description": "The batch processing package for the Powertools for AWS Lambda (TypeScript) library.",
55
"author": {
66
"name": "Amazon Web Services",

packages/commons/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.16.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.15.0...v2.16.0) (2025-03-07)
7+
8+
9+
### Features
10+
11+
* **logger:** refresh sample rate calculation before each invocation ([#3672](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3672)) ([8c8d6b2](https://github.com/aws-powertools/powertools-lambda-typescript/commit/8c8d6b2ea4ccd473f56b05913169cc5995765562))
12+
13+
14+
15+
16+
617
# [2.15.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.14.0...v2.15.0) (2025-02-25)
718

819
**Note:** Version bump only for package @aws-lambda-powertools/commons

0 commit comments

Comments
 (0)