Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

Bumps the aws-powertools group in /lambdas with 4 updates: @aws-lambda-powertools/parameters, @aws-lambda-powertools/logger, @aws-lambda-powertools/metrics and @aws-lambda-powertools/tracer.

Updates @aws-lambda-powertools/parameters from 2.28.1 to 2.29.0

Release notes

Sourced from @​aws-lambda-powertools/parameters's releases.

v2.29.0

Summary

🎉 Powertools for AWS Lambda (Typescript) - Event Handler Utility is now Generally Available (GA)

Docs

We're excited to announce that the Event Handler utility is now production-ready! 🚀 Event Handler provides lightweight routing to reduce boilerplate for API Gateway REST/HTTP API, ALB and Lambda Function URLs.

⭐ Congratulations to @​yoshi-taka, @​iamgerg, @​fidelisojeah, and @​benthorner for their first PR merged in the project 🎉

Import path update

With Event Handler moving to GA, the import path has changed from the experimental namespace to a stable one.

// Before
import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest';
// Now
import { Router } from '@​aws-lambda-powertools/event-handler/http';

Support for HTTP APIs, ALB, and Function URL

Event Handler now supports HTTP APIs (API Gateway v2), Application Load Balancers (ALB) and Lambda Function URL in addition to the existing REST API and support. This means you can use the same routing API across different AWS services, making it easier to build and migrate serverless applications regardless of your chosen architecture.

import { Router } from '@aws-lambda-powertools/event-handler/http';
import type {
  ALBEvent,
  APIGatewayProxyEvent,
  APIGatewayProxyEventV2,
  Context,
  LambdaFunctionURLEvent,
} from 'aws-lambda';
const app = new Router();
app.get('/hello', () => {
return {
message: 'Hello Event Handler!',
};
});
// Works across different services without any changes
export const restApiHandler = (event: APIGatewayProxyEvent, context: Context) =>
app.resolve(event, context);
export const httpApiHandler = (
</tr></table>

... (truncated)

Changelog

Sourced from @​aws-lambda-powertools/parameters's changelog.

2.29.0 (2025-11-21)

Improvements

  • commons Make trace ID access more robust (#4693) (b26cd2c)

Bug Fixes

  • logger infinite loop on log buffer when item size is max bytes (#4741) (f0677d4)
  • logger not passing persistent keys to children (#4740) (eafbe13)
  • event-handler moved the response mutation logic to the composeMiddleware function (#4773) (2fe04e3)
  • event-handler handle repeated queryString values (#4755) (5d3cf2d)
  • event-handler allow event handler response to return array (#4725) (eef92ca)

Features

  • logger use async local storage for logger (#4668) (4507fcc)
  • metrics use async local storage for metrics (#4663) (#4694) (2e08f74)
  • parser add type for values parsed by DynamoDBStreamRecord (#4793) (c2bd849)
  • batch use async local storage for batch processing (#4700) (67a8de7)
  • event-handler add support for ALB (#4759) (a470892)
  • event-handler expose response streaming in public API (#4743) (be4e4e2)
  • event-handler add first-class support for binary responses (#4723) (13dbcdc)
  • event-handler Add support for HTTP APIs (API Gateway v2) (#4714) (2f70018)

Maintenance

  • tracer bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (#4792) (afb5678)
  • event-handler unflag http handler from experimental (#4801) (a2deb8d)
Commits
  • fa726e0 chore(ci): bump version to 2.29.0 (#4802)
  • a2deb8d chore(event-handler): unflag http handler from experimental (#4801)
  • c2bd849 feat(parser): add type for values parsed by DynamoDBStreamRecord (#4793)
  • afb5678 chore(deps): bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (#4792)
  • 8806cad docs(event-handler): added documentation for support for HTTP API, ALB and FU...
  • d2e0fcc chore(deps): upgrade InvokeStore to v0.2.1 (#4794)
  • bccd0b1 docs(event-handler): add response streaming docs (#4786)
  • 2279f9b chore(deps): bump mkdocs-llmstxt from 0.4.0 to 0.5.0 in /docs (#4789)
  • 12c5e63 chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 (#4788)
  • 943bb4f docs(event-handler): update binary response docs (#4783)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​aws-lambda-powertools/parameters since your current version.


Updates @aws-lambda-powertools/logger from 2.28.1 to 2.29.0

Release notes

Sourced from @​aws-lambda-powertools/logger's releases.

v2.29.0

Summary

🎉 Powertools for AWS Lambda (Typescript) - Event Handler Utility is now Generally Available (GA)

Docs

We're excited to announce that the Event Handler utility is now production-ready! 🚀 Event Handler provides lightweight routing to reduce boilerplate for API Gateway REST/HTTP API, ALB and Lambda Function URLs.

⭐ Congratulations to @​yoshi-taka, @​iamgerg, @​fidelisojeah, and @​benthorner for their first PR merged in the project 🎉

Import path update

With Event Handler moving to GA, the import path has changed from the experimental namespace to a stable one.

// Before
import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest';
// Now
import { Router } from '@​aws-lambda-powertools/event-handler/http';

Support for HTTP APIs, ALB, and Function URL

Event Handler now supports HTTP APIs (API Gateway v2), Application Load Balancers (ALB) and Lambda Function URL in addition to the existing REST API and support. This means you can use the same routing API across different AWS services, making it easier to build and migrate serverless applications regardless of your chosen architecture.

import { Router } from '@aws-lambda-powertools/event-handler/http';
import type {
  ALBEvent,
  APIGatewayProxyEvent,
  APIGatewayProxyEventV2,
  Context,
  LambdaFunctionURLEvent,
} from 'aws-lambda';
const app = new Router();
app.get('/hello', () => {
return {
message: 'Hello Event Handler!',
};
});
// Works across different services without any changes
export const restApiHandler = (event: APIGatewayProxyEvent, context: Context) =>
app.resolve(event, context);
export const httpApiHandler = (
</tr></table>

... (truncated)

Changelog

Sourced from @​aws-lambda-powertools/logger's changelog.

2.29.0 (2025-11-21)

Improvements

  • commons Make trace ID access more robust (#4693) (b26cd2c)

Bug Fixes

  • logger infinite loop on log buffer when item size is max bytes (#4741) (f0677d4)
  • logger not passing persistent keys to children (#4740) (eafbe13)
  • event-handler moved the response mutation logic to the composeMiddleware function (#4773) (2fe04e3)
  • event-handler handle repeated queryString values (#4755) (5d3cf2d)
  • event-handler allow event handler response to return array (#4725) (eef92ca)

Features

  • logger use async local storage for logger (#4668) (4507fcc)
  • metrics use async local storage for metrics (#4663) (#4694) (2e08f74)
  • parser add type for values parsed by DynamoDBStreamRecord (#4793) (c2bd849)
  • batch use async local storage for batch processing (#4700) (67a8de7)
  • event-handler add support for ALB (#4759) (a470892)
  • event-handler expose response streaming in public API (#4743) (be4e4e2)
  • event-handler add first-class support for binary responses (#4723) (13dbcdc)
  • event-handler Add support for HTTP APIs (API Gateway v2) (#4714) (2f70018)

Maintenance

  • tracer bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (#4792) (afb5678)
  • event-handler unflag http handler from experimental (#4801) (a2deb8d)
Commits
  • fa726e0 chore(ci): bump version to 2.29.0 (#4802)
  • a2deb8d chore(event-handler): unflag http handler from experimental (#4801)
  • c2bd849 feat(parser): add type for values parsed by DynamoDBStreamRecord (#4793)
  • afb5678 chore(deps): bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (#4792)
  • 8806cad docs(event-handler): added documentation for support for HTTP API, ALB and FU...
  • d2e0fcc chore(deps): upgrade InvokeStore to v0.2.1 (#4794)
  • bccd0b1 docs(event-handler): add response streaming docs (#4786)
  • 2279f9b chore(deps): bump mkdocs-llmstxt from 0.4.0 to 0.5.0 in /docs (#4789)
  • 12c5e63 chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 (#4788)
  • 943bb4f docs(event-handler): update binary response docs (#4783)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​aws-lambda-powertools/logger since your current version.


Updates @aws-lambda-powertools/metrics from 2.28.1 to 2.29.0

Release notes

Sourced from @​aws-lambda-powertools/metrics's releases.

v2.29.0

Summary

🎉 Powertools for AWS Lambda (Typescript) - Event Handler Utility is now Generally Available (GA)

Docs

We're excited to announce that the Event Handler utility is now production-ready! 🚀 Event Handler provides lightweight routing to reduce boilerplate for API Gateway REST/HTTP API, ALB and Lambda Function URLs.

⭐ Congratulations to @​yoshi-taka, @​iamgerg, @​fidelisojeah, and @​benthorner for their first PR merged in the project 🎉

Import path update

With Event Handler moving to GA, the import path has changed from the experimental namespace to a stable one.

// Before
import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest';
// Now
import { Router } from '@​aws-lambda-powertools/event-handler/http';

Support for HTTP APIs, ALB, and Function URL

Event Handler now supports HTTP APIs (API Gateway v2), Application Load Balancers (ALB) and Lambda Function URL in addition to the existing REST API and support. This means you can use the same routing API across different AWS services, making it easier to build and migrate serverless applications regardless of your chosen architecture.

import { Router } from '@aws-lambda-powertools/event-handler/http';
import type {
  ALBEvent,
  APIGatewayProxyEvent,
  APIGatewayProxyEventV2,
  Context,
  LambdaFunctionURLEvent,
} from 'aws-lambda';
const app = new Router();
app.get('/hello', () => {
return {
message: 'Hello Event Handler!',
};
});
// Works across different services without any changes
export const restApiHandler = (event: APIGatewayProxyEvent, context: Context) =>
app.resolve(event, context);
export const httpApiHandler = (
</tr></table>

... (truncated)

Changelog

Sourced from @​aws-lambda-powertools/metrics's changelog.

2.29.0 (2025-11-21)

Improvements

  • commons Make trace ID access more robust (#4693) (b26cd2c)

Bug Fixes

  • logger infinite loop on log buffer when item size is max bytes (#4741) (f0677d4)
  • logger not passing persistent keys to children (#4740) (eafbe13)
  • event-handler moved the response mutation logic to the composeMiddleware function (#4773) (2fe04e3)
  • event-handler handle repeated queryString values (#4755) (5d3cf2d)
  • event-handler allow event handler response to return array (#4725) (eef92ca)

Features

  • logger use async local storage for logger (#4668) (4507fcc)
  • metrics use async local storage for metrics (#4663) (#4694) (2e08f74)
  • parser add type for values parsed by DynamoDBStreamRecord (#4793) (c2bd849)
  • batch use async local storage for batch processing (#4700) (67a8de7)
  • event-handler add support for ALB (#4759) (a470892)
  • event-handler expose response streaming in public API (#4743) (be4e4e2)
  • event-handler add first-class support for binary responses (#4723) (13dbcdc)
  • event-handler Add support for HTTP APIs (API Gateway v2) (#4714) (2f70018)

Maintenance

  • tracer bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (#4792) (afb5678)
  • event-handler unflag http handler from experimental (#4801) (a2deb8d)
Commits
  • fa726e0 chore(ci): bump version to 2.29.0 (#4802)
  • a2deb8d chore(event-handler): unflag http handler from experimental (#4801)
  • c2bd849 feat(parser): add type for values parsed by DynamoDBStreamRecord (#4793)
  • afb5678 chore(deps): bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (#4792)
  • 8806cad docs(event-handler): added documentation for support for HTTP API, ALB and FU...
  • d2e0fcc chore(deps): upgrade InvokeStore to v0.2.1 (#4794)
  • bccd0b1 docs(event-handler): add response streaming docs (#4786)
  • 2279f9b chore(deps): bump mkdocs-llmstxt from 0.4.0 to 0.5.0 in /docs (#4789)
  • 12c5e63 chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 (#4788)
  • 943bb4f docs(event-handler): update binary response docs (#4783)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​aws-lambda-powertools/metrics since your current version.


Updates @aws-lambda-powertools/tracer from 2.28.1 to 2.29.0

Release notes

Sourced from @​aws-lambda-powertools/tracer's releases.

v2.29.0

Summary

🎉 Powertools for AWS Lambda (Typescript) - Event Handler Utility is now Generally Available (GA)

Docs

We're excited to announce that the Event Handler utility is now production-ready! 🚀 Event Handler provides lightweight routing to reduce boilerplate for API Gateway REST/HTTP API, ALB and Lambda Function URLs.

⭐ Congratulations to @​yoshi-taka, @​iamgerg, @​fidelisojeah, and @​benthorner for their first PR merged in the project 🎉

Import path update

With Event Handler moving to GA, the import path has changed from the experimental namespace to a stable one.

// Before
import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest';
// Now
import { Router } from '@​aws-lambda-powertools/event-handler/http';

Support for HTTP APIs, ALB, and Function URL

Event Handler now supports HTTP APIs (API Gateway v2), Application Load Balancers (ALB) and Lambda Function URL in addition to the existing REST API and support. This means you can use the same routing API across different AWS services, making it easier to build and migrate serverless applications regardless of your chosen architecture.

import { Router } from '@aws-lambda-powertools/event-handler/http';
import type {
  ALBEvent,
  APIGatewayProxyEvent,
  APIGatewayProxyEventV2,
  Context,
  LambdaFunctionURLEvent,
} from 'aws-lambda';
const app = new Router();
app.get('/hello', () => {
return {
message: 'Hello Event Handler!',
};
});
// Works across different services without any changes
export const restApiHandler = (event: APIGatewayProxyEvent, context: Context) =>
app.resolve(event, context);
export const httpApiHandler = (
</tr></table>

... (truncated)

Changelog

Sourced from @​aws-lambda-powertools/tracer's changelog.

2.29.0 (2025-11-21)

Improvements

  • commons Make trace ID access more robust (#4693) (b26cd2c)

Bug Fixes

  • logger infinite loop on log buffer when item size is max bytes (#4741) (f0677d4)
  • logger not passing persistent keys to children (#4740) (eafbe13)
  • event-handler moved the response mutation logic to the composeMiddleware function (#4773) (2fe04e3)
  • event-handler handle repeated queryString values (#4755) (5d3cf2d)
  • event-handler allow event handler response to return array (#4725) (eef92ca)

Features

  • logger use async local storage for logger (#4668) (4507fcc)
  • metrics use async local storage for metrics (#4663) (#4694) (2e08f74)
  • parser add type for values parsed by DynamoDBStreamRecord (#4793) (c2bd849)
  • batch use async local storage for batch processing (#4700) (67a8de7)
  • event-handler add support for ALB (#4759) (a470892)
  • event-handler expose response streaming in public API (#4743) (be4e4e2)
  • event-handler add first-class support for binary responses (#4723) (13dbcdc)
  • event-handler Add support for HTTP APIs (API Gateway v2) (#4714) (2f70018)

Maintenance

  • tracer bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (#4792) (afb5678)
  • event-handler unflag http handler from experimental (#4801) (a2deb8d)
Commits
  • fa726e0 chore(ci): bump version to 2.29.0 (#4802)
  • a2deb8d chore(event-handler): unflag http handler from experimental (#4801)
  • c2bd849 feat(parser): add type for values parsed by DynamoDBStreamRecord (#4793)
  • afb5678 chore(deps): bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (#4792)
  • 8806cad docs(event-handler): added documentation for support for HTTP API, ALB and FU...
  • d2e0fcc chore(deps): upgrade InvokeStore to v0.2.1 (#4794)
  • bccd0b1 docs(event-handler): add response streaming docs (#4786)
  • 2279f9b chore(deps): bump mkdocs-llmstxt from 0.4.0 to 0.5.0 in /docs (#4789)
  • 12c5e63 chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 (#4788)
  • 943bb4f docs(event-handler): update binary response docs (#4783)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​aws-lambda-powertools/tracer since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 1, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 1, 2025 22:21
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 1, 2025
@github-actions
Copy link
Contributor

github-actions bot commented Dec 1, 2025

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

Scorecard details
PackageVersionScoreDetails
npm/@aws-lambda-powertools/parameters ^2.29.0 🟢 9.3
Details
CheckScoreReason
Dependency-Update-Tool🟢 10update tool detected
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Code-Review🟢 10all changesets reviewed
Security-Policy🟢 10security policy file detected
Binary-Artifacts🟢 10no binaries found in the repo
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Pinned-Dependencies🟢 10all dependencies are pinned
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Fuzzing⚠️ 0project is not fuzzed
Vulnerabilities🟢 100 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
License🟢 10license file detected
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
CI-Tests🟢 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors🟢 10project has 11 contributing companies or organizations
npm/@aws-lambda-powertools/logger ^2.29.0 🟢 9.3
Details
CheckScoreReason
Dependency-Update-Tool🟢 10update tool detected
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Code-Review🟢 10all changesets reviewed
Security-Policy🟢 10security policy file detected
Binary-Artifacts🟢 10no binaries found in the repo
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Pinned-Dependencies🟢 10all dependencies are pinned
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Fuzzing⚠️ 0project is not fuzzed
Vulnerabilities🟢 100 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
License🟢 10license file detected
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
CI-Tests🟢 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors🟢 10project has 11 contributing companies or organizations
npm/@aws-lambda-powertools/metrics ^2.29.0 🟢 9.3
Details
CheckScoreReason
Dependency-Update-Tool🟢 10update tool detected
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Code-Review🟢 10all changesets reviewed
Security-Policy🟢 10security policy file detected
Binary-Artifacts🟢 10no binaries found in the repo
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Pinned-Dependencies🟢 10all dependencies are pinned
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Fuzzing⚠️ 0project is not fuzzed
Vulnerabilities🟢 100 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
License🟢 10license file detected
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
CI-Tests🟢 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors🟢 10project has 11 contributing companies or organizations
npm/@aws-lambda-powertools/tracer ^2.29.0 🟢 9.3
Details
CheckScoreReason
Dependency-Update-Tool🟢 10update tool detected
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Code-Review🟢 10all changesets reviewed
Security-Policy🟢 10security policy file detected
Binary-Artifacts🟢 10no binaries found in the repo
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Pinned-Dependencies🟢 10all dependencies are pinned
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Fuzzing⚠️ 0project is not fuzzed
Vulnerabilities🟢 100 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
License🟢 10license file detected
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
CI-Tests🟢 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors🟢 10project has 11 contributing companies or organizations
npm/@aws-lambda-powertools/commons 2.29.0 🟢 9.3
Details
CheckScoreReason
Dependency-Update-Tool🟢 10update tool detected
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Code-Review🟢 10all changesets reviewed
Security-Policy🟢 10security policy file detected
Binary-Artifacts🟢 10no binaries found in the repo
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Pinned-Dependencies🟢 10all dependencies are pinned
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Fuzzing⚠️ 0project is not fuzzed
Vulnerabilities🟢 100 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
License🟢 10license file detected
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
CI-Tests🟢 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors🟢 10project has 11 contributing companies or organizations
npm/@aws-lambda-powertools/logger 2.29.0 🟢 9.3
Details
CheckScoreReason
Dependency-Update-Tool🟢 10update tool detected
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Code-Review🟢 10all changesets reviewed
Security-Policy🟢 10security policy file detected
Binary-Artifacts🟢 10no binaries found in the repo
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Pinned-Dependencies🟢 10all dependencies are pinned
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Fuzzing⚠️ 0project is not fuzzed
Vulnerabilities🟢 100 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
License🟢 10license file detected
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
CI-Tests🟢 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors🟢 10project has 11 contributing companies or organizations
npm/@aws-lambda-powertools/metrics 2.29.0 🟢 9.3
Details
CheckScoreReason
Dependency-Update-Tool🟢 10update tool detected
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Code-Review🟢 10all changesets reviewed
Security-Policy🟢 10security policy file detected
Binary-Artifacts🟢 10no binaries found in the repo
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Pinned-Dependencies🟢 10all dependencies are pinned
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Fuzzing⚠️ 0project is not fuzzed
Vulnerabilities🟢 100 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
License🟢 10license file detected
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
CI-Tests🟢 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors🟢 10project has 11 contributing companies or organizations
npm/@aws-lambda-powertools/parameters 2.29.0 🟢 9.3
Details
CheckScoreReason
Dependency-Update-Tool🟢 10update tool detected
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Code-Review🟢 10all changesets reviewed
Security-Policy🟢 10security policy file detected
Binary-Artifacts🟢 10no binaries found in the repo
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Pinned-Dependencies🟢 10all dependencies are pinned
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Fuzzing⚠️ 0project is not fuzzed
Vulnerabilities🟢 100 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
License🟢 10license file detected
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
CI-Tests🟢 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors🟢 10project has 11 contributing companies or organizations
npm/@aws-lambda-powertools/tracer 2.29.0 🟢 9.3
Details
CheckScoreReason
Dependency-Update-Tool🟢 10update tool detected
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Code-Review🟢 10all changesets reviewed
Security-Policy🟢 10security policy file detected
Binary-Artifacts🟢 10no binaries found in the repo
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Pinned-Dependencies🟢 10all dependencies are pinned
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Fuzzing⚠️ 0project is not fuzzed
Vulnerabilities🟢 100 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
License🟢 10license file detected
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
CI-Tests🟢 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors🟢 10project has 11 contributing companies or organizations
npm/@aws/lambda-invoke-store 0.2.1 UnknownUnknown
npm/aws-xray-sdk-core 3.12.0 🟢 6
Details
CheckScoreReason
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Code-Review🟢 10all changesets reviewed
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Packaging⚠️ -1packaging workflow not detected
Maintained🟢 1025 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
License🟢 10license file detected
Pinned-Dependencies⚠️ 1dependency not pinned by hash detected -- score normalized to 1
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
Signed-Releases⚠️ -1no releases found
Fuzzing⚠️ 0project is not fuzzed
Security-Policy🟢 10security policy file detected
Vulnerabilities⚠️ 018 existing vulnerabilities detected
SAST🟢 6SAST tool is not run on all commits -- score normalized to 6

Scanned Files

  • lambdas/functions/control-plane/package.json
  • lambdas/libs/aws-powertools-util/package.json
  • lambdas/yarn.lock

Bumps the aws-powertools group in /lambdas with 4 updates: [@aws-lambda-powertools/parameters](https://github.com/aws-powertools/powertools-lambda-typescript), [@aws-lambda-powertools/logger](https://github.com/aws-powertools/powertools-lambda-typescript), [@aws-lambda-powertools/metrics](https://github.com/aws-powertools/powertools-lambda-typescript) and [@aws-lambda-powertools/tracer](https://github.com/aws-powertools/powertools-lambda-typescript).


Updates `@aws-lambda-powertools/parameters` from 2.28.1 to 2.29.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.28.1...v2.29.0)

Updates `@aws-lambda-powertools/logger` from 2.28.1 to 2.29.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.28.1...v2.29.0)

Updates `@aws-lambda-powertools/metrics` from 2.28.1 to 2.29.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.28.1...v2.29.0)

Updates `@aws-lambda-powertools/tracer` from 2.28.1 to 2.29.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.28.1...v2.29.0)

---
updated-dependencies:
- dependency-name: "@aws-lambda-powertools/parameters"
  dependency-version: 2.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-powertools
- dependency-name: "@aws-lambda-powertools/logger"
  dependency-version: 2.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-powertools
- dependency-name: "@aws-lambda-powertools/metrics"
  dependency-version: 2.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-powertools
- dependency-name: "@aws-lambda-powertools/tracer"
  dependency-version: 2.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-powertools
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/lambdas/aws-powertools-50aa00f214 branch from a19e0a5 to df5dda2 Compare December 3, 2025 10:31
@npalm npalm merged commit f1d156e into main Dec 3, 2025
9 of 10 checks passed
@npalm npalm deleted the dependabot/npm_and_yarn/lambdas/aws-powertools-50aa00f214 branch December 3, 2025 10:43
npalm pushed a commit that referenced this pull request Dec 6, 2025
…#4925)

Bumps the aws-powertools group in /lambdas with 4 updates:
[@aws-lambda-powertools/parameters](https://github.com/aws-powertools/powertools-lambda-typescript),
[@aws-lambda-powertools/logger](https://github.com/aws-powertools/powertools-lambda-typescript),
[@aws-lambda-powertools/metrics](https://github.com/aws-powertools/powertools-lambda-typescript)
and
[@aws-lambda-powertools/tracer](https://github.com/aws-powertools/powertools-lambda-typescript).

Updates `@aws-lambda-powertools/parameters` from 2.28.1 to 2.29.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/releases"><code>@​aws-lambda-powertools/parameters</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v2.29.0</h2>
<h2>Summary</h2>
<h3>🎉 Powertools for AWS Lambda (Typescript) - Event Handler Utility is
now Generally Available (GA)</h3>
<blockquote>
<p><a
href="https://docs.aws.amazon.com/powertools/typescript/latest/features/event-handler/rest/">Docs</a></p>
</blockquote>
<p>We're excited to announce that the Event Handler utility is now
production-ready! 🚀
Event Handler provides lightweight routing to reduce boilerplate for API
Gateway REST/HTTP API, ALB and Lambda Function URLs.</p>
<blockquote>
<p>⭐ Congratulations to <a
href="https://github.com/yoshi-taka"><code>@​yoshi-taka</code></a>, <a
href="https://github.com/iamgerg"><code>@​iamgerg</code></a>, <a
href="https://github.com/fidelisojeah"><code>@​fidelisojeah</code></a>,
and <a
href="https://github.com/benthorner"><code>@​benthorner</code></a> for
their first PR merged in the project 🎉</p>
</blockquote>
<h3>Import path update</h3>
<p>With Event Handler moving to GA, the import path has changed from the
experimental namespace to a stable one.</p>
<pre lang="typescript"><code>// Before
import { Router } from
'@aws-lambda-powertools/event-handler/experimental-rest';
<p>// Now
import { Router } from
'<code>@​aws-lambda-powertools/event-handler/</code>http';
</code></pre></p>
<h3>Support for HTTP APIs, ALB, and Function URL</h3>
<p>Event Handler now supports HTTP APIs (API Gateway v2), Application
Load Balancers (ALB) and Lambda Function URL in addition to the existing
REST API and support. This means you can use the same routing API across
different AWS services, making it easier to build and migrate serverless
applications regardless of your chosen architecture.</p>
<pre lang="typescript"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import type {
  ALBEvent,
  APIGatewayProxyEvent,
  APIGatewayProxyEventV2,
  Context,
  LambdaFunctionURLEvent,
} from 'aws-lambda';
<p>const app = new Router();
app.get('/hello', () =&gt; {
return {
message: 'Hello Event Handler!',
};
});</p>
<p>// Works across different services without any changes
export const restApiHandler = (event: APIGatewayProxyEvent, context:
Context) =&gt;
app.resolve(event, context);</p>
<p>export const httpApiHandler = (
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md"><code>@​aws-lambda-powertools/parameters</code>'s
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.28.1...v2.29.0">2.29.0</a>
(2025-11-21)</h2>
<h3>Improvements</h3>
<ul>
<li><strong>commons</strong> Make trace ID access more robust (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4693">#4693</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b26cd2c7395e55fb33a6ce719bc69b1a11004446">b26cd2c</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>logger</strong> infinite loop on log buffer when item size
is max bytes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4741">#4741</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f0677d4f1220df6f68f9fd8ece221306fdd9b154">f0677d4</a>)</li>
<li><strong>logger</strong> not passing persistent keys to children (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4740">#4740</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/eafbe13aa6ca7067c2c8329150fdf600ebca12a7">eafbe13</a>)</li>
<li><strong>event-handler</strong> moved the response mutation logic to
the <code>composeMiddleware</code> function (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4773">#4773</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2fe04e351aa4f8a104a145d3fcef7bb6d856506f">2fe04e3</a>)</li>
<li><strong>event-handler</strong> handle repeated queryString values
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4755">#4755</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5d3cf2de5821171e968577fcb1c74d5198e153d6">5d3cf2d</a>)</li>
<li><strong>event-handler</strong> allow event handler response to
return array (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4725">#4725</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/eef92ca929cd7a2551e228b20deae3b59044a0ee">eef92ca</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>logger</strong> use async local storage for logger (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4668">#4668</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4507fccb8872975f4a3e683ec9034e7f71e67d30">4507fcc</a>)</li>
<li><strong>metrics</strong> use async local storage for metrics (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4663">#4663</a>)
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4694">#4694</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2e08f74cfe86571ef7f2388d3a028763561c11e9">2e08f74</a>)</li>
<li><strong>parser</strong> add type for values parsed by
DynamoDBStreamRecord (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4793">#4793</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c2bd8499c38f2e9048782d717613a721b3e8ccc8">c2bd849</a>)</li>
<li><strong>batch</strong> use async local storage for batch processing
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4700">#4700</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/67a8de7baec4a240bc5f22493a13c75289397d7c">67a8de7</a>)</li>
<li><strong>event-handler</strong> add support for ALB (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4759">#4759</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a4708925fb08da09044ea1592ea7df58e46f383d">a470892</a>)</li>
<li><strong>event-handler</strong> expose response streaming in public
API (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4743">#4743</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/be4e4e2b9f0a39210f972f22d03a382aea304f60">be4e4e2</a>)</li>
<li><strong>event-handler</strong> add first-class support for binary
responses (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4723">#4723</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/13dbcdccc3626d442f66c6037af7df88626dd9c2">13dbcdc</a>)</li>
<li><strong>event-handler</strong> Add support for HTTP APIs (API
Gateway v2) (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4714">#4714</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2f700189aef42445a229da8a0d1446e1d63423fa">2f70018</a>)</li>
</ul>
<h3>Maintenance</h3>
<ul>
<li><strong>tracer</strong> bump aws-xray-sdk-core from 3.11.0 to 3.12.0
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4792">#4792</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/afb5678ed6176d9d2e0a759993af0054a2c80b05">afb5678</a>)</li>
<li><strong>event-handler</strong> unflag http handler from experimental
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4801">#4801</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a2deb8d702bb305bbf017882ce16beb6b3c809aa">a2deb8d</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/fa726e0a56f738c62fe253d96fd1f70ae696cabf"><code>fa726e0</code></a>
chore(ci): bump version to 2.29.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4802">#4802</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a2deb8d702bb305bbf017882ce16beb6b3c809aa"><code>a2deb8d</code></a>
chore(event-handler): unflag http handler from experimental (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4801">#4801</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c2bd8499c38f2e9048782d717613a721b3e8ccc8"><code>c2bd849</code></a>
feat(parser): add type for values parsed by DynamoDBStreamRecord (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4793">#4793</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/afb5678ed6176d9d2e0a759993af0054a2c80b05"><code>afb5678</code></a>
chore(deps): bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4792">#4792</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8806cadcfada8e76ca44ec64aa5b86f2853e3e65"><code>8806cad</code></a>
docs(event-handler): added documentation for support for HTTP API, ALB
and FU...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d2e0fcc504de8011fe91217976d2afcf99c1bed2"><code>d2e0fcc</code></a>
chore(deps): upgrade InvokeStore to v0.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4794">#4794</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/bccd0b178aa971af8fce755001178beea1316d4b"><code>bccd0b1</code></a>
docs(event-handler): add response streaming docs (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4786">#4786</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2279f9b0fa1dbb6f9fa3ea7a5de076bc9edc649f"><code>2279f9b</code></a>
chore(deps): bump mkdocs-llmstxt from 0.4.0 to 0.5.0 in /docs (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4789">#4789</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/12c5e63cd36c574109f343e35591eacc8f2e6f2c"><code>12c5e63</code></a>
chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4788">#4788</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/943bb4ff23bb125170e6b62b21f193d3fb8f7318"><code>943bb4f</code></a>
docs(event-handler): update binary response docs (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4783">#4783</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.28.1...v2.29.0">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by [GitHub Actions](<a
href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a>
Actions), a new releaser for
<code>@​aws-lambda-powertools/parameters</code> since your current
version.</p>
</details>
<br />

Updates `@aws-lambda-powertools/logger` from 2.28.1 to 2.29.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/releases"><code>@​aws-lambda-powertools/logger</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v2.29.0</h2>
<h2>Summary</h2>
<h3>🎉 Powertools for AWS Lambda (Typescript) - Event Handler Utility is
now Generally Available (GA)</h3>
<blockquote>
<p><a
href="https://docs.aws.amazon.com/powertools/typescript/latest/features/event-handler/rest/">Docs</a></p>
</blockquote>
<p>We're excited to announce that the Event Handler utility is now
production-ready! 🚀
Event Handler provides lightweight routing to reduce boilerplate for API
Gateway REST/HTTP API, ALB and Lambda Function URLs.</p>
<blockquote>
<p>⭐ Congratulations to <a
href="https://github.com/yoshi-taka"><code>@​yoshi-taka</code></a>, <a
href="https://github.com/iamgerg"><code>@​iamgerg</code></a>, <a
href="https://github.com/fidelisojeah"><code>@​fidelisojeah</code></a>,
and <a
href="https://github.com/benthorner"><code>@​benthorner</code></a> for
their first PR merged in the project 🎉</p>
</blockquote>
<h3>Import path update</h3>
<p>With Event Handler moving to GA, the import path has changed from the
experimental namespace to a stable one.</p>
<pre lang="typescript"><code>// Before
import { Router } from
'@aws-lambda-powertools/event-handler/experimental-rest';
<p>// Now
import { Router } from
'<code>@​aws-lambda-powertools/event-handler/</code>http';
</code></pre></p>
<h3>Support for HTTP APIs, ALB, and Function URL</h3>
<p>Event Handler now supports HTTP APIs (API Gateway v2), Application
Load Balancers (ALB) and Lambda Function URL in addition to the existing
REST API and support. This means you can use the same routing API across
different AWS services, making it easier to build and migrate serverless
applications regardless of your chosen architecture.</p>
<pre lang="typescript"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import type {
  ALBEvent,
  APIGatewayProxyEvent,
  APIGatewayProxyEventV2,
  Context,
  LambdaFunctionURLEvent,
} from 'aws-lambda';
<p>const app = new Router();
app.get('/hello', () =&gt; {
return {
message: 'Hello Event Handler!',
};
});</p>
<p>// Works across different services without any changes
export const restApiHandler = (event: APIGatewayProxyEvent, context:
Context) =&gt;
app.resolve(event, context);</p>
<p>export const httpApiHandler = (
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md"><code>@​aws-lambda-powertools/logger</code>'s
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.28.1...v2.29.0">2.29.0</a>
(2025-11-21)</h2>
<h3>Improvements</h3>
<ul>
<li><strong>commons</strong> Make trace ID access more robust (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4693">#4693</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b26cd2c7395e55fb33a6ce719bc69b1a11004446">b26cd2c</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>logger</strong> infinite loop on log buffer when item size
is max bytes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4741">#4741</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f0677d4f1220df6f68f9fd8ece221306fdd9b154">f0677d4</a>)</li>
<li><strong>logger</strong> not passing persistent keys to children (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4740">#4740</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/eafbe13aa6ca7067c2c8329150fdf600ebca12a7">eafbe13</a>)</li>
<li><strong>event-handler</strong> moved the response mutation logic to
the <code>composeMiddleware</code> function (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4773">#4773</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2fe04e351aa4f8a104a145d3fcef7bb6d856506f">2fe04e3</a>)</li>
<li><strong>event-handler</strong> handle repeated queryString values
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4755">#4755</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5d3cf2de5821171e968577fcb1c74d5198e153d6">5d3cf2d</a>)</li>
<li><strong>event-handler</strong> allow event handler response to
return array (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4725">#4725</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/eef92ca929cd7a2551e228b20deae3b59044a0ee">eef92ca</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>logger</strong> use async local storage for logger (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4668">#4668</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4507fccb8872975f4a3e683ec9034e7f71e67d30">4507fcc</a>)</li>
<li><strong>metrics</strong> use async local storage for metrics (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4663">#4663</a>)
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4694">#4694</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2e08f74cfe86571ef7f2388d3a028763561c11e9">2e08f74</a>)</li>
<li><strong>parser</strong> add type for values parsed by
DynamoDBStreamRecord (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4793">#4793</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c2bd8499c38f2e9048782d717613a721b3e8ccc8">c2bd849</a>)</li>
<li><strong>batch</strong> use async local storage for batch processing
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4700">#4700</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/67a8de7baec4a240bc5f22493a13c75289397d7c">67a8de7</a>)</li>
<li><strong>event-handler</strong> add support for ALB (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4759">#4759</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a4708925fb08da09044ea1592ea7df58e46f383d">a470892</a>)</li>
<li><strong>event-handler</strong> expose response streaming in public
API (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4743">#4743</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/be4e4e2b9f0a39210f972f22d03a382aea304f60">be4e4e2</a>)</li>
<li><strong>event-handler</strong> add first-class support for binary
responses (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4723">#4723</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/13dbcdccc3626d442f66c6037af7df88626dd9c2">13dbcdc</a>)</li>
<li><strong>event-handler</strong> Add support for HTTP APIs (API
Gateway v2) (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4714">#4714</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2f700189aef42445a229da8a0d1446e1d63423fa">2f70018</a>)</li>
</ul>
<h3>Maintenance</h3>
<ul>
<li><strong>tracer</strong> bump aws-xray-sdk-core from 3.11.0 to 3.12.0
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4792">#4792</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/afb5678ed6176d9d2e0a759993af0054a2c80b05">afb5678</a>)</li>
<li><strong>event-handler</strong> unflag http handler from experimental
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4801">#4801</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a2deb8d702bb305bbf017882ce16beb6b3c809aa">a2deb8d</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/fa726e0a56f738c62fe253d96fd1f70ae696cabf"><code>fa726e0</code></a>
chore(ci): bump version to 2.29.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4802">#4802</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a2deb8d702bb305bbf017882ce16beb6b3c809aa"><code>a2deb8d</code></a>
chore(event-handler): unflag http handler from experimental (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4801">#4801</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c2bd8499c38f2e9048782d717613a721b3e8ccc8"><code>c2bd849</code></a>
feat(parser): add type for values parsed by DynamoDBStreamRecord (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4793">#4793</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/afb5678ed6176d9d2e0a759993af0054a2c80b05"><code>afb5678</code></a>
chore(deps): bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4792">#4792</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8806cadcfada8e76ca44ec64aa5b86f2853e3e65"><code>8806cad</code></a>
docs(event-handler): added documentation for support for HTTP API, ALB
and FU...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d2e0fcc504de8011fe91217976d2afcf99c1bed2"><code>d2e0fcc</code></a>
chore(deps): upgrade InvokeStore to v0.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4794">#4794</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/bccd0b178aa971af8fce755001178beea1316d4b"><code>bccd0b1</code></a>
docs(event-handler): add response streaming docs (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4786">#4786</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2279f9b0fa1dbb6f9fa3ea7a5de076bc9edc649f"><code>2279f9b</code></a>
chore(deps): bump mkdocs-llmstxt from 0.4.0 to 0.5.0 in /docs (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4789">#4789</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/12c5e63cd36c574109f343e35591eacc8f2e6f2c"><code>12c5e63</code></a>
chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4788">#4788</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/943bb4ff23bb125170e6b62b21f193d3fb8f7318"><code>943bb4f</code></a>
docs(event-handler): update binary response docs (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4783">#4783</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.28.1...v2.29.0">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by [GitHub Actions](<a
href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a>
Actions), a new releaser for <code>@​aws-lambda-powertools/logger</code>
since your current version.</p>
</details>
<br />

Updates `@aws-lambda-powertools/metrics` from 2.28.1 to 2.29.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/releases"><code>@​aws-lambda-powertools/metrics</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v2.29.0</h2>
<h2>Summary</h2>
<h3>🎉 Powertools for AWS Lambda (Typescript) - Event Handler Utility is
now Generally Available (GA)</h3>
<blockquote>
<p><a
href="https://docs.aws.amazon.com/powertools/typescript/latest/features/event-handler/rest/">Docs</a></p>
</blockquote>
<p>We're excited to announce that the Event Handler utility is now
production-ready! 🚀
Event Handler provides lightweight routing to reduce boilerplate for API
Gateway REST/HTTP API, ALB and Lambda Function URLs.</p>
<blockquote>
<p>⭐ Congratulations to <a
href="https://github.com/yoshi-taka"><code>@​yoshi-taka</code></a>, <a
href="https://github.com/iamgerg"><code>@​iamgerg</code></a>, <a
href="https://github.com/fidelisojeah"><code>@​fidelisojeah</code></a>,
and <a
href="https://github.com/benthorner"><code>@​benthorner</code></a> for
their first PR merged in the project 🎉</p>
</blockquote>
<h3>Import path update</h3>
<p>With Event Handler moving to GA, the import path has changed from the
experimental namespace to a stable one.</p>
<pre lang="typescript"><code>// Before
import { Router } from
'@aws-lambda-powertools/event-handler/experimental-rest';
<p>// Now
import { Router } from
'<code>@​aws-lambda-powertools/event-handler/</code>http';
</code></pre></p>
<h3>Support for HTTP APIs, ALB, and Function URL</h3>
<p>Event Handler now supports HTTP APIs (API Gateway v2), Application
Load Balancers (ALB) and Lambda Function URL in addition to the existing
REST API and support. This means you can use the same routing API across
different AWS services, making it easier to build and migrate serverless
applications regardless of your chosen architecture.</p>
<pre lang="typescript"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import type {
  ALBEvent,
  APIGatewayProxyEvent,
  APIGatewayProxyEventV2,
  Context,
  LambdaFunctionURLEvent,
} from 'aws-lambda';
<p>const app = new Router();
app.get('/hello', () =&gt; {
return {
message: 'Hello Event Handler!',
};
});</p>
<p>// Works across different services without any changes
export const restApiHandler = (event: APIGatewayProxyEvent, context:
Context) =&gt;
app.resolve(event, context);</p>
<p>export const httpApiHandler = (
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md"><code>@​aws-lambda-powertools/metrics</code>'s
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.28.1...v2.29.0">2.29.0</a>
(2025-11-21)</h2>
<h3>Improvements</h3>
<ul>
<li><strong>commons</strong> Make trace ID access more robust (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4693">#4693</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b26cd2c7395e55fb33a6ce719bc69b1a11004446">b26cd2c</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>logger</strong> infinite loop on log buffer when item size
is max bytes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4741">#4741</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f0677d4f1220df6f68f9fd8ece221306fdd9b154">f0677d4</a>)</li>
<li><strong>logger</strong> not passing persistent keys to children (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4740">#4740</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/eafbe13aa6ca7067c2c8329150fdf600ebca12a7">eafbe13</a>)</li>
<li><strong>event-handler</strong> moved the response mutation logic to
the <code>composeMiddleware</code> function (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4773">#4773</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2fe04e351aa4f8a104a145d3fcef7bb6d856506f">2fe04e3</a>)</li>
<li><strong>event-handler</strong> handle repeated queryString values
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4755">#4755</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5d3cf2de5821171e968577fcb1c74d5198e153d6">5d3cf2d</a>)</li>
<li><strong>event-handler</strong> allow event handler response to
return array (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4725">#4725</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/eef92ca929cd7a2551e228b20deae3b59044a0ee">eef92ca</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>logger</strong> use async local storage for logger (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4668">#4668</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4507fccb8872975f4a3e683ec9034e7f71e67d30">4507fcc</a>)</li>
<li><strong>metrics</strong> use async local storage for metrics (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4663">#4663</a>)
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4694">#4694</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2e08f74cfe86571ef7f2388d3a028763561c11e9">2e08f74</a>)</li>
<li><strong>parser</strong> add type for values parsed by
DynamoDBStreamRecord (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4793">#4793</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c2bd8499c38f2e9048782d717613a721b3e8ccc8">c2bd849</a>)</li>
<li><strong>batch</strong> use async local storage for batch processing
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4700">#4700</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/67a8de7baec4a240bc5f22493a13c75289397d7c">67a8de7</a>)</li>
<li><strong>event-handler</strong> add support for ALB (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4759">#4759</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a4708925fb08da09044ea1592ea7df58e46f383d">a470892</a>)</li>
<li><strong>event-handler</strong> expose response streaming in public
API (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4743">#4743</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/be4e4e2b9f0a39210f972f22d03a382aea304f60">be4e4e2</a>)</li>
<li><strong>event-handler</strong> add first-class support for binary
responses (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4723">#4723</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/13dbcdccc3626d442f66c6037af7df88626dd9c2">13dbcdc</a>)</li>
<li><strong>event-handler</strong> Add support for HTTP APIs (API
Gateway v2) (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4714">#4714</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2f700189aef42445a229da8a0d1446e1d63423fa">2f70018</a>)</li>
</ul>
<h3>Maintenance</h3>
<ul>
<li><strong>tracer</strong> bump aws-xray-sdk-core from 3.11.0 to 3.12.0
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4792">#4792</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/afb5678ed6176d9d2e0a759993af0054a2c80b05">afb5678</a>)</li>
<li><strong>event-handler</strong> unflag http handler from experimental
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4801">#4801</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a2deb8d702bb305bbf017882ce16beb6b3c809aa">a2deb8d</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/fa726e0a56f738c62fe253d96fd1f70ae696cabf"><code>fa726e0</code></a>
chore(ci): bump version to 2.29.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4802">#4802</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a2deb8d702bb305bbf017882ce16beb6b3c809aa"><code>a2deb8d</code></a>
chore(event-handler): unflag http handler from experimental (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4801">#4801</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c2bd8499c38f2e9048782d717613a721b3e8ccc8"><code>c2bd849</code></a>
feat(parser): add type for values parsed by DynamoDBStreamRecord (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4793">#4793</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/afb5678ed6176d9d2e0a759993af0054a2c80b05"><code>afb5678</code></a>
chore(deps): bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4792">#4792</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8806cadcfada8e76ca44ec64aa5b86f2853e3e65"><code>8806cad</code></a>
docs(event-handler): added documentation for support for HTTP API, ALB
and FU...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d2e0fcc504de8011fe91217976d2afcf99c1bed2"><code>d2e0fcc</code></a>
chore(deps): upgrade InvokeStore to v0.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4794">#4794</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/bccd0b178aa971af8fce755001178beea1316d4b"><code>bccd0b1</code></a>
docs(event-handler): add response streaming docs (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4786">#4786</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2279f9b0fa1dbb6f9fa3ea7a5de076bc9edc649f"><code>2279f9b</code></a>
chore(deps): bump mkdocs-llmstxt from 0.4.0 to 0.5.0 in /docs (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4789">#4789</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/12c5e63cd36c574109f343e35591eacc8f2e6f2c"><code>12c5e63</code></a>
chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4788">#4788</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/943bb4ff23bb125170e6b62b21f193d3fb8f7318"><code>943bb4f</code></a>
docs(event-handler): update binary response docs (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4783">#4783</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.28.1...v2.29.0">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by [GitHub Actions](<a
href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a>
Actions), a new releaser for
<code>@​aws-lambda-powertools/metrics</code> since your current
version.</p>
</details>
<br />

Updates `@aws-lambda-powertools/tracer` from 2.28.1 to 2.29.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/releases"><code>@​aws-lambda-powertools/tracer</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v2.29.0</h2>
<h2>Summary</h2>
<h3>🎉 Powertools for AWS Lambda (Typescript) - Event Handler Utility is
now Generally Available (GA)</h3>
<blockquote>
<p><a
href="https://docs.aws.amazon.com/powertools/typescript/latest/features/event-handler/rest/">Docs</a></p>
</blockquote>
<p>We're excited to announce that the Event Handler utility is now
production-ready! 🚀
Event Handler provides lightweight routing to reduce boilerplate for API
Gateway REST/HTTP API, ALB and Lambda Function URLs.</p>
<blockquote>
<p>⭐ Congratulations to <a
href="https://github.com/yoshi-taka"><code>@​yoshi-taka</code></a>, <a
href="https://github.com/iamgerg"><code>@​iamgerg</code></a>, <a
href="https://github.com/fidelisojeah"><code>@​fidelisojeah</code></a>,
and <a
href="https://github.com/benthorner"><code>@​benthorner</code></a> for
their first PR merged in the project 🎉</p>
</blockquote>
<h3>Import path update</h3>
<p>With Event Handler moving to GA, the import path has changed from the
experimental namespace to a stable one.</p>
<pre lang="typescript"><code>// Before
import { Router } from
'@aws-lambda-powertools/event-handler/experimental-rest';
<p>// Now
import { Router } from
'<code>@​aws-lambda-powertools/event-handler/</code>http';
</code></pre></p>
<h3>Support for HTTP APIs, ALB, and Function URL</h3>
<p>Event Handler now supports HTTP APIs (API Gateway v2), Application
Load Balancers (ALB) and Lambda Function URL in addition to the existing
REST API and support. This means you can use the same routing API across
different AWS services, making it easier to build and migrate serverless
applications regardless of your chosen architecture.</p>
<pre lang="typescript"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import type {
  ALBEvent,
  APIGatewayProxyEvent,
  APIGatewayProxyEventV2,
  Context,
  LambdaFunctionURLEvent,
} from 'aws-lambda';
<p>const app = new Router();
app.get('/hello', () =&gt; {
return {
message: 'Hello Event Handler!',
};
});</p>
<p>// Works across different services without any changes
export const restApiHandler = (event: APIGatewayProxyEvent, context:
Context) =&gt;
app.resolve(event, context);</p>
<p>export const httpApiHandler = (
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md"><code>@​aws-lambda-powertools/tracer</code>'s
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.28.1...v2.29.0">2.29.0</a>
(2025-11-21)</h2>
<h3>Improvements</h3>
<ul>
<li><strong>commons</strong> Make trace ID access more robust (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4693">#4693</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b26cd2c7395e55fb33a6ce719bc69b1a11004446">b26cd2c</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>logger</strong> infinite loop on log buffer when item size
is max bytes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4741">#4741</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f0677d4f1220df6f68f9fd8ece221306fdd9b154">f0677d4</a>)</li>
<li><strong>logger</strong> not passing persistent keys to children (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4740">#4740</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/eafbe13aa6ca7067c2c8329150fdf600ebca12a7">eafbe13</a>)</li>
<li><strong>event-handler</strong> moved the response mutation logic to
the <code>composeMiddleware</code> function (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4773">#4773</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2fe04e351aa4f8a104a145d3fcef7bb6d856506f">2fe04e3</a>)</li>
<li><strong>event-handler</strong> handle repeated queryString values
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4755">#4755</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5d3cf2de5821171e968577fcb1c74d5198e153d6">5d3cf2d</a>)</li>
<li><strong>event-handler</strong> allow event handler response to
return array (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4725">#4725</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/eef92ca929cd7a2551e228b20deae3b59044a0ee">eef92ca</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>logger</strong> use async local storage for logger (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4668">#4668</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4507fccb8872975f4a3e683ec9034e7f71e67d30">4507fcc</a>)</li>
<li><strong>metrics</strong> use async local storage for metrics (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4663">#4663</a>)
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4694">#4694</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2e08f74cfe86571ef7f2388d3a028763561c11e9">2e08f74</a>)</li>
<li><strong>parser</strong> add type for values parsed by
DynamoDBStreamRecord (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4793">#4793</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c2bd8499c38f2e9048782d717613a721b3e8ccc8">c2bd849</a>)</li>
<li><strong>batch</strong> use async local storage for batch processing
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4700">#4700</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/67a8de7baec4a240bc5f22493a13c75289397d7c">67a8de7</a>)</li>
<li><strong>event-handler</strong> add support for ALB (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4759">#4759</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a4708925fb08da09044ea1592ea7df58e46f383d">a470892</a>)</li>
<li><strong>event-handler</strong> expose response streaming in public
API (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4743">#4743</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/be4e4e2b9f0a39210f972f22d03a382aea304f60">be4e4e2</a>)</li>
<li><strong>event-handler</strong> add first-class support for binary
responses (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4723">#4723</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/13dbcdccc3626d442f66c6037af7df88626dd9c2">13dbcdc</a>)</li>
<li><strong>event-handler</strong> Add support for HTTP APIs (API
Gateway v2) (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4714">#4714</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2f700189aef42445a229da8a0d1446e1d63423fa">2f70018</a>)</li>
</ul>
<h3>Maintenance</h3>
<ul>
<li><strong>tracer</strong> bump aws-xray-sdk-core from 3.11.0 to 3.12.0
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4792">#4792</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/afb5678ed6176d9d2e0a759993af0054a2c80b05">afb5678</a>)</li>
<li><strong>event-handler</strong> unflag http handler from experimental
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4801">#4801</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a2deb8d702bb305bbf017882ce16beb6b3c809aa">a2deb8d</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/fa726e0a56f738c62fe253d96fd1f70ae696cabf"><code>fa726e0</code></a>
chore(ci): bump version to 2.29.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4802">#4802</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a2deb8d702bb305bbf017882ce16beb6b3c809aa"><code>a2deb8d</code></a>
chore(event-handler): unflag http handler from experimental (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4801">#4801</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c2bd8499c38f2e9048782d717613a721b3e8ccc8"><code>c2bd849</code></a>
feat(parser): add type for values parsed by DynamoDBStreamRecord (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4793">#4793</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/afb5678ed6176d9d2e0a759993af0054a2c80b05"><code>afb5678</code></a>
chore(deps): bump aws-xray-sdk-core from 3.11.0 to 3.12.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4792">#4792</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8806cadcfada8e76ca44ec64aa5b86f2853e3e65"><code>8806cad</code></a>
docs(event-handler): added documentation for support for HTTP API, ALB
and FU...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d2e0fcc504de8011fe91217976d2afcf99c1bed2"><code>d2e0fcc</code></a>
chore(deps): upgrade InvokeStore to v0.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4794">#4794</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/bccd0b178aa971af8fce755001178beea1316d4b"><code>bccd0b1</code></a>
docs(event-handler): add response streaming docs (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4786">#4786</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/2279f9b0fa1dbb6f9fa3ea7a5de076bc9edc649f"><code>2279f9b</code></a>
chore(deps): bump mkdocs-llmstxt from 0.4.0 to 0.5.0 in /docs (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4789">#4789</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/12c5e63cd36c574109f343e35591eacc8f2e6f2c"><code>12c5e63</code></a>
chore(deps): bump actions/checkout from 5.0.1 to 6.0.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4788">#4788</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/943bb4ff23bb125170e6b62b21f193d3fb8f7318"><code>943bb4f</code></a>
docs(event-handler): update binary response docs (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4783">#4783</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.28.1...v2.29.0">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by [GitHub Actions](<a
href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a>
Actions), a new releaser for <code>@​aws-lambda-powertools/tracer</code>
since your current version.</p>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants