Skip to content

fix(lambda): bump the aws-powertools group in /lambdas with 4 updates#5044

Merged
npalm merged 1 commit intomainfrom
dependabot/npm_and_yarn/lambdas/aws-powertools-850d174394
Mar 9, 2026
Merged

fix(lambda): bump the aws-powertools group in /lambdas with 4 updates#5044
npalm merged 1 commit intomainfrom
dependabot/npm_and_yarn/lambdas/aws-powertools-850d174394

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Feb 20, 2026

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.30.2 to 2.31.0

Release notes

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

v2.31.0

Summary

In this release we are pleased to announce Tracer middleware for the HTTP event handler, which allows users to enable distributed tracing for their HTTP routes with minimal boilerplate code.

In addition, the metric utility now supports a fluent interface, allowing you to chain multiple methods in a single statement.

We have also fixed a bug in the HTTP event handler that caused parameterized headers to be handled incorrectly.

⭐ Special thanks to @​nateiler and @​dothomson for their first PR merged in the project, and to @​arnabrahman! for another great contribution 🎉

Tracer Middleware

You can now use the Tracer utility with the HTTP event handler to gain observability over your routes. The middleware:

  • Creates a subsegment for each HTTP route with the format METHOD /path (e.g., GET /users)
  • Adds ColdStart and Service annotations
  • Optionally captures JSON response bodies as metadata
  • Captures errors as metadata when exceptions occur
import { Router } from '@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from '@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();
app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) => {
return { id: params.id, secret: 'sensitive-data' };
}
);
export const handler = async (event: unknown, context: Context) =>
app.resolve(event, context);

Metrics Fluent Interface

All mutation methods (with the exception of clear*) now return the metric instance that was mutated, allowing you to chain multiple metrics operations in a single statement.

import { Metrics} from '@aws-lambda-powertools/metrics';
const metrics = new Metrics();
</tr></table>

... (truncated)

Changelog

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

2.31.0 (2026-02-10)

Features

  • metrics return metrics instance from metrics functions (#4930) (e7aa2e2)
  • parameters pass underlying SDK error as cause to GetParameterError (#4936) (b3499db)
  • event-handler add tracer middleware for HTTP routes (#4982) (8be6157)

Bug Fixes

  • event-handler handle set-cookie header values with multiple attributes (#4990) (42317fe)
  • kafka handle tombstone events (#4991) (04c3236)
Commits
  • 54d1fa3 chore(ci): bump version to 2.31.0 (#5007)
  • 42317fe fix(event-handler): handle set-cookie header values with multiple attributes ...
  • 8e4da8a chore(deps): bump @​types/node from 25.2.0 to 25.2.2 (#5004)
  • ddf54e0 chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (#4998)
  • 7692071 chore(deps): bump @​types/node from 25.2.0 to 25.2.1 (#4999)
  • d8dfadc chore: manually upgrade dependency tree (#5002)
  • 60b6ce1 ci: switch npm auth to OIDC (#4997)
  • 04c3236 fix(kafka): handle tombstone events (#4991)
  • 8e1359e chore(deps): bump the aws-cdk group across 1 directory with 3 updates (#4985)
  • 4c6657a test: extract DF idempotency e2e tests (#4994)
  • Additional commits viewable in compare view

Updates @aws-lambda-powertools/logger from 2.30.2 to 2.31.0

Release notes

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

v2.31.0

Summary

In this release we are pleased to announce Tracer middleware for the HTTP event handler, which allows users to enable distributed tracing for their HTTP routes with minimal boilerplate code.

In addition, the metric utility now supports a fluent interface, allowing you to chain multiple methods in a single statement.

We have also fixed a bug in the HTTP event handler that caused parameterized headers to be handled incorrectly.

⭐ Special thanks to @​nateiler and @​dothomson for their first PR merged in the project, and to @​arnabrahman! for another great contribution 🎉

Tracer Middleware

You can now use the Tracer utility with the HTTP event handler to gain observability over your routes. The middleware:

  • Creates a subsegment for each HTTP route with the format METHOD /path (e.g., GET /users)
  • Adds ColdStart and Service annotations
  • Optionally captures JSON response bodies as metadata
  • Captures errors as metadata when exceptions occur
import { Router } from '@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from '@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();
app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) => {
return { id: params.id, secret: 'sensitive-data' };
}
);
export const handler = async (event: unknown, context: Context) =>
app.resolve(event, context);

Metrics Fluent Interface

All mutation methods (with the exception of clear*) now return the metric instance that was mutated, allowing you to chain multiple metrics operations in a single statement.

import { Metrics} from '@aws-lambda-powertools/metrics';
const metrics = new Metrics();
</tr></table>

... (truncated)

Changelog

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

2.31.0 (2026-02-10)

Features

  • metrics return metrics instance from metrics functions (#4930) (e7aa2e2)
  • parameters pass underlying SDK error as cause to GetParameterError (#4936) (b3499db)
  • event-handler add tracer middleware for HTTP routes (#4982) (8be6157)

Bug Fixes

  • event-handler handle set-cookie header values with multiple attributes (#4990) (42317fe)
  • kafka handle tombstone events (#4991) (04c3236)
Commits
  • 54d1fa3 chore(ci): bump version to 2.31.0 (#5007)
  • 42317fe fix(event-handler): handle set-cookie header values with multiple attributes ...
  • 8e4da8a chore(deps): bump @​types/node from 25.2.0 to 25.2.2 (#5004)
  • ddf54e0 chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (#4998)
  • 7692071 chore(deps): bump @​types/node from 25.2.0 to 25.2.1 (#4999)
  • d8dfadc chore: manually upgrade dependency tree (#5002)
  • 60b6ce1 ci: switch npm auth to OIDC (#4997)
  • 04c3236 fix(kafka): handle tombstone events (#4991)
  • 8e1359e chore(deps): bump the aws-cdk group across 1 directory with 3 updates (#4985)
  • 4c6657a test: extract DF idempotency e2e tests (#4994)
  • Additional commits viewable in compare view

Updates @aws-lambda-powertools/metrics from 2.30.2 to 2.31.0

Release notes

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

v2.31.0

Summary

In this release we are pleased to announce Tracer middleware for the HTTP event handler, which allows users to enable distributed tracing for their HTTP routes with minimal boilerplate code.

In addition, the metric utility now supports a fluent interface, allowing you to chain multiple methods in a single statement.

We have also fixed a bug in the HTTP event handler that caused parameterized headers to be handled incorrectly.

⭐ Special thanks to @​nateiler and @​dothomson for their first PR merged in the project, and to @​arnabrahman! for another great contribution 🎉

Tracer Middleware

You can now use the Tracer utility with the HTTP event handler to gain observability over your routes. The middleware:

  • Creates a subsegment for each HTTP route with the format METHOD /path (e.g., GET /users)
  • Adds ColdStart and Service annotations
  • Optionally captures JSON response bodies as metadata
  • Captures errors as metadata when exceptions occur
import { Router } from '@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from '@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();
app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) => {
return { id: params.id, secret: 'sensitive-data' };
}
);
export const handler = async (event: unknown, context: Context) =>
app.resolve(event, context);

Metrics Fluent Interface

All mutation methods (with the exception of clear*) now return the metric instance that was mutated, allowing you to chain multiple metrics operations in a single statement.

import { Metrics} from '@aws-lambda-powertools/metrics';
const metrics = new Metrics();
</tr></table>

... (truncated)

Changelog

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

2.31.0 (2026-02-10)

Features

  • metrics return metrics instance from metrics functions (#4930) (e7aa2e2)
  • parameters pass underlying SDK error as cause to GetParameterError (#4936) (b3499db)
  • event-handler add tracer middleware for HTTP routes (#4982) (8be6157)

Bug Fixes

  • event-handler handle set-cookie header values with multiple attributes (#4990) (42317fe)
  • kafka handle tombstone events (#4991) (04c3236)
Commits
  • 54d1fa3 chore(ci): bump version to 2.31.0 (#5007)
  • 42317fe fix(event-handler): handle set-cookie header values with multiple attributes ...
  • 8e4da8a chore(deps): bump @​types/node from 25.2.0 to 25.2.2 (#5004)
  • ddf54e0 chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (#4998)
  • 7692071 chore(deps): bump @​types/node from 25.2.0 to 25.2.1 (#4999)
  • d8dfadc chore: manually upgrade dependency tree (#5002)
  • 60b6ce1 ci: switch npm auth to OIDC (#4997)
  • 04c3236 fix(kafka): handle tombstone events (#4991)
  • 8e1359e chore(deps): bump the aws-cdk group across 1 directory with 3 updates (#4985)
  • 4c6657a test: extract DF idempotency e2e tests (#4994)
  • Additional commits viewable in compare view

Updates @aws-lambda-powertools/tracer from 2.30.2 to 2.31.0

Release notes

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

v2.31.0

Summary

In this release we are pleased to announce Tracer middleware for the HTTP event handler, which allows users to enable distributed tracing for their HTTP routes with minimal boilerplate code.

In addition, the metric utility now supports a fluent interface, allowing you to chain multiple methods in a single statement.

We have also fixed a bug in the HTTP event handler that caused parameterized headers to be handled incorrectly.

⭐ Special thanks to @​nateiler and @​dothomson for their first PR merged in the project, and to @​arnabrahman! for another great contribution 🎉

Tracer Middleware

You can now use the Tracer utility with the HTTP event handler to gain observability over your routes. The middleware:

  • Creates a subsegment for each HTTP route with the format METHOD /path (e.g., GET /users)
  • Adds ColdStart and Service annotations
  • Optionally captures JSON response bodies as metadata
  • Captures errors as metadata when exceptions occur
import { Router } from '@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from '@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();
app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) => {
return { id: params.id, secret: 'sensitive-data' };
}
);
export const handler = async (event: unknown, context: Context) =>
app.resolve(event, context);

Metrics Fluent Interface

All mutation methods (with the exception of clear*) now return the metric instance that was mutated, allowing you to chain multiple metrics operations in a single statement.

import { Metrics} from '@aws-lambda-powertools/metrics';
const metrics = new Metrics();
</tr></table>

... (truncated)

Changelog

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

2.31.0 (2026-02-10)

Features

  • metrics return metrics instance from metrics functions (#4930) (e7aa2e2)
  • parameters pass underlying SDK error as cause to GetParameterError (#4936) (b3499db)
  • event-handler add tracer middleware for HTTP routes (#4982) (8be6157)

Bug Fixes

  • event-handler handle set-cookie header values with multiple attributes (#4990) (42317fe)
  • kafka handle tombstone events (#4991) (04c3236)
Commits
  • 54d1fa3 chore(ci): bump version to 2.31.0 (#5007)
  • 42317fe fix(event-handler): handle set-cookie header values with multiple attributes ...
  • 8e4da8a chore(deps): bump @​types/node from 25.2.0 to 25.2.2 (#5004)
  • ddf54e0 chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (#4998)
  • 7692071 chore(deps): bump @​types/node from 25.2.0 to 25.2.1 (#4999)
  • d8dfadc chore: manually upgrade dependency tree (#5002)
  • 60b6ce1 ci: switch npm auth to OIDC (#4997)
  • 04c3236 fix(kafka): handle tombstone events (#4991)
  • 8e1359e chore(deps): bump the aws-cdk group across 1 directory with 3 updates (#4985)
  • 4c6657a test: extract DF idempotency e2e tests (#4994)
  • Additional commits viewable in compare view

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 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 Feb 20, 2026
@dependabot dependabot Bot requested a review from a team as a code owner February 20, 2026 19:44
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 20, 2026
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Feb 20, 2026

Dependency Review

The following issues were found:
  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 4 package(s) with unknown licenses.
See the Details below.

License Issues

lambdas/functions/control-plane/package.json

PackageVersionLicenseIssue Type
@aws-lambda-powertools/parameters^2.31.0NullUnknown License

lambdas/libs/aws-powertools-util/package.json

PackageVersionLicenseIssue Type
@aws-lambda-powertools/logger^2.31.0NullUnknown License
@aws-lambda-powertools/metrics^2.31.0NullUnknown License
@aws-lambda-powertools/tracer^2.31.0NullUnknown License

OpenSSF Scorecard

PackageVersionScoreDetails
npm/@aws-lambda-powertools/parameters ^2.31.0 UnknownUnknown
npm/@aws-lambda-powertools/logger ^2.31.0 UnknownUnknown
npm/@aws-lambda-powertools/metrics ^2.31.0 UnknownUnknown
npm/@aws-lambda-powertools/tracer ^2.31.0 UnknownUnknown
npm/@aws-lambda-powertools/commons 2.31.0 🟢 9.1
Details
CheckScoreReason
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool🟢 10update tool detected
Code-Review🟢 10all changesets reviewed
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Security-Policy🟢 10security policy file detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts🟢 10no binaries found in the repo
Pinned-Dependencies🟢 10all dependencies are pinned
License🟢 10license file detected
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Vulnerabilities🟢 82 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
Fuzzing⚠️ 0project is not fuzzed
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.31.0 🟢 9.1
Details
CheckScoreReason
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool🟢 10update tool detected
Code-Review🟢 10all changesets reviewed
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Security-Policy🟢 10security policy file detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts🟢 10no binaries found in the repo
Pinned-Dependencies🟢 10all dependencies are pinned
License🟢 10license file detected
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Vulnerabilities🟢 82 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
Fuzzing⚠️ 0project is not fuzzed
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.31.0 🟢 9.1
Details
CheckScoreReason
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool🟢 10update tool detected
Code-Review🟢 10all changesets reviewed
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Security-Policy🟢 10security policy file detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts🟢 10no binaries found in the repo
Pinned-Dependencies🟢 10all dependencies are pinned
License🟢 10license file detected
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Vulnerabilities🟢 82 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
Fuzzing⚠️ 0project is not fuzzed
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.31.0 🟢 9.1
Details
CheckScoreReason
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool🟢 10update tool detected
Code-Review🟢 10all changesets reviewed
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Security-Policy🟢 10security policy file detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts🟢 10no binaries found in the repo
Pinned-Dependencies🟢 10all dependencies are pinned
License🟢 10license file detected
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Vulnerabilities🟢 82 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
Fuzzing⚠️ 0project is not fuzzed
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.31.0 🟢 9.1
Details
CheckScoreReason
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Dependency-Update-Tool🟢 10update tool detected
Code-Review🟢 10all changesets reviewed
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Security-Policy🟢 10security policy file detected
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Binary-Artifacts🟢 10no binaries found in the repo
Pinned-Dependencies🟢 10all dependencies are pinned
License🟢 10license file detected
CII-Best-Practices🟢 5badge detected: Passing
Signed-Releases⚠️ -1no releases found
Vulnerabilities🟢 82 existing vulnerabilities detected
SAST🟢 10SAST tool is run on all commits
Packaging🟢 10packaging workflow detected
Fuzzing⚠️ 0project is not fuzzed
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

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.30.2 to 2.31.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.30.2...v2.31.0)

Updates `@aws-lambda-powertools/logger` from 2.30.2 to 2.31.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.30.2...v2.31.0)

Updates `@aws-lambda-powertools/metrics` from 2.30.2 to 2.31.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.30.2...v2.31.0)

Updates `@aws-lambda-powertools/tracer` from 2.30.2 to 2.31.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.30.2...v2.31.0)

---
updated-dependencies:
- dependency-name: "@aws-lambda-powertools/parameters"
  dependency-version: 2.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-powertools
- dependency-name: "@aws-lambda-powertools/logger"
  dependency-version: 2.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-powertools
- dependency-name: "@aws-lambda-powertools/metrics"
  dependency-version: 2.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-powertools
- dependency-name: "@aws-lambda-powertools/tracer"
  dependency-version: 2.31.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-850d174394 branch from 5bd43af to 9671844 Compare March 6, 2026 19:44
@npalm npalm merged commit e3325fc into main Mar 9, 2026
8 checks passed
@npalm npalm deleted the dependabot/npm_and_yarn/lambdas/aws-powertools-850d174394 branch March 9, 2026 21:09
Brend-Smits pushed a commit that referenced this pull request Mar 11, 2026
…#5044)

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.30.2 to 2.31.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.31.0</h2>
<h2>Summary</h2>
<p>In this release we are pleased to announce Tracer middleware for the
HTTP event handler, which allows users to enable distributed tracing for
their HTTP routes with minimal boilerplate code.</p>
<p>In addition, the metric utility now supports a fluent interface,
allowing you to chain multiple methods in a single statement.</p>
<p>We have also fixed a bug in the HTTP event handler that caused
parameterized headers to be handled incorrectly.</p>
<p>⭐ Special thanks to <a
href="https://github.com/nateiler"><code>@​nateiler</code></a> and <a
href="https://github.com/dothomson"><code>@​dothomson</code></a> for
their first PR merged in the project, and to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>!
for another great contribution 🎉</p>
<h2>Tracer Middleware</h2>
<p>You can now use the Tracer utility with the HTTP event handler to
gain observability over your routes. The middleware:</p>
<ul>
<li>Creates a subsegment for each HTTP route with the format
<code>METHOD /path</code> (e.g., <code>GET /users</code>)</li>
<li>Adds <code>ColdStart</code> and <code>Service</code>
annotations</li>
<li>Optionally captures JSON response bodies as metadata</li>
<li>Captures errors as metadata when exceptions occur</li>
</ul>
<pre lang="ts"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from
'@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
<p>const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();</p>
<p>app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) =&gt; {
return { id: params.id, secret: 'sensitive-data' };
}
);</p>
<p>export const handler = async (event: unknown, context: Context) =&gt;
app.resolve(event, context);
</code></pre></p>
<h2>Metrics Fluent Interface</h2>
<p>All mutation methods (with the exception of <code>clear*</code>) now
return the metric instance that was mutated, allowing you to chain
multiple metrics operations in a single statement.</p>
<pre lang="ts"><code>import { Metrics} from
'@aws-lambda-powertools/metrics';
<p>const metrics = new Metrics();</p>
<p>&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.30.2...v2.31.0">2.31.0</a>
(2026-02-10)</h2>
<h3>Features</h3>
<ul>
<li><strong>metrics</strong> return metrics instance from metrics
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4930">#4930</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e7aa2e2b5efbdca197602ef5611ac14e58519d6b">e7aa2e2</a>)</li>
<li><strong>parameters</strong> pass underlying SDK error as cause to
<code>GetParameterError</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4936">#4936</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b3499dbfe29adc8f7fa07e5b8f3b4718e4525fa7">b3499db</a>)</li>
<li><strong>event-handler</strong> add tracer middleware for HTTP routes
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4982">#4982</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8be61577451c32fdea2db8bcb93f8acba9e44423">8be6157</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>event-handler</strong> handle set-cookie header values with
multiple attributes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4990">#4990</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a">42317fe</a>)</li>
<li><strong>kafka</strong> handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7">04c3236</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54d1fa3b290684ec987854b8266eac5094f4c178"><code>54d1fa3</code></a>
chore(ci): bump version to 2.31.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5007">#5007</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a"><code>42317fe</code></a>
fix(event-handler): handle set-cookie header values with multiple
attributes ...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e4da8a4ce4b7c57de14be04baf84444ee89f8c7"><code>8e4da8a</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5004">#5004</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ddf54e09ec0c61a803b4d9f8edecd62ccc374555"><code>ddf54e0</code></a>
chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4998">#4998</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/769207180080d45a72f8aca332c200239d3be06e"><code>7692071</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4999">#4999</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d8dfadc63a59e0445b23a98eae9f9cd26fdb2e14"><code>d8dfadc</code></a>
chore: manually upgrade dependency tree (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5002">#5002</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/60b6ce1b2c93346cccd0b7a1c43020934037b5c7"><code>60b6ce1</code></a>
ci: switch npm auth to OIDC (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4997">#4997</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7"><code>04c3236</code></a>
fix(kafka): handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e1359e1954f65215fe5c1884e4f0479eda95508"><code>8e1359e</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 3 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4985">#4985</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4c6657aee26e501dde0211da0810e52b441c5913"><code>4c6657a</code></a>
test: extract DF idempotency e2e tests (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4994">#4994</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.30.2...v2.31.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@aws-lambda-powertools/logger` from 2.30.2 to 2.31.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.31.0</h2>
<h2>Summary</h2>
<p>In this release we are pleased to announce Tracer middleware for the
HTTP event handler, which allows users to enable distributed tracing for
their HTTP routes with minimal boilerplate code.</p>
<p>In addition, the metric utility now supports a fluent interface,
allowing you to chain multiple methods in a single statement.</p>
<p>We have also fixed a bug in the HTTP event handler that caused
parameterized headers to be handled incorrectly.</p>
<p>⭐ Special thanks to <a
href="https://github.com/nateiler"><code>@​nateiler</code></a> and <a
href="https://github.com/dothomson"><code>@​dothomson</code></a> for
their first PR merged in the project, and to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>!
for another great contribution 🎉</p>
<h2>Tracer Middleware</h2>
<p>You can now use the Tracer utility with the HTTP event handler to
gain observability over your routes. The middleware:</p>
<ul>
<li>Creates a subsegment for each HTTP route with the format
<code>METHOD /path</code> (e.g., <code>GET /users</code>)</li>
<li>Adds <code>ColdStart</code> and <code>Service</code>
annotations</li>
<li>Optionally captures JSON response bodies as metadata</li>
<li>Captures errors as metadata when exceptions occur</li>
</ul>
<pre lang="ts"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from
'@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
<p>const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();</p>
<p>app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) =&gt; {
return { id: params.id, secret: 'sensitive-data' };
}
);</p>
<p>export const handler = async (event: unknown, context: Context) =&gt;
app.resolve(event, context);
</code></pre></p>
<h2>Metrics Fluent Interface</h2>
<p>All mutation methods (with the exception of <code>clear*</code>) now
return the metric instance that was mutated, allowing you to chain
multiple metrics operations in a single statement.</p>
<pre lang="ts"><code>import { Metrics} from
'@aws-lambda-powertools/metrics';
<p>const metrics = new Metrics();</p>
<p>&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.30.2...v2.31.0">2.31.0</a>
(2026-02-10)</h2>
<h3>Features</h3>
<ul>
<li><strong>metrics</strong> return metrics instance from metrics
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4930">#4930</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e7aa2e2b5efbdca197602ef5611ac14e58519d6b">e7aa2e2</a>)</li>
<li><strong>parameters</strong> pass underlying SDK error as cause to
<code>GetParameterError</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4936">#4936</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b3499dbfe29adc8f7fa07e5b8f3b4718e4525fa7">b3499db</a>)</li>
<li><strong>event-handler</strong> add tracer middleware for HTTP routes
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4982">#4982</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8be61577451c32fdea2db8bcb93f8acba9e44423">8be6157</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>event-handler</strong> handle set-cookie header values with
multiple attributes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4990">#4990</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a">42317fe</a>)</li>
<li><strong>kafka</strong> handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7">04c3236</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54d1fa3b290684ec987854b8266eac5094f4c178"><code>54d1fa3</code></a>
chore(ci): bump version to 2.31.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5007">#5007</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a"><code>42317fe</code></a>
fix(event-handler): handle set-cookie header values with multiple
attributes ...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e4da8a4ce4b7c57de14be04baf84444ee89f8c7"><code>8e4da8a</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5004">#5004</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ddf54e09ec0c61a803b4d9f8edecd62ccc374555"><code>ddf54e0</code></a>
chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4998">#4998</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/769207180080d45a72f8aca332c200239d3be06e"><code>7692071</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4999">#4999</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d8dfadc63a59e0445b23a98eae9f9cd26fdb2e14"><code>d8dfadc</code></a>
chore: manually upgrade dependency tree (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5002">#5002</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/60b6ce1b2c93346cccd0b7a1c43020934037b5c7"><code>60b6ce1</code></a>
ci: switch npm auth to OIDC (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4997">#4997</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7"><code>04c3236</code></a>
fix(kafka): handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e1359e1954f65215fe5c1884e4f0479eda95508"><code>8e1359e</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 3 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4985">#4985</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4c6657aee26e501dde0211da0810e52b441c5913"><code>4c6657a</code></a>
test: extract DF idempotency e2e tests (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4994">#4994</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.30.2...v2.31.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@aws-lambda-powertools/metrics` from 2.30.2 to 2.31.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.31.0</h2>
<h2>Summary</h2>
<p>In this release we are pleased to announce Tracer middleware for the
HTTP event handler, which allows users to enable distributed tracing for
their HTTP routes with minimal boilerplate code.</p>
<p>In addition, the metric utility now supports a fluent interface,
allowing you to chain multiple methods in a single statement.</p>
<p>We have also fixed a bug in the HTTP event handler that caused
parameterized headers to be handled incorrectly.</p>
<p>⭐ Special thanks to <a
href="https://github.com/nateiler"><code>@​nateiler</code></a> and <a
href="https://github.com/dothomson"><code>@​dothomson</code></a> for
their first PR merged in the project, and to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>!
for another great contribution 🎉</p>
<h2>Tracer Middleware</h2>
<p>You can now use the Tracer utility with the HTTP event handler to
gain observability over your routes. The middleware:</p>
<ul>
<li>Creates a subsegment for each HTTP route with the format
<code>METHOD /path</code> (e.g., <code>GET /users</code>)</li>
<li>Adds <code>ColdStart</code> and <code>Service</code>
annotations</li>
<li>Optionally captures JSON response bodies as metadata</li>
<li>Captures errors as metadata when exceptions occur</li>
</ul>
<pre lang="ts"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from
'@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
<p>const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();</p>
<p>app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) =&gt; {
return { id: params.id, secret: 'sensitive-data' };
}
);</p>
<p>export const handler = async (event: unknown, context: Context) =&gt;
app.resolve(event, context);
</code></pre></p>
<h2>Metrics Fluent Interface</h2>
<p>All mutation methods (with the exception of <code>clear*</code>) now
return the metric instance that was mutated, allowing you to chain
multiple metrics operations in a single statement.</p>
<pre lang="ts"><code>import { Metrics} from
'@aws-lambda-powertools/metrics';
<p>const metrics = new Metrics();</p>
<p>&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.30.2...v2.31.0">2.31.0</a>
(2026-02-10)</h2>
<h3>Features</h3>
<ul>
<li><strong>metrics</strong> return metrics instance from metrics
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4930">#4930</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e7aa2e2b5efbdca197602ef5611ac14e58519d6b">e7aa2e2</a>)</li>
<li><strong>parameters</strong> pass underlying SDK error as cause to
<code>GetParameterError</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4936">#4936</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b3499dbfe29adc8f7fa07e5b8f3b4718e4525fa7">b3499db</a>)</li>
<li><strong>event-handler</strong> add tracer middleware for HTTP routes
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4982">#4982</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8be61577451c32fdea2db8bcb93f8acba9e44423">8be6157</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>event-handler</strong> handle set-cookie header values with
multiple attributes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4990">#4990</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a">42317fe</a>)</li>
<li><strong>kafka</strong> handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7">04c3236</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54d1fa3b290684ec987854b8266eac5094f4c178"><code>54d1fa3</code></a>
chore(ci): bump version to 2.31.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5007">#5007</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a"><code>42317fe</code></a>
fix(event-handler): handle set-cookie header values with multiple
attributes ...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e4da8a4ce4b7c57de14be04baf84444ee89f8c7"><code>8e4da8a</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5004">#5004</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ddf54e09ec0c61a803b4d9f8edecd62ccc374555"><code>ddf54e0</code></a>
chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4998">#4998</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/769207180080d45a72f8aca332c200239d3be06e"><code>7692071</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4999">#4999</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d8dfadc63a59e0445b23a98eae9f9cd26fdb2e14"><code>d8dfadc</code></a>
chore: manually upgrade dependency tree (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5002">#5002</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/60b6ce1b2c93346cccd0b7a1c43020934037b5c7"><code>60b6ce1</code></a>
ci: switch npm auth to OIDC (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4997">#4997</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7"><code>04c3236</code></a>
fix(kafka): handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e1359e1954f65215fe5c1884e4f0479eda95508"><code>8e1359e</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 3 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4985">#4985</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4c6657aee26e501dde0211da0810e52b441c5913"><code>4c6657a</code></a>
test: extract DF idempotency e2e tests (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4994">#4994</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.30.2...v2.31.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@aws-lambda-powertools/tracer` from 2.30.2 to 2.31.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.31.0</h2>
<h2>Summary</h2>
<p>In this release we are pleased to announce Tracer middleware for the
HTTP event handler, which allows users to enable distributed tracing for
their HTTP routes with minimal boilerplate code.</p>
<p>In addition, the metric utility now supports a fluent interface,
allowing you to chain multiple methods in a single statement.</p>
<p>We have also fixed a bug in the HTTP event handler that caused
parameterized headers to be handled incorrectly.</p>
<p>⭐ Special thanks to <a
href="https://github.com/nateiler"><code>@​nateiler</code></a> and <a
href="https://github.com/dothomson"><code>@​dothomson</code></a> for
their first PR merged in the project, and to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>!
for another great contribution 🎉</p>
<h2>Tracer Middleware</h2>
<p>You can now use the Tracer utility with the HTTP event handler to
gain observability over your routes. The middleware:</p>
<ul>
<li>Creates a subsegment for each HTTP route with the format
<code>METHOD /path</code> (e.g., <code>GET /users</code>)</li>
<li>Adds <code>ColdStart</code> and <code>Service</code>
annotations</li>
<li>Optionally captures JSON response bodies as metadata</li>
<li>Captures errors as metadata when exceptions occur</li>
</ul>
<pre lang="ts"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from
'@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
<p>const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();</p>
<p>app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) =&gt; {
return { id: params.id, secret: 'sensitive-data' };
}
);</p>
<p>export const handler = async (event: unknown, context: Context) =&gt;
app.resolve(event, context);
</code></pre></p>
<h2>Metrics Fluent Interface</h2>
<p>All mutation methods (with the exception of <code>clear*</code>) now
return the metric instance that was mutated, allowing you to chain
multiple metrics operations in a single statement.</p>
<pre lang="ts"><code>import { Metrics} from
'@aws-lambda-powertools/metrics';
<p>const metrics = new Metrics();</p>
<p>&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.30.2...v2.31.0">2.31.0</a>
(2026-02-10)</h2>
<h3>Features</h3>
<ul>
<li><strong>metrics</strong> return metrics instance from metrics
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4930">#4930</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e7aa2e2b5efbdca197602ef5611ac14e58519d6b">e7aa2e2</a>)</li>
<li><strong>parameters</strong> pass underlying SDK error as cause to
<code>GetParameterError</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4936">#4936</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b3499dbfe29adc8f7fa07e5b8f3b4718e4525fa7">b3499db</a>)</li>
<li><strong>event-handler</strong> add tracer middleware for HTTP routes
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4982">#4982</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8be61577451c32fdea2db8bcb93f8acba9e44423">8be6157</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>event-handler</strong> handle set-cookie header values with
multiple attributes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4990">#4990</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a">42317fe</a>)</li>
<li><strong>kafka</strong> handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7">04c3236</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54d1fa3b290684ec987854b8266eac5094f4c178"><code>54d1fa3</code></a>
chore(ci): bump version to 2.31.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5007">#5007</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a"><code>42317fe</code></a>
fix(event-handler): handle set-cookie header values with multiple
attributes ...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e4da8a4ce4b7c57de14be04baf84444ee89f8c7"><code>8e4da8a</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5004">#5004</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ddf54e09ec0c61a803b4d9f8edecd62ccc374555"><code>ddf54e0</code></a>
chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4998">#4998</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/769207180080d45a72f8aca332c200239d3be06e"><code>7692071</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4999">#4999</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d8dfadc63a59e0445b23a98eae9f9cd26fdb2e14"><code>d8dfadc</code></a>
chore: manually upgrade dependency tree (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5002">#5002</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/60b6ce1b2c93346cccd0b7a1c43020934037b5c7"><code>60b6ce1</code></a>
ci: switch npm auth to OIDC (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4997">#4997</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7"><code>04c3236</code></a>
fix(kafka): handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e1359e1954f65215fe5c1884e4f0479eda95508"><code>8e1359e</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 3 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4985">#4985</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4c6657aee26e501dde0211da0810e52b441c5913"><code>4c6657a</code></a>
test: extract DF idempotency e2e tests (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4994">#4994</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.30.2...v2.31.0">compare
view</a></li>
</ul>
</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 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>
Brend-Smits pushed a commit that referenced this pull request Apr 1, 2026
…#5044)

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.30.2 to 2.31.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.31.0</h2>
<h2>Summary</h2>
<p>In this release we are pleased to announce Tracer middleware for the
HTTP event handler, which allows users to enable distributed tracing for
their HTTP routes with minimal boilerplate code.</p>
<p>In addition, the metric utility now supports a fluent interface,
allowing you to chain multiple methods in a single statement.</p>
<p>We have also fixed a bug in the HTTP event handler that caused
parameterized headers to be handled incorrectly.</p>
<p>⭐ Special thanks to <a
href="https://github.com/nateiler"><code>@​nateiler</code></a> and <a
href="https://github.com/dothomson"><code>@​dothomson</code></a> for
their first PR merged in the project, and to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>!
for another great contribution 🎉</p>
<h2>Tracer Middleware</h2>
<p>You can now use the Tracer utility with the HTTP event handler to
gain observability over your routes. The middleware:</p>
<ul>
<li>Creates a subsegment for each HTTP route with the format
<code>METHOD /path</code> (e.g., <code>GET /users</code>)</li>
<li>Adds <code>ColdStart</code> and <code>Service</code>
annotations</li>
<li>Optionally captures JSON response bodies as metadata</li>
<li>Captures errors as metadata when exceptions occur</li>
</ul>
<pre lang="ts"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from
'@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
<p>const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();</p>
<p>app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) =&gt; {
return { id: params.id, secret: 'sensitive-data' };
}
);</p>
<p>export const handler = async (event: unknown, context: Context) =&gt;
app.resolve(event, context);
</code></pre></p>
<h2>Metrics Fluent Interface</h2>
<p>All mutation methods (with the exception of <code>clear*</code>) now
return the metric instance that was mutated, allowing you to chain
multiple metrics operations in a single statement.</p>
<pre lang="ts"><code>import { Metrics} from
'@aws-lambda-powertools/metrics';
<p>const metrics = new Metrics();</p>
<p>&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.30.2...v2.31.0">2.31.0</a>
(2026-02-10)</h2>
<h3>Features</h3>
<ul>
<li><strong>metrics</strong> return metrics instance from metrics
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4930">#4930</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e7aa2e2b5efbdca197602ef5611ac14e58519d6b">e7aa2e2</a>)</li>
<li><strong>parameters</strong> pass underlying SDK error as cause to
<code>GetParameterError</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4936">#4936</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b3499dbfe29adc8f7fa07e5b8f3b4718e4525fa7">b3499db</a>)</li>
<li><strong>event-handler</strong> add tracer middleware for HTTP routes
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4982">#4982</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8be61577451c32fdea2db8bcb93f8acba9e44423">8be6157</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>event-handler</strong> handle set-cookie header values with
multiple attributes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4990">#4990</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a">42317fe</a>)</li>
<li><strong>kafka</strong> handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7">04c3236</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54d1fa3b290684ec987854b8266eac5094f4c178"><code>54d1fa3</code></a>
chore(ci): bump version to 2.31.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5007">#5007</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a"><code>42317fe</code></a>
fix(event-handler): handle set-cookie header values with multiple
attributes ...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e4da8a4ce4b7c57de14be04baf84444ee89f8c7"><code>8e4da8a</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5004">#5004</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ddf54e09ec0c61a803b4d9f8edecd62ccc374555"><code>ddf54e0</code></a>
chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4998">#4998</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/769207180080d45a72f8aca332c200239d3be06e"><code>7692071</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4999">#4999</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d8dfadc63a59e0445b23a98eae9f9cd26fdb2e14"><code>d8dfadc</code></a>
chore: manually upgrade dependency tree (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5002">#5002</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/60b6ce1b2c93346cccd0b7a1c43020934037b5c7"><code>60b6ce1</code></a>
ci: switch npm auth to OIDC (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4997">#4997</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7"><code>04c3236</code></a>
fix(kafka): handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e1359e1954f65215fe5c1884e4f0479eda95508"><code>8e1359e</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 3 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4985">#4985</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4c6657aee26e501dde0211da0810e52b441c5913"><code>4c6657a</code></a>
test: extract DF idempotency e2e tests (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4994">#4994</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.30.2...v2.31.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@aws-lambda-powertools/logger` from 2.30.2 to 2.31.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.31.0</h2>
<h2>Summary</h2>
<p>In this release we are pleased to announce Tracer middleware for the
HTTP event handler, which allows users to enable distributed tracing for
their HTTP routes with minimal boilerplate code.</p>
<p>In addition, the metric utility now supports a fluent interface,
allowing you to chain multiple methods in a single statement.</p>
<p>We have also fixed a bug in the HTTP event handler that caused
parameterized headers to be handled incorrectly.</p>
<p>⭐ Special thanks to <a
href="https://github.com/nateiler"><code>@​nateiler</code></a> and <a
href="https://github.com/dothomson"><code>@​dothomson</code></a> for
their first PR merged in the project, and to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>!
for another great contribution 🎉</p>
<h2>Tracer Middleware</h2>
<p>You can now use the Tracer utility with the HTTP event handler to
gain observability over your routes. The middleware:</p>
<ul>
<li>Creates a subsegment for each HTTP route with the format
<code>METHOD /path</code> (e.g., <code>GET /users</code>)</li>
<li>Adds <code>ColdStart</code> and <code>Service</code>
annotations</li>
<li>Optionally captures JSON response bodies as metadata</li>
<li>Captures errors as metadata when exceptions occur</li>
</ul>
<pre lang="ts"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from
'@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
<p>const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();</p>
<p>app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) =&gt; {
return { id: params.id, secret: 'sensitive-data' };
}
);</p>
<p>export const handler = async (event: unknown, context: Context) =&gt;
app.resolve(event, context);
</code></pre></p>
<h2>Metrics Fluent Interface</h2>
<p>All mutation methods (with the exception of <code>clear*</code>) now
return the metric instance that was mutated, allowing you to chain
multiple metrics operations in a single statement.</p>
<pre lang="ts"><code>import { Metrics} from
'@aws-lambda-powertools/metrics';
<p>const metrics = new Metrics();</p>
<p>&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.30.2...v2.31.0">2.31.0</a>
(2026-02-10)</h2>
<h3>Features</h3>
<ul>
<li><strong>metrics</strong> return metrics instance from metrics
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4930">#4930</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e7aa2e2b5efbdca197602ef5611ac14e58519d6b">e7aa2e2</a>)</li>
<li><strong>parameters</strong> pass underlying SDK error as cause to
<code>GetParameterError</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4936">#4936</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b3499dbfe29adc8f7fa07e5b8f3b4718e4525fa7">b3499db</a>)</li>
<li><strong>event-handler</strong> add tracer middleware for HTTP routes
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4982">#4982</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8be61577451c32fdea2db8bcb93f8acba9e44423">8be6157</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>event-handler</strong> handle set-cookie header values with
multiple attributes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4990">#4990</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a">42317fe</a>)</li>
<li><strong>kafka</strong> handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7">04c3236</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54d1fa3b290684ec987854b8266eac5094f4c178"><code>54d1fa3</code></a>
chore(ci): bump version to 2.31.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5007">#5007</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a"><code>42317fe</code></a>
fix(event-handler): handle set-cookie header values with multiple
attributes ...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e4da8a4ce4b7c57de14be04baf84444ee89f8c7"><code>8e4da8a</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5004">#5004</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ddf54e09ec0c61a803b4d9f8edecd62ccc374555"><code>ddf54e0</code></a>
chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4998">#4998</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/769207180080d45a72f8aca332c200239d3be06e"><code>7692071</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4999">#4999</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d8dfadc63a59e0445b23a98eae9f9cd26fdb2e14"><code>d8dfadc</code></a>
chore: manually upgrade dependency tree (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5002">#5002</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/60b6ce1b2c93346cccd0b7a1c43020934037b5c7"><code>60b6ce1</code></a>
ci: switch npm auth to OIDC (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4997">#4997</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7"><code>04c3236</code></a>
fix(kafka): handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e1359e1954f65215fe5c1884e4f0479eda95508"><code>8e1359e</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 3 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4985">#4985</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4c6657aee26e501dde0211da0810e52b441c5913"><code>4c6657a</code></a>
test: extract DF idempotency e2e tests (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4994">#4994</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.30.2...v2.31.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@aws-lambda-powertools/metrics` from 2.30.2 to 2.31.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.31.0</h2>
<h2>Summary</h2>
<p>In this release we are pleased to announce Tracer middleware for the
HTTP event handler, which allows users to enable distributed tracing for
their HTTP routes with minimal boilerplate code.</p>
<p>In addition, the metric utility now supports a fluent interface,
allowing you to chain multiple methods in a single statement.</p>
<p>We have also fixed a bug in the HTTP event handler that caused
parameterized headers to be handled incorrectly.</p>
<p>⭐ Special thanks to <a
href="https://github.com/nateiler"><code>@​nateiler</code></a> and <a
href="https://github.com/dothomson"><code>@​dothomson</code></a> for
their first PR merged in the project, and to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>!
for another great contribution 🎉</p>
<h2>Tracer Middleware</h2>
<p>You can now use the Tracer utility with the HTTP event handler to
gain observability over your routes. The middleware:</p>
<ul>
<li>Creates a subsegment for each HTTP route with the format
<code>METHOD /path</code> (e.g., <code>GET /users</code>)</li>
<li>Adds <code>ColdStart</code> and <code>Service</code>
annotations</li>
<li>Optionally captures JSON response bodies as metadata</li>
<li>Captures errors as metadata when exceptions occur</li>
</ul>
<pre lang="ts"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from
'@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
<p>const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();</p>
<p>app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) =&gt; {
return { id: params.id, secret: 'sensitive-data' };
}
);</p>
<p>export const handler = async (event: unknown, context: Context) =&gt;
app.resolve(event, context);
</code></pre></p>
<h2>Metrics Fluent Interface</h2>
<p>All mutation methods (with the exception of <code>clear*</code>) now
return the metric instance that was mutated, allowing you to chain
multiple metrics operations in a single statement.</p>
<pre lang="ts"><code>import { Metrics} from
'@aws-lambda-powertools/metrics';
<p>const metrics = new Metrics();</p>
<p>&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.30.2...v2.31.0">2.31.0</a>
(2026-02-10)</h2>
<h3>Features</h3>
<ul>
<li><strong>metrics</strong> return metrics instance from metrics
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4930">#4930</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e7aa2e2b5efbdca197602ef5611ac14e58519d6b">e7aa2e2</a>)</li>
<li><strong>parameters</strong> pass underlying SDK error as cause to
<code>GetParameterError</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4936">#4936</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b3499dbfe29adc8f7fa07e5b8f3b4718e4525fa7">b3499db</a>)</li>
<li><strong>event-handler</strong> add tracer middleware for HTTP routes
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4982">#4982</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8be61577451c32fdea2db8bcb93f8acba9e44423">8be6157</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>event-handler</strong> handle set-cookie header values with
multiple attributes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4990">#4990</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a">42317fe</a>)</li>
<li><strong>kafka</strong> handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7">04c3236</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54d1fa3b290684ec987854b8266eac5094f4c178"><code>54d1fa3</code></a>
chore(ci): bump version to 2.31.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5007">#5007</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a"><code>42317fe</code></a>
fix(event-handler): handle set-cookie header values with multiple
attributes ...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e4da8a4ce4b7c57de14be04baf84444ee89f8c7"><code>8e4da8a</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5004">#5004</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ddf54e09ec0c61a803b4d9f8edecd62ccc374555"><code>ddf54e0</code></a>
chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4998">#4998</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/769207180080d45a72f8aca332c200239d3be06e"><code>7692071</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4999">#4999</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d8dfadc63a59e0445b23a98eae9f9cd26fdb2e14"><code>d8dfadc</code></a>
chore: manually upgrade dependency tree (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5002">#5002</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/60b6ce1b2c93346cccd0b7a1c43020934037b5c7"><code>60b6ce1</code></a>
ci: switch npm auth to OIDC (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4997">#4997</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7"><code>04c3236</code></a>
fix(kafka): handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e1359e1954f65215fe5c1884e4f0479eda95508"><code>8e1359e</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 3 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4985">#4985</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4c6657aee26e501dde0211da0810e52b441c5913"><code>4c6657a</code></a>
test: extract DF idempotency e2e tests (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4994">#4994</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.30.2...v2.31.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@aws-lambda-powertools/tracer` from 2.30.2 to 2.31.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.31.0</h2>
<h2>Summary</h2>
<p>In this release we are pleased to announce Tracer middleware for the
HTTP event handler, which allows users to enable distributed tracing for
their HTTP routes with minimal boilerplate code.</p>
<p>In addition, the metric utility now supports a fluent interface,
allowing you to chain multiple methods in a single statement.</p>
<p>We have also fixed a bug in the HTTP event handler that caused
parameterized headers to be handled incorrectly.</p>
<p>⭐ Special thanks to <a
href="https://github.com/nateiler"><code>@​nateiler</code></a> and <a
href="https://github.com/dothomson"><code>@​dothomson</code></a> for
their first PR merged in the project, and to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>!
for another great contribution 🎉</p>
<h2>Tracer Middleware</h2>
<p>You can now use the Tracer utility with the HTTP event handler to
gain observability over your routes. The middleware:</p>
<ul>
<li>Creates a subsegment for each HTTP route with the format
<code>METHOD /path</code> (e.g., <code>GET /users</code>)</li>
<li>Adds <code>ColdStart</code> and <code>Service</code>
annotations</li>
<li>Optionally captures JSON response bodies as metadata</li>
<li>Captures errors as metadata when exceptions occur</li>
</ul>
<pre lang="ts"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from
'@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
<p>const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();</p>
<p>app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) =&gt; {
return { id: params.id, secret: 'sensitive-data' };
}
);</p>
<p>export const handler = async (event: unknown, context: Context) =&gt;
app.resolve(event, context);
</code></pre></p>
<h2>Metrics Fluent Interface</h2>
<p>All mutation methods (with the exception of <code>clear*</code>) now
return the metric instance that was mutated, allowing you to chain
multiple metrics operations in a single statement.</p>
<pre lang="ts"><code>import { Metrics} from
'@aws-lambda-powertools/metrics';
<p>const metrics = new Metrics();</p>
<p>&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.30.2...v2.31.0">2.31.0</a>
(2026-02-10)</h2>
<h3>Features</h3>
<ul>
<li><strong>metrics</strong> return metrics instance from metrics
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4930">#4930</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e7aa2e2b5efbdca197602ef5611ac14e58519d6b">e7aa2e2</a>)</li>
<li><strong>parameters</strong> pass underlying SDK error as cause to
<code>GetParameterError</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4936">#4936</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b3499dbfe29adc8f7fa07e5b8f3b4718e4525fa7">b3499db</a>)</li>
<li><strong>event-handler</strong> add tracer middleware for HTTP routes
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4982">#4982</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8be61577451c32fdea2db8bcb93f8acba9e44423">8be6157</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>event-handler</strong> handle set-cookie header values with
multiple attributes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4990">#4990</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a">42317fe</a>)</li>
<li><strong>kafka</strong> handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7">04c3236</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54d1fa3b290684ec987854b8266eac5094f4c178"><code>54d1fa3</code></a>
chore(ci): bump version to 2.31.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5007">#5007</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a"><code>42317fe</code></a>
fix(event-handler): handle set-cookie header values with multiple
attributes ...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e4da8a4ce4b7c57de14be04baf84444ee89f8c7"><code>8e4da8a</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5004">#5004</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ddf54e09ec0c61a803b4d9f8edecd62ccc374555"><code>ddf54e0</code></a>
chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4998">#4998</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/769207180080d45a72f8aca332c200239d3be06e"><code>7692071</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4999">#4999</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d8dfadc63a59e0445b23a98eae9f9cd26fdb2e14"><code>d8dfadc</code></a>
chore: manually upgrade dependency tree (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5002">#5002</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/60b6ce1b2c93346cccd0b7a1c43020934037b5c7"><code>60b6ce1</code></a>
ci: switch npm auth to OIDC (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4997">#4997</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7"><code>04c3236</code></a>
fix(kafka): handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e1359e1954f65215fe5c1884e4f0479eda95508"><code>8e1359e</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 3 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4985">#4985</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4c6657aee26e501dde0211da0810e52b441c5913"><code>4c6657a</code></a>
test: extract DF idempotency e2e tests (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4994">#4994</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.30.2...v2.31.0">compare
view</a></li>
</ul>
</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 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>
LudovicTOURMAN pushed a commit to doctolib-lab/terraform-aws-github-runner that referenced this pull request Apr 7, 2026
…github-aws-runners#5044)

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.30.2 to 2.31.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.31.0</h2>
<h2>Summary</h2>
<p>In this release we are pleased to announce Tracer middleware for the
HTTP event handler, which allows users to enable distributed tracing for
their HTTP routes with minimal boilerplate code.</p>
<p>In addition, the metric utility now supports a fluent interface,
allowing you to chain multiple methods in a single statement.</p>
<p>We have also fixed a bug in the HTTP event handler that caused
parameterized headers to be handled incorrectly.</p>
<p>⭐ Special thanks to <a
href="https://github.com/nateiler"><code>@​nateiler</code></a> and <a
href="https://github.com/dothomson"><code>@​dothomson</code></a> for
their first PR merged in the project, and to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>!
for another great contribution 🎉</p>
<h2>Tracer Middleware</h2>
<p>You can now use the Tracer utility with the HTTP event handler to
gain observability over your routes. The middleware:</p>
<ul>
<li>Creates a subsegment for each HTTP route with the format
<code>METHOD /path</code> (e.g., <code>GET /users</code>)</li>
<li>Adds <code>ColdStart</code> and <code>Service</code>
annotations</li>
<li>Optionally captures JSON response bodies as metadata</li>
<li>Captures errors as metadata when exceptions occur</li>
</ul>
<pre lang="ts"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from
'@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
<p>const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();</p>
<p>app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) =&gt; {
return { id: params.id, secret: 'sensitive-data' };
}
);</p>
<p>export const handler = async (event: unknown, context: Context) =&gt;
app.resolve(event, context);
</code></pre></p>
<h2>Metrics Fluent Interface</h2>
<p>All mutation methods (with the exception of <code>clear*</code>) now
return the metric instance that was mutated, allowing you to chain
multiple metrics operations in a single statement.</p>
<pre lang="ts"><code>import { Metrics} from
'@aws-lambda-powertools/metrics';
<p>const metrics = new Metrics();</p>
<p>&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.30.2...v2.31.0">2.31.0</a>
(2026-02-10)</h2>
<h3>Features</h3>
<ul>
<li><strong>metrics</strong> return metrics instance from metrics
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4930">#4930</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e7aa2e2b5efbdca197602ef5611ac14e58519d6b">e7aa2e2</a>)</li>
<li><strong>parameters</strong> pass underlying SDK error as cause to
<code>GetParameterError</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4936">#4936</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b3499dbfe29adc8f7fa07e5b8f3b4718e4525fa7">b3499db</a>)</li>
<li><strong>event-handler</strong> add tracer middleware for HTTP routes
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4982">#4982</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8be61577451c32fdea2db8bcb93f8acba9e44423">8be6157</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>event-handler</strong> handle set-cookie header values with
multiple attributes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4990">#4990</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a">42317fe</a>)</li>
<li><strong>kafka</strong> handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7">04c3236</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54d1fa3b290684ec987854b8266eac5094f4c178"><code>54d1fa3</code></a>
chore(ci): bump version to 2.31.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5007">#5007</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a"><code>42317fe</code></a>
fix(event-handler): handle set-cookie header values with multiple
attributes ...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e4da8a4ce4b7c57de14be04baf84444ee89f8c7"><code>8e4da8a</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5004">#5004</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ddf54e09ec0c61a803b4d9f8edecd62ccc374555"><code>ddf54e0</code></a>
chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4998">#4998</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/769207180080d45a72f8aca332c200239d3be06e"><code>7692071</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4999">#4999</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d8dfadc63a59e0445b23a98eae9f9cd26fdb2e14"><code>d8dfadc</code></a>
chore: manually upgrade dependency tree (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5002">#5002</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/60b6ce1b2c93346cccd0b7a1c43020934037b5c7"><code>60b6ce1</code></a>
ci: switch npm auth to OIDC (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4997">#4997</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7"><code>04c3236</code></a>
fix(kafka): handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e1359e1954f65215fe5c1884e4f0479eda95508"><code>8e1359e</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 3 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4985">#4985</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4c6657aee26e501dde0211da0810e52b441c5913"><code>4c6657a</code></a>
test: extract DF idempotency e2e tests (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4994">#4994</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.30.2...v2.31.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@aws-lambda-powertools/logger` from 2.30.2 to 2.31.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.31.0</h2>
<h2>Summary</h2>
<p>In this release we are pleased to announce Tracer middleware for the
HTTP event handler, which allows users to enable distributed tracing for
their HTTP routes with minimal boilerplate code.</p>
<p>In addition, the metric utility now supports a fluent interface,
allowing you to chain multiple methods in a single statement.</p>
<p>We have also fixed a bug in the HTTP event handler that caused
parameterized headers to be handled incorrectly.</p>
<p>⭐ Special thanks to <a
href="https://github.com/nateiler"><code>@​nateiler</code></a> and <a
href="https://github.com/dothomson"><code>@​dothomson</code></a> for
their first PR merged in the project, and to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>!
for another great contribution 🎉</p>
<h2>Tracer Middleware</h2>
<p>You can now use the Tracer utility with the HTTP event handler to
gain observability over your routes. The middleware:</p>
<ul>
<li>Creates a subsegment for each HTTP route with the format
<code>METHOD /path</code> (e.g., <code>GET /users</code>)</li>
<li>Adds <code>ColdStart</code> and <code>Service</code>
annotations</li>
<li>Optionally captures JSON response bodies as metadata</li>
<li>Captures errors as metadata when exceptions occur</li>
</ul>
<pre lang="ts"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from
'@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
<p>const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();</p>
<p>app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) =&gt; {
return { id: params.id, secret: 'sensitive-data' };
}
);</p>
<p>export const handler = async (event: unknown, context: Context) =&gt;
app.resolve(event, context);
</code></pre></p>
<h2>Metrics Fluent Interface</h2>
<p>All mutation methods (with the exception of <code>clear*</code>) now
return the metric instance that was mutated, allowing you to chain
multiple metrics operations in a single statement.</p>
<pre lang="ts"><code>import { Metrics} from
'@aws-lambda-powertools/metrics';
<p>const metrics = new Metrics();</p>
<p>&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.30.2...v2.31.0">2.31.0</a>
(2026-02-10)</h2>
<h3>Features</h3>
<ul>
<li><strong>metrics</strong> return metrics instance from metrics
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4930">#4930</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e7aa2e2b5efbdca197602ef5611ac14e58519d6b">e7aa2e2</a>)</li>
<li><strong>parameters</strong> pass underlying SDK error as cause to
<code>GetParameterError</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4936">#4936</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b3499dbfe29adc8f7fa07e5b8f3b4718e4525fa7">b3499db</a>)</li>
<li><strong>event-handler</strong> add tracer middleware for HTTP routes
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4982">#4982</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8be61577451c32fdea2db8bcb93f8acba9e44423">8be6157</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>event-handler</strong> handle set-cookie header values with
multiple attributes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4990">#4990</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a">42317fe</a>)</li>
<li><strong>kafka</strong> handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7">04c3236</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54d1fa3b290684ec987854b8266eac5094f4c178"><code>54d1fa3</code></a>
chore(ci): bump version to 2.31.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5007">#5007</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a"><code>42317fe</code></a>
fix(event-handler): handle set-cookie header values with multiple
attributes ...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e4da8a4ce4b7c57de14be04baf84444ee89f8c7"><code>8e4da8a</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5004">#5004</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ddf54e09ec0c61a803b4d9f8edecd62ccc374555"><code>ddf54e0</code></a>
chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4998">#4998</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/769207180080d45a72f8aca332c200239d3be06e"><code>7692071</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4999">#4999</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d8dfadc63a59e0445b23a98eae9f9cd26fdb2e14"><code>d8dfadc</code></a>
chore: manually upgrade dependency tree (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5002">#5002</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/60b6ce1b2c93346cccd0b7a1c43020934037b5c7"><code>60b6ce1</code></a>
ci: switch npm auth to OIDC (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4997">#4997</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7"><code>04c3236</code></a>
fix(kafka): handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e1359e1954f65215fe5c1884e4f0479eda95508"><code>8e1359e</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 3 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4985">#4985</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4c6657aee26e501dde0211da0810e52b441c5913"><code>4c6657a</code></a>
test: extract DF idempotency e2e tests (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4994">#4994</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.30.2...v2.31.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@aws-lambda-powertools/metrics` from 2.30.2 to 2.31.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.31.0</h2>
<h2>Summary</h2>
<p>In this release we are pleased to announce Tracer middleware for the
HTTP event handler, which allows users to enable distributed tracing for
their HTTP routes with minimal boilerplate code.</p>
<p>In addition, the metric utility now supports a fluent interface,
allowing you to chain multiple methods in a single statement.</p>
<p>We have also fixed a bug in the HTTP event handler that caused
parameterized headers to be handled incorrectly.</p>
<p>⭐ Special thanks to <a
href="https://github.com/nateiler"><code>@​nateiler</code></a> and <a
href="https://github.com/dothomson"><code>@​dothomson</code></a> for
their first PR merged in the project, and to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>!
for another great contribution 🎉</p>
<h2>Tracer Middleware</h2>
<p>You can now use the Tracer utility with the HTTP event handler to
gain observability over your routes. The middleware:</p>
<ul>
<li>Creates a subsegment for each HTTP route with the format
<code>METHOD /path</code> (e.g., <code>GET /users</code>)</li>
<li>Adds <code>ColdStart</code> and <code>Service</code>
annotations</li>
<li>Optionally captures JSON response bodies as metadata</li>
<li>Captures errors as metadata when exceptions occur</li>
</ul>
<pre lang="ts"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from
'@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
<p>const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();</p>
<p>app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) =&gt; {
return { id: params.id, secret: 'sensitive-data' };
}
);</p>
<p>export const handler = async (event: unknown, context: Context) =&gt;
app.resolve(event, context);
</code></pre></p>
<h2>Metrics Fluent Interface</h2>
<p>All mutation methods (with the exception of <code>clear*</code>) now
return the metric instance that was mutated, allowing you to chain
multiple metrics operations in a single statement.</p>
<pre lang="ts"><code>import { Metrics} from
'@aws-lambda-powertools/metrics';
<p>const metrics = new Metrics();</p>
<p>&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.30.2...v2.31.0">2.31.0</a>
(2026-02-10)</h2>
<h3>Features</h3>
<ul>
<li><strong>metrics</strong> return metrics instance from metrics
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4930">#4930</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e7aa2e2b5efbdca197602ef5611ac14e58519d6b">e7aa2e2</a>)</li>
<li><strong>parameters</strong> pass underlying SDK error as cause to
<code>GetParameterError</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4936">#4936</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b3499dbfe29adc8f7fa07e5b8f3b4718e4525fa7">b3499db</a>)</li>
<li><strong>event-handler</strong> add tracer middleware for HTTP routes
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4982">#4982</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8be61577451c32fdea2db8bcb93f8acba9e44423">8be6157</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>event-handler</strong> handle set-cookie header values with
multiple attributes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4990">#4990</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a">42317fe</a>)</li>
<li><strong>kafka</strong> handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7">04c3236</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54d1fa3b290684ec987854b8266eac5094f4c178"><code>54d1fa3</code></a>
chore(ci): bump version to 2.31.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5007">#5007</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a"><code>42317fe</code></a>
fix(event-handler): handle set-cookie header values with multiple
attributes ...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e4da8a4ce4b7c57de14be04baf84444ee89f8c7"><code>8e4da8a</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5004">#5004</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ddf54e09ec0c61a803b4d9f8edecd62ccc374555"><code>ddf54e0</code></a>
chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4998">#4998</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/769207180080d45a72f8aca332c200239d3be06e"><code>7692071</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4999">#4999</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d8dfadc63a59e0445b23a98eae9f9cd26fdb2e14"><code>d8dfadc</code></a>
chore: manually upgrade dependency tree (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5002">#5002</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/60b6ce1b2c93346cccd0b7a1c43020934037b5c7"><code>60b6ce1</code></a>
ci: switch npm auth to OIDC (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4997">#4997</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7"><code>04c3236</code></a>
fix(kafka): handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e1359e1954f65215fe5c1884e4f0479eda95508"><code>8e1359e</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 3 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4985">#4985</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4c6657aee26e501dde0211da0810e52b441c5913"><code>4c6657a</code></a>
test: extract DF idempotency e2e tests (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4994">#4994</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.30.2...v2.31.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `@aws-lambda-powertools/tracer` from 2.30.2 to 2.31.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.31.0</h2>
<h2>Summary</h2>
<p>In this release we are pleased to announce Tracer middleware for the
HTTP event handler, which allows users to enable distributed tracing for
their HTTP routes with minimal boilerplate code.</p>
<p>In addition, the metric utility now supports a fluent interface,
allowing you to chain multiple methods in a single statement.</p>
<p>We have also fixed a bug in the HTTP event handler that caused
parameterized headers to be handled incorrectly.</p>
<p>⭐ Special thanks to <a
href="https://github.com/nateiler"><code>@​nateiler</code></a> and <a
href="https://github.com/dothomson"><code>@​dothomson</code></a> for
their first PR merged in the project, and to <a
href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a>!
for another great contribution 🎉</p>
<h2>Tracer Middleware</h2>
<p>You can now use the Tracer utility with the HTTP event handler to
gain observability over your routes. The middleware:</p>
<ul>
<li>Creates a subsegment for each HTTP route with the format
<code>METHOD /path</code> (e.g., <code>GET /users</code>)</li>
<li>Adds <code>ColdStart</code> and <code>Service</code>
annotations</li>
<li>Optionally captures JSON response bodies as metadata</li>
<li>Captures errors as metadata when exceptions occur</li>
</ul>
<pre lang="ts"><code>import { Router } from
'@aws-lambda-powertools/event-handler/http';
import { tracer as tracerMiddleware } from
'@aws-lambda-powertools/event-handler/http/middleware/tracer';
import { Tracer } from '@aws-lambda-powertools/tracer';
import type { Context } from 'aws-lambda';
<p>const tracer = new Tracer({ serviceName: 'my-api' });
const app = new Router();</p>
<p>app.get(
'/users/cards',
[tracerMiddleware(tracer, { captureResponse: false })],
({ params }) =&gt; {
return { id: params.id, secret: 'sensitive-data' };
}
);</p>
<p>export const handler = async (event: unknown, context: Context) =&gt;
app.resolve(event, context);
</code></pre></p>
<h2>Metrics Fluent Interface</h2>
<p>All mutation methods (with the exception of <code>clear*</code>) now
return the metric instance that was mutated, allowing you to chain
multiple metrics operations in a single statement.</p>
<pre lang="ts"><code>import { Metrics} from
'@aws-lambda-powertools/metrics';
<p>const metrics = new Metrics();</p>
<p>&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.30.2...v2.31.0">2.31.0</a>
(2026-02-10)</h2>
<h3>Features</h3>
<ul>
<li><strong>metrics</strong> return metrics instance from metrics
functions (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4930">#4930</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e7aa2e2b5efbdca197602ef5611ac14e58519d6b">e7aa2e2</a>)</li>
<li><strong>parameters</strong> pass underlying SDK error as cause to
<code>GetParameterError</code> (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4936">#4936</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b3499dbfe29adc8f7fa07e5b8f3b4718e4525fa7">b3499db</a>)</li>
<li><strong>event-handler</strong> add tracer middleware for HTTP routes
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4982">#4982</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8be61577451c32fdea2db8bcb93f8acba9e44423">8be6157</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>event-handler</strong> handle set-cookie header values with
multiple attributes (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4990">#4990</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a">42317fe</a>)</li>
<li><strong>kafka</strong> handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)
(<a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7">04c3236</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54d1fa3b290684ec987854b8266eac5094f4c178"><code>54d1fa3</code></a>
chore(ci): bump version to 2.31.0 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5007">#5007</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/42317fe15b90536fab40c15a70f967faf116011a"><code>42317fe</code></a>
fix(event-handler): handle set-cookie header values with multiple
attributes ...</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e4da8a4ce4b7c57de14be04baf84444ee89f8c7"><code>8e4da8a</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5004">#5004</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ddf54e09ec0c61a803b4d9f8edecd62ccc374555"><code>ddf54e0</code></a>
chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4998">#4998</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/769207180080d45a72f8aca332c200239d3be06e"><code>7692071</code></a>
chore(deps): bump <code>@​types/node</code> from 25.2.0 to 25.2.1 (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4999">#4999</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d8dfadc63a59e0445b23a98eae9f9cd26fdb2e14"><code>d8dfadc</code></a>
chore: manually upgrade dependency tree (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/5002">#5002</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/60b6ce1b2c93346cccd0b7a1c43020934037b5c7"><code>60b6ce1</code></a>
ci: switch npm auth to OIDC (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4997">#4997</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/04c32360c972aff984c69cce3eae6e95007e79b7"><code>04c3236</code></a>
fix(kafka): handle tombstone events (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4991">#4991</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8e1359e1954f65215fe5c1884e4f0479eda95508"><code>8e1359e</code></a>
chore(deps): bump the aws-cdk group across 1 directory with 3 updates
(<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4985">#4985</a>)</li>
<li><a
href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/4c6657aee26e501dde0211da0810e52b441c5913"><code>4c6657a</code></a>
test: extract DF idempotency e2e tests (<a
href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4994">#4994</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.30.2...v2.31.0">compare
view</a></li>
</ul>
</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 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.

1 participant