Skip to content

Commit 961f527

Browse files
chore(ci): bump version to 2.11.0 (#3337)
Co-authored-by: aws-powertools-bot <[email protected]>
1 parent 6733584 commit 961f527

32 files changed

+234
-74
lines changed

Diff for: CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
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.11.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.10.0...v2.11.0) (2024-11-20)
7+
8+
9+
### Bug Fixes
10+
11+
* **metrics:** skip empty string dimension values ([#3319](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3319)) ([924d49d](https://github.com/aws-powertools/powertools-lambda-typescript/commit/924d49dcac8cc999782db51e61d8e854b752cd5c))
12+
* **parser:** add aws region to kinesis event ([#3260](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3260)) ([246f132](https://github.com/aws-powertools/powertools-lambda-typescript/commit/246f13253bdba1f6963cf53605b0ae10698f063e))
13+
* **parser:** event type literal for selfManagedKafka ([#3325](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3325)) ([5350afe](https://github.com/aws-powertools/powertools-lambda-typescript/commit/5350afed92d02b7b8d47f387705f70c59deeeb65))
14+
* **parser:** fix cause errors nested structure ([#3250](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3250)) ([1ff97cb](https://github.com/aws-powertools/powertools-lambda-typescript/commit/1ff97cb758b2e44a76ce108d8e54c9335088abba))
15+
16+
17+
### Features
18+
19+
* **batch:** Async Processing of Records for for SQS Fifo ([#3160](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3160)) ([e73b575](https://github.com/aws-powertools/powertools-lambda-typescript/commit/e73b575b784b7a59ca8cde02d4ca51ec97789d19))
20+
* **metrics:** ability to set custom timestamp with `setTimestamp` for metrics ([#3310](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3310)) ([0fb94c3](https://github.com/aws-powertools/powertools-lambda-typescript/commit/0fb94c38cbead6333ff4a17354c81ce73fe51afd))
21+
* **metrics:** add ability to pass custom logger ([#3057](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3057)) ([a531b90](https://github.com/aws-powertools/powertools-lambda-typescript/commit/a531b90031826970673eb8bfad78dee6edd0a359))
22+
23+
24+
25+
26+
627
# [2.10.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.9.0...v2.10.0) (2024-10-22)
728

829

Diff for: 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.11.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.10.0...v2.11.0) (2024-11-20)
7+
8+
**Note:** Version bump only for package powertools-sample-app
9+
10+
11+
12+
13+
614
# [2.10.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.9.0...v2.10.0) (2024-10-22)
715

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

Diff for: 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.10.0",
3+
"version": "2.11.0",
44
"author": {
55
"name": "Amazon Web Services",
66
"url": "https://aws.amazon.com"
@@ -39,12 +39,12 @@
3939
"vitest": "^2.0.5"
4040
},
4141
"dependencies": {
42-
"@aws-lambda-powertools/batch": "^2.10.0",
43-
"@aws-lambda-powertools/idempotency": "^2.10.0",
44-
"@aws-lambda-powertools/logger": "^2.10.0",
45-
"@aws-lambda-powertools/metrics": "^2.10.0",
46-
"@aws-lambda-powertools/parameters": "^2.10.0",
47-
"@aws-lambda-powertools/tracer": "^2.10.0",
42+
"@aws-lambda-powertools/batch": "^2.11.0",
43+
"@aws-lambda-powertools/idempotency": "^2.11.0",
44+
"@aws-lambda-powertools/logger": "^2.11.0",
45+
"@aws-lambda-powertools/metrics": "^2.11.0",
46+
"@aws-lambda-powertools/parameters": "^2.11.0",
47+
"@aws-lambda-powertools/tracer": "^2.11.0",
4848
"@aws-sdk/client-ssm": "^3.687.0",
4949
"@aws-sdk/lib-dynamodb": "^3.689.0",
5050
"@middy/core": "^4.7.0",

Diff for: examples/snippets/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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.11.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.10.0...v2.11.0) (2024-11-20)
7+
8+
9+
### Features
10+
11+
* **batch:** Async Processing of Records for for SQS Fifo ([#3160](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3160)) ([e73b575](https://github.com/aws-powertools/powertools-lambda-typescript/commit/e73b575b784b7a59ca8cde02d4ca51ec97789d19))
12+
* **metrics:** ability to set custom timestamp with `setTimestamp` for metrics ([#3310](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3310)) ([0fb94c3](https://github.com/aws-powertools/powertools-lambda-typescript/commit/0fb94c38cbead6333ff4a17354c81ce73fe51afd))
13+
14+
15+
16+
17+
618
# [2.10.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.9.0...v2.10.0) (2024-10-22)
719

820
**Note:** Version bump only for package code-snippets

Diff for: 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.10.0",
3+
"version": "2.11.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.10.0",
28-
"@aws-lambda-powertools/idempotency": "^2.10.0",
29-
"@aws-lambda-powertools/jmespath": "^2.10.0",
30-
"@aws-lambda-powertools/logger": "^2.10.0",
31-
"@aws-lambda-powertools/metrics": "^2.10.0",
32-
"@aws-lambda-powertools/parameters": "^2.10.0",
33-
"@aws-lambda-powertools/parser": "^2.10.0",
34-
"@aws-lambda-powertools/tracer": "^2.10.0",
27+
"@aws-lambda-powertools/batch": "^2.11.0",
28+
"@aws-lambda-powertools/idempotency": "^2.11.0",
29+
"@aws-lambda-powertools/jmespath": "^2.11.0",
30+
"@aws-lambda-powertools/logger": "^2.11.0",
31+
"@aws-lambda-powertools/metrics": "^2.11.0",
32+
"@aws-lambda-powertools/parameters": "^2.11.0",
33+
"@aws-lambda-powertools/parser": "^2.11.0",
34+
"@aws-lambda-powertools/tracer": "^2.11.0",
3535
"@aws-sdk/client-appconfigdata": "^3.687.0",
3636
"@aws-sdk/client-dynamodb": "^3.687.0",
3737
"@aws-sdk/client-secrets-manager": "^3.687.0",

Diff for: layers/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.11.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.10.0...v2.11.0) (2024-11-20)
7+
8+
9+
### Features
10+
11+
* **metrics:** add ability to pass custom logger ([#3057](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3057)) ([a531b90](https://github.com/aws-powertools/powertools-lambda-typescript/commit/a531b90031826970673eb8bfad78dee6edd0a359))
12+
13+
14+
15+
16+
617
# [2.10.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.9.0...v2.10.0) (2024-10-22)
718

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

Diff for: layers/package.json

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

Diff for: lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"layers",
1616
"examples/snippets"
1717
],
18-
"version": "2.10.0",
18+
"version": "2.11.0",
1919
"npmClient": "npm",
2020
"message": "chore(release): %s [skip ci]"
2121
}

Diff for: package-lock.json

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

Diff for: 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.11.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.10.0...v2.11.0) (2024-11-20)
7+
8+
9+
### Features
10+
11+
* **batch:** Async Processing of Records for for SQS Fifo ([#3160](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3160)) ([e73b575](https://github.com/aws-powertools/powertools-lambda-typescript/commit/e73b575b784b7a59ca8cde02d4ca51ec97789d19))
12+
13+
14+
15+
16+
617
# [2.10.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.9.0...v2.10.0) (2024-10-22)
718

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

Diff for: 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.10.0",
3+
"version": "2.11.0",
44
"description": "The batch processing package for the Powertools for AWS Lambda (TypeScript) library.",
55
"author": {
66
"name": "Amazon Web Services",

Diff for: 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.11.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.10.0...v2.11.0) (2024-11-20)
7+
8+
9+
### Features
10+
11+
* **metrics:** add ability to pass custom logger ([#3057](https://github.com/aws-powertools/powertools-lambda-typescript/issues/3057)) ([a531b90](https://github.com/aws-powertools/powertools-lambda-typescript/commit/a531b90031826970673eb8bfad78dee6edd0a359))
12+
13+
14+
15+
16+
617
# [2.10.0](https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.9.0...v2.10.0) (2024-10-22)
718

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

Diff for: packages/commons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-lambda-powertools/commons",
3-
"version": "2.10.0",
3+
"version": "2.11.0",
44
"description": "A shared utility package for Powertools for AWS Lambda (TypeScript) libraries",
55
"author": {
66
"name": "Amazon Web Services",

Diff for: packages/commons/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// this file is auto generated, do not modify
2-
export const PT_VERSION = '2.10.0';
2+
export const PT_VERSION = '2.11.0';

0 commit comments

Comments
 (0)