Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps @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.


Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@aws-lambda-powertools/metrics](https://github.com/aws-powertools/powertools-lambda-typescript) 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/metrics"
  dependency-version: 2.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 2, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 2, 2025 00:48
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 2, 2025
@github-actions github-actions bot added the internal Maintenance changes label Dec 2, 2025
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 internal Maintenance changes javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants