Conversation
Contributor
Dependency ReviewThe following issues were found:
License Issueslambdas/functions/control-plane/package.json
lambdas/libs/aws-powertools-util/package.json
OpenSSF Scorecard
Scanned Files
|
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>
5bd43af to
9671844
Compare
npalm
approved these changes
Mar 9, 2026
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 }) => { return { id: params.id, secret: 'sensitive-data' }; } );</p> <p>export const handler = async (event: unknown, context: Context) => 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></tr></table> </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 }) => { return { id: params.id, secret: 'sensitive-data' }; } );</p> <p>export const handler = async (event: unknown, context: Context) => 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></tr></table> </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 }) => { return { id: params.id, secret: 'sensitive-data' }; } );</p> <p>export const handler = async (event: unknown, context: Context) => 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></tr></table> </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 }) => { return { id: params.id, secret: 'sensitive-data' }; } );</p> <p>export const handler = async (event: unknown, context: Context) => 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></tr></table> </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 }) => { return { id: params.id, secret: 'sensitive-data' }; } );</p> <p>export const handler = async (event: unknown, context: Context) => 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></tr></table> </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 }) => { return { id: params.id, secret: 'sensitive-data' }; } );</p> <p>export const handler = async (event: unknown, context: Context) => 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></tr></table> </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 }) => { return { id: params.id, secret: 'sensitive-data' }; } );</p> <p>export const handler = async (event: unknown, context: Context) => 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></tr></table> </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 }) => { return { id: params.id, secret: 'sensitive-data' }; } );</p> <p>export const handler = async (event: unknown, context: Context) => 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></tr></table> </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 }) => { return { id: params.id, secret: 'sensitive-data' }; } );</p> <p>export const handler = async (event: unknown, context: Context) => 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></tr></table> </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 }) => { return { id: params.id, secret: 'sensitive-data' }; } );</p> <p>export const handler = async (event: unknown, context: Context) => 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></tr></table> </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 }) => { return { id: params.id, secret: 'sensitive-data' }; } );</p> <p>export const handler = async (event: unknown, context: Context) => 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></tr></table> </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 }) => { return { id: params.id, secret: 'sensitive-data' }; } );</p> <p>export const handler = async (event: unknown, context: Context) => 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></tr></table> </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>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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/parametersfrom 2.30.2 to 2.31.0Release notes
Sourced from
@aws-lambda-powertools/parameters's releases.... (truncated)
Changelog
Sourced from
@aws-lambda-powertools/parameters's changelog.Commits
54d1fa3chore(ci): bump version to 2.31.0 (#5007)42317fefix(event-handler): handle set-cookie header values with multiple attributes ...8e4da8achore(deps): bump@types/nodefrom 25.2.0 to 25.2.2 (#5004)ddf54e0chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (#4998)7692071chore(deps): bump@types/nodefrom 25.2.0 to 25.2.1 (#4999)d8dfadcchore: manually upgrade dependency tree (#5002)60b6ce1ci: switch npm auth to OIDC (#4997)04c3236fix(kafka): handle tombstone events (#4991)8e1359echore(deps): bump the aws-cdk group across 1 directory with 3 updates (#4985)4c6657atest: extract DF idempotency e2e tests (#4994)Updates
@aws-lambda-powertools/loggerfrom 2.30.2 to 2.31.0Release notes
Sourced from
@aws-lambda-powertools/logger's releases.... (truncated)
Changelog
Sourced from
@aws-lambda-powertools/logger's changelog.Commits
54d1fa3chore(ci): bump version to 2.31.0 (#5007)42317fefix(event-handler): handle set-cookie header values with multiple attributes ...8e4da8achore(deps): bump@types/nodefrom 25.2.0 to 25.2.2 (#5004)ddf54e0chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (#4998)7692071chore(deps): bump@types/nodefrom 25.2.0 to 25.2.1 (#4999)d8dfadcchore: manually upgrade dependency tree (#5002)60b6ce1ci: switch npm auth to OIDC (#4997)04c3236fix(kafka): handle tombstone events (#4991)8e1359echore(deps): bump the aws-cdk group across 1 directory with 3 updates (#4985)4c6657atest: extract DF idempotency e2e tests (#4994)Updates
@aws-lambda-powertools/metricsfrom 2.30.2 to 2.31.0Release notes
Sourced from
@aws-lambda-powertools/metrics's releases.... (truncated)
Changelog
Sourced from
@aws-lambda-powertools/metrics's changelog.Commits
54d1fa3chore(ci): bump version to 2.31.0 (#5007)42317fefix(event-handler): handle set-cookie header values with multiple attributes ...8e4da8achore(deps): bump@types/nodefrom 25.2.0 to 25.2.2 (#5004)ddf54e0chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (#4998)7692071chore(deps): bump@types/nodefrom 25.2.0 to 25.2.1 (#4999)d8dfadcchore: manually upgrade dependency tree (#5002)60b6ce1ci: switch npm auth to OIDC (#4997)04c3236fix(kafka): handle tombstone events (#4991)8e1359echore(deps): bump the aws-cdk group across 1 directory with 3 updates (#4985)4c6657atest: extract DF idempotency e2e tests (#4994)Updates
@aws-lambda-powertools/tracerfrom 2.30.2 to 2.31.0Release notes
Sourced from
@aws-lambda-powertools/tracer's releases.... (truncated)
Changelog
Sourced from
@aws-lambda-powertools/tracer's changelog.Commits
54d1fa3chore(ci): bump version to 2.31.0 (#5007)42317fefix(event-handler): handle set-cookie header values with multiple attributes ...8e4da8achore(deps): bump@types/nodefrom 25.2.0 to 25.2.2 (#5004)ddf54e0chore(deps): bump github/codeql-action from 4.32.1 to 4.32.2 (#4998)7692071chore(deps): bump@types/nodefrom 25.2.0 to 25.2.1 (#4999)d8dfadcchore: manually upgrade dependency tree (#5002)60b6ce1ci: switch npm auth to OIDC (#4997)04c3236fix(kafka): handle tombstone events (#4991)8e1359echore(deps): bump the aws-cdk group across 1 directory with 3 updates (#4985)4c6657atest: extract DF idempotency e2e tests (#4994)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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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