Skip to content

Commit 1bfe414

Browse files
fix(lambda): bump the aws-powertools group in /lambdas with 4 updates (#4795)
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.26.1 to 2.27.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.27.0</h2> <h2>Summary</h2> <p>We're excited to announce an update to our Event Handler utility, featuring new middleware for CORS (Cross-Origin Resource Sharing) configuration and automatic response compression. We have also added support for Route Prefixes which allows you to avoid repeating a shared prefix in each route definition.</p> <p>We've listened to your feedback and also made some slight changes to the type signature in the handlers to improve developer experience.</p> <p>We have also made the error handlers more versatile by allowing <a href="https://developer.mozilla.org/en-US/docs/Web/API/Response">a Response object</a> or a JavaScript object to be returned from the error handler.</p> <p>⭐ Congratulations <a href="https://github.com/guillemcomerma"><code>@​guillemcomerma</code></a> for their first PR merged in the project, and thank you to <a href="https://github.com/shrivarshapoojari"><code>@​shrivarshapoojari</code></a> and <a href="https://github.com/dani-abib"><code>@​dani-abib</code></a> for their contributions 🎉</p> <h3>CORS Middleware</h3> <blockquote> <p><a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/event-handler/rest/#cors">Docs</a></p> </blockquote> <p>The CORS middleware ensures CORS headers are returned as part of the response when your functions match the path invoked and the Origin matches one of the allowed values.</p> <pre lang="typescript"><code>import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest'; import { cors } from '@aws-lambda-powertools/event-handler/experimental-rest/middleware'; import type { Context } from 'aws-lambda'; <p>const app = new Router();</p> <p>app.use(<br /> cors({<br /> origin: '<a href="https://example.com">https://example.com</a>',<br /> maxAge: 300,<br /> })<br /> );</p> <p>app.get('/todos/:todoId', async ({ params: { todoId } }) =&gt; {<br /> const todo = await getTodoById(todoId);<br /> return { todo };<br /> });</p> <p>export const handler = async (event: unknown, context: Context) =&gt;<br /> app.resolve(event, context);</p> <p>/**<br /> When invoked from a valid origin, this returns:</p> <p>{<br /> &quot;statusCode&quot;: 200,<br /> &quot;headers&quot;: {<br /> &quot;access-control-allow-credentials&quot;: &quot;false&quot;,<br /> &quot;access-control-allow-origin&quot;: &quot;<a href="https://example.com">https://example.com</a>&quot;,<br /> &quot;content-type&quot;: &quot;application/json&quot;<br /> },<br /> &quot;multiValueHeaders&quot;: {<br /> &lt;/tr&gt;&lt;/table&gt;<br /> </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.26.1...v2.27.0">2.27.0</a> (2025-09-24)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>batch</strong> fixed the build issue with Batch processor due to missing dependencies (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4498">#4498</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ef67b43921f1d67b06b3257fb0f96c74e0d6dbae">ef67b43</a>)</li> <li><strong>event-handler</strong> fixed CORS behaviour not aligned with CORS spec (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4512">#4512</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/dd368fa3eb08a86c2d5aad3cf9b832d7a8288486">dd368fa</a>)</li> <li><strong>event-handler</strong> run global middleware on all requests for REST API (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4507">#4507</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/49d5f8a4f36a5af26c573f7706347f34ec70689e">49d5f8a</a>)</li> </ul> <h3>Improvements</h3> <ul> <li><strong>event-handler</strong> rename HttpErrorCodes to HttpStatusCodes (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4543">#4543</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e53aa8816325f21510706e3f9e62fb0a76692915">e53aa88</a>)</li> <li><strong>event-handler</strong> made error handler responses versatile (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4536">#4536</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f08b366b79152d338ebefb5a25caacade6846919">f08b366</a>)</li> <li><strong>event-handler</strong> changed path parameter in middleware and routehandler signature (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4532">#4532</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/278fca0491ce9cb955326523557c3ddf9d03dbc5">278fca0</a>)</li> <li><strong>event-handler</strong> change the Middleware and RequestContext signatures (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4530">#4530</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a05c07411629d1e23a9cb3fec8a78cf23bd8dd0c">a05c074</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>event-handler</strong> implemented route prefixes in HTTP event handler (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4523">#4523</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/89138542cd9e195555299f401646ae94d0bb50ee">8913854</a>)</li> <li><strong>event-handler</strong> throw error when middleware does not await next() (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4511">#4511</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b0b43e862fb189941fe9db220580884e7707d541">b0b43e8</a>)</li> <li><strong>event-handler</strong> add CORS middleware support (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4477">#4477</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/972cd1f86b6ea01c93abef5e6cde7876360196f1">972cd1f</a>)</li> <li><strong>event-handler</strong> added compress middleware for the REST API event handler (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4495">#4495</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/320e0dcaa07476de3b7d07209ef27379b9d4900a">320e0dc</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f38af1db92473327776fc3128bccad145062e354"><code>f38af1d</code></a> chore(ci): bump version to 2.27.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4544">#4544</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/72cf1cd046fa37abb5148aa9ed5f3244ca5db1ac"><code>72cf1cd</code></a> docs(event-handler): update to new APIs before release (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4542">#4542</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e53aa8816325f21510706e3f9e62fb0a76692915"><code>e53aa88</code></a> improv(event-handler): rename HttpErrorCodes to HttpStatusCodes (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4543">#4543</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3d1255c145f85709b8ab4c4ec9e143ceb2a26ec9"><code>3d1255c</code></a> docs(idempotency): fix dataKeywordArgument reference and remove unused test c...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f08b366b79152d338ebefb5a25caacade6846919"><code>f08b366</code></a> improv(event-handler): made error handler responses versatile (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4536">#4536</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/fd156aa04806b3de37c16efb07bef111d411d31a"><code>fd156aa</code></a> chore(ci): add <code>registry-url</code> to <code>setup-node</code> steps to fix Scorecard packagin...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d281d46cbdd2e813005c5b5174aa017ace8f0671"><code>d281d46</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/4527">#4527</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/278fca0491ce9cb955326523557c3ddf9d03dbc5"><code>278fca0</code></a> improv(event-handler): changed path parameter in middleware and routehandler ...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7ea49c7dbc84d48da6ca214e367a5c612c583cc9"><code>7ea49c7</code></a> chore(deps): bump the aws-sdk-v3 group across 1 directory with 62 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4">#4</a>...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a05c07411629d1e23a9cb3fec8a78cf23bd8dd0c"><code>a05c074</code></a> improv(event-handler): change the Middleware and RequestContext signatures (#...</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.26.1...v2.27.0">compare view</a></li> </ul> </details> <br /> Updates `@aws-lambda-powertools/logger` from 2.26.1 to 2.27.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.27.0</h2> <h2>Summary</h2> <p>We're excited to announce an update to our Event Handler utility, featuring new middleware for CORS (Cross-Origin Resource Sharing) configuration and automatic response compression. We have also added support for Route Prefixes which allows you to avoid repeating a shared prefix in each route definition.</p> <p>We've listened to your feedback and also made some slight changes to the type signature in the handlers to improve developer experience.</p> <p>We have also made the error handlers more versatile by allowing <a href="https://developer.mozilla.org/en-US/docs/Web/API/Response">a Response object</a> or a JavaScript object to be returned from the error handler.</p> <p>⭐ Congratulations <a href="https://github.com/guillemcomerma"><code>@​guillemcomerma</code></a> for their first PR merged in the project, and thank you to <a href="https://github.com/shrivarshapoojari"><code>@​shrivarshapoojari</code></a> and <a href="https://github.com/dani-abib"><code>@​dani-abib</code></a> for their contributions 🎉</p> <h3>CORS Middleware</h3> <blockquote> <p><a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/event-handler/rest/#cors">Docs</a></p> </blockquote> <p>The CORS middleware ensures CORS headers are returned as part of the response when your functions match the path invoked and the Origin matches one of the allowed values.</p> <pre lang="typescript"><code>import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest'; import { cors } from '@aws-lambda-powertools/event-handler/experimental-rest/middleware'; import type { Context } from 'aws-lambda'; <p>const app = new Router();</p> <p>app.use(<br /> cors({<br /> origin: '<a href="https://example.com">https://example.com</a>',<br /> maxAge: 300,<br /> })<br /> );</p> <p>app.get('/todos/:todoId', async ({ params: { todoId } }) =&gt; {<br /> const todo = await getTodoById(todoId);<br /> return { todo };<br /> });</p> <p>export const handler = async (event: unknown, context: Context) =&gt;<br /> app.resolve(event, context);</p> <p>/**<br /> When invoked from a valid origin, this returns:</p> <p>{<br /> &quot;statusCode&quot;: 200,<br /> &quot;headers&quot;: {<br /> &quot;access-control-allow-credentials&quot;: &quot;false&quot;,<br /> &quot;access-control-allow-origin&quot;: &quot;<a href="https://example.com">https://example.com</a>&quot;,<br /> &quot;content-type&quot;: &quot;application/json&quot;<br /> },<br /> &quot;multiValueHeaders&quot;: {<br /> &lt;/tr&gt;&lt;/table&gt;<br /> </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.26.1...v2.27.0">2.27.0</a> (2025-09-24)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>batch</strong> fixed the build issue with Batch processor due to missing dependencies (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4498">#4498</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ef67b43921f1d67b06b3257fb0f96c74e0d6dbae">ef67b43</a>)</li> <li><strong>event-handler</strong> fixed CORS behaviour not aligned with CORS spec (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4512">#4512</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/dd368fa3eb08a86c2d5aad3cf9b832d7a8288486">dd368fa</a>)</li> <li><strong>event-handler</strong> run global middleware on all requests for REST API (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4507">#4507</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/49d5f8a4f36a5af26c573f7706347f34ec70689e">49d5f8a</a>)</li> </ul> <h3>Improvements</h3> <ul> <li><strong>event-handler</strong> rename HttpErrorCodes to HttpStatusCodes (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4543">#4543</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e53aa8816325f21510706e3f9e62fb0a76692915">e53aa88</a>)</li> <li><strong>event-handler</strong> made error handler responses versatile (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4536">#4536</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f08b366b79152d338ebefb5a25caacade6846919">f08b366</a>)</li> <li><strong>event-handler</strong> changed path parameter in middleware and routehandler signature (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4532">#4532</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/278fca0491ce9cb955326523557c3ddf9d03dbc5">278fca0</a>)</li> <li><strong>event-handler</strong> change the Middleware and RequestContext signatures (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4530">#4530</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a05c07411629d1e23a9cb3fec8a78cf23bd8dd0c">a05c074</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>event-handler</strong> implemented route prefixes in HTTP event handler (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4523">#4523</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/89138542cd9e195555299f401646ae94d0bb50ee">8913854</a>)</li> <li><strong>event-handler</strong> throw error when middleware does not await next() (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4511">#4511</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b0b43e862fb189941fe9db220580884e7707d541">b0b43e8</a>)</li> <li><strong>event-handler</strong> add CORS middleware support (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4477">#4477</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/972cd1f86b6ea01c93abef5e6cde7876360196f1">972cd1f</a>)</li> <li><strong>event-handler</strong> added compress middleware for the REST API event handler (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4495">#4495</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/320e0dcaa07476de3b7d07209ef27379b9d4900a">320e0dc</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f38af1db92473327776fc3128bccad145062e354"><code>f38af1d</code></a> chore(ci): bump version to 2.27.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4544">#4544</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/72cf1cd046fa37abb5148aa9ed5f3244ca5db1ac"><code>72cf1cd</code></a> docs(event-handler): update to new APIs before release (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4542">#4542</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e53aa8816325f21510706e3f9e62fb0a76692915"><code>e53aa88</code></a> improv(event-handler): rename HttpErrorCodes to HttpStatusCodes (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4543">#4543</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3d1255c145f85709b8ab4c4ec9e143ceb2a26ec9"><code>3d1255c</code></a> docs(idempotency): fix dataKeywordArgument reference and remove unused test c...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f08b366b79152d338ebefb5a25caacade6846919"><code>f08b366</code></a> improv(event-handler): made error handler responses versatile (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4536">#4536</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/fd156aa04806b3de37c16efb07bef111d411d31a"><code>fd156aa</code></a> chore(ci): add <code>registry-url</code> to <code>setup-node</code> steps to fix Scorecard packagin...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d281d46cbdd2e813005c5b5174aa017ace8f0671"><code>d281d46</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/4527">#4527</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/278fca0491ce9cb955326523557c3ddf9d03dbc5"><code>278fca0</code></a> improv(event-handler): changed path parameter in middleware and routehandler ...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7ea49c7dbc84d48da6ca214e367a5c612c583cc9"><code>7ea49c7</code></a> chore(deps): bump the aws-sdk-v3 group across 1 directory with 62 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4">#4</a>...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a05c07411629d1e23a9cb3fec8a78cf23bd8dd0c"><code>a05c074</code></a> improv(event-handler): change the Middleware and RequestContext signatures (#...</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.26.1...v2.27.0">compare view</a></li> </ul> </details> <br /> Updates `@aws-lambda-powertools/metrics` from 2.26.1 to 2.27.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.27.0</h2> <h2>Summary</h2> <p>We're excited to announce an update to our Event Handler utility, featuring new middleware for CORS (Cross-Origin Resource Sharing) configuration and automatic response compression. We have also added support for Route Prefixes which allows you to avoid repeating a shared prefix in each route definition.</p> <p>We've listened to your feedback and also made some slight changes to the type signature in the handlers to improve developer experience.</p> <p>We have also made the error handlers more versatile by allowing <a href="https://developer.mozilla.org/en-US/docs/Web/API/Response">a Response object</a> or a JavaScript object to be returned from the error handler.</p> <p>⭐ Congratulations <a href="https://github.com/guillemcomerma"><code>@​guillemcomerma</code></a> for their first PR merged in the project, and thank you to <a href="https://github.com/shrivarshapoojari"><code>@​shrivarshapoojari</code></a> and <a href="https://github.com/dani-abib"><code>@​dani-abib</code></a> for their contributions 🎉</p> <h3>CORS Middleware</h3> <blockquote> <p><a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/event-handler/rest/#cors">Docs</a></p> </blockquote> <p>The CORS middleware ensures CORS headers are returned as part of the response when your functions match the path invoked and the Origin matches one of the allowed values.</p> <pre lang="typescript"><code>import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest'; import { cors } from '@aws-lambda-powertools/event-handler/experimental-rest/middleware'; import type { Context } from 'aws-lambda'; <p>const app = new Router();</p> <p>app.use(<br /> cors({<br /> origin: '<a href="https://example.com">https://example.com</a>',<br /> maxAge: 300,<br /> })<br /> );</p> <p>app.get('/todos/:todoId', async ({ params: { todoId } }) =&gt; {<br /> const todo = await getTodoById(todoId);<br /> return { todo };<br /> });</p> <p>export const handler = async (event: unknown, context: Context) =&gt;<br /> app.resolve(event, context);</p> <p>/**<br /> When invoked from a valid origin, this returns:</p> <p>{<br /> &quot;statusCode&quot;: 200,<br /> &quot;headers&quot;: {<br /> &quot;access-control-allow-credentials&quot;: &quot;false&quot;,<br /> &quot;access-control-allow-origin&quot;: &quot;<a href="https://example.com">https://example.com</a>&quot;,<br /> &quot;content-type&quot;: &quot;application/json&quot;<br /> },<br /> &quot;multiValueHeaders&quot;: {<br /> &lt;/tr&gt;&lt;/table&gt;<br /> </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.26.1...v2.27.0">2.27.0</a> (2025-09-24)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>batch</strong> fixed the build issue with Batch processor due to missing dependencies (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4498">#4498</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ef67b43921f1d67b06b3257fb0f96c74e0d6dbae">ef67b43</a>)</li> <li><strong>event-handler</strong> fixed CORS behaviour not aligned with CORS spec (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4512">#4512</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/dd368fa3eb08a86c2d5aad3cf9b832d7a8288486">dd368fa</a>)</li> <li><strong>event-handler</strong> run global middleware on all requests for REST API (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4507">#4507</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/49d5f8a4f36a5af26c573f7706347f34ec70689e">49d5f8a</a>)</li> </ul> <h3>Improvements</h3> <ul> <li><strong>event-handler</strong> rename HttpErrorCodes to HttpStatusCodes (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4543">#4543</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e53aa8816325f21510706e3f9e62fb0a76692915">e53aa88</a>)</li> <li><strong>event-handler</strong> made error handler responses versatile (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4536">#4536</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f08b366b79152d338ebefb5a25caacade6846919">f08b366</a>)</li> <li><strong>event-handler</strong> changed path parameter in middleware and routehandler signature (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4532">#4532</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/278fca0491ce9cb955326523557c3ddf9d03dbc5">278fca0</a>)</li> <li><strong>event-handler</strong> change the Middleware and RequestContext signatures (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4530">#4530</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a05c07411629d1e23a9cb3fec8a78cf23bd8dd0c">a05c074</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>event-handler</strong> implemented route prefixes in HTTP event handler (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4523">#4523</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/89138542cd9e195555299f401646ae94d0bb50ee">8913854</a>)</li> <li><strong>event-handler</strong> throw error when middleware does not await next() (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4511">#4511</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b0b43e862fb189941fe9db220580884e7707d541">b0b43e8</a>)</li> <li><strong>event-handler</strong> add CORS middleware support (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4477">#4477</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/972cd1f86b6ea01c93abef5e6cde7876360196f1">972cd1f</a>)</li> <li><strong>event-handler</strong> added compress middleware for the REST API event handler (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4495">#4495</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/320e0dcaa07476de3b7d07209ef27379b9d4900a">320e0dc</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f38af1db92473327776fc3128bccad145062e354"><code>f38af1d</code></a> chore(ci): bump version to 2.27.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4544">#4544</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/72cf1cd046fa37abb5148aa9ed5f3244ca5db1ac"><code>72cf1cd</code></a> docs(event-handler): update to new APIs before release (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4542">#4542</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e53aa8816325f21510706e3f9e62fb0a76692915"><code>e53aa88</code></a> improv(event-handler): rename HttpErrorCodes to HttpStatusCodes (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4543">#4543</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3d1255c145f85709b8ab4c4ec9e143ceb2a26ec9"><code>3d1255c</code></a> docs(idempotency): fix dataKeywordArgument reference and remove unused test c...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f08b366b79152d338ebefb5a25caacade6846919"><code>f08b366</code></a> improv(event-handler): made error handler responses versatile (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4536">#4536</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/fd156aa04806b3de37c16efb07bef111d411d31a"><code>fd156aa</code></a> chore(ci): add <code>registry-url</code> to <code>setup-node</code> steps to fix Scorecard packagin...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d281d46cbdd2e813005c5b5174aa017ace8f0671"><code>d281d46</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/4527">#4527</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/278fca0491ce9cb955326523557c3ddf9d03dbc5"><code>278fca0</code></a> improv(event-handler): changed path parameter in middleware and routehandler ...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7ea49c7dbc84d48da6ca214e367a5c612c583cc9"><code>7ea49c7</code></a> chore(deps): bump the aws-sdk-v3 group across 1 directory with 62 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4">#4</a>...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a05c07411629d1e23a9cb3fec8a78cf23bd8dd0c"><code>a05c074</code></a> improv(event-handler): change the Middleware and RequestContext signatures (#...</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.26.1...v2.27.0">compare view</a></li> </ul> </details> <br /> Updates `@aws-lambda-powertools/tracer` from 2.26.1 to 2.27.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.27.0</h2> <h2>Summary</h2> <p>We're excited to announce an update to our Event Handler utility, featuring new middleware for CORS (Cross-Origin Resource Sharing) configuration and automatic response compression. We have also added support for Route Prefixes which allows you to avoid repeating a shared prefix in each route definition.</p> <p>We've listened to your feedback and also made some slight changes to the type signature in the handlers to improve developer experience.</p> <p>We have also made the error handlers more versatile by allowing <a href="https://developer.mozilla.org/en-US/docs/Web/API/Response">a Response object</a> or a JavaScript object to be returned from the error handler.</p> <p>⭐ Congratulations <a href="https://github.com/guillemcomerma"><code>@​guillemcomerma</code></a> for their first PR merged in the project, and thank you to <a href="https://github.com/shrivarshapoojari"><code>@​shrivarshapoojari</code></a> and <a href="https://github.com/dani-abib"><code>@​dani-abib</code></a> for their contributions 🎉</p> <h3>CORS Middleware</h3> <blockquote> <p><a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/event-handler/rest/#cors">Docs</a></p> </blockquote> <p>The CORS middleware ensures CORS headers are returned as part of the response when your functions match the path invoked and the Origin matches one of the allowed values.</p> <pre lang="typescript"><code>import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest'; import { cors } from '@aws-lambda-powertools/event-handler/experimental-rest/middleware'; import type { Context } from 'aws-lambda'; <p>const app = new Router();</p> <p>app.use(<br /> cors({<br /> origin: '<a href="https://example.com">https://example.com</a>',<br /> maxAge: 300,<br /> })<br /> );</p> <p>app.get('/todos/:todoId', async ({ params: { todoId } }) =&gt; {<br /> const todo = await getTodoById(todoId);<br /> return { todo };<br /> });</p> <p>export const handler = async (event: unknown, context: Context) =&gt;<br /> app.resolve(event, context);</p> <p>/**<br /> When invoked from a valid origin, this returns:</p> <p>{<br /> &quot;statusCode&quot;: 200,<br /> &quot;headers&quot;: {<br /> &quot;access-control-allow-credentials&quot;: &quot;false&quot;,<br /> &quot;access-control-allow-origin&quot;: &quot;<a href="https://example.com">https://example.com</a>&quot;,<br /> &quot;content-type&quot;: &quot;application/json&quot;<br /> },<br /> &quot;multiValueHeaders&quot;: {<br /> &lt;/tr&gt;&lt;/table&gt;<br /> </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.26.1...v2.27.0">2.27.0</a> (2025-09-24)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>batch</strong> fixed the build issue with Batch processor due to missing dependencies (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4498">#4498</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ef67b43921f1d67b06b3257fb0f96c74e0d6dbae">ef67b43</a>)</li> <li><strong>event-handler</strong> fixed CORS behaviour not aligned with CORS spec (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4512">#4512</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/dd368fa3eb08a86c2d5aad3cf9b832d7a8288486">dd368fa</a>)</li> <li><strong>event-handler</strong> run global middleware on all requests for REST API (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4507">#4507</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/49d5f8a4f36a5af26c573f7706347f34ec70689e">49d5f8a</a>)</li> </ul> <h3>Improvements</h3> <ul> <li><strong>event-handler</strong> rename HttpErrorCodes to HttpStatusCodes (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4543">#4543</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e53aa8816325f21510706e3f9e62fb0a76692915">e53aa88</a>)</li> <li><strong>event-handler</strong> made error handler responses versatile (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4536">#4536</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f08b366b79152d338ebefb5a25caacade6846919">f08b366</a>)</li> <li><strong>event-handler</strong> changed path parameter in middleware and routehandler signature (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4532">#4532</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/278fca0491ce9cb955326523557c3ddf9d03dbc5">278fca0</a>)</li> <li><strong>event-handler</strong> change the Middleware and RequestContext signatures (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4530">#4530</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a05c07411629d1e23a9cb3fec8a78cf23bd8dd0c">a05c074</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>event-handler</strong> implemented route prefixes in HTTP event handler (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4523">#4523</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/89138542cd9e195555299f401646ae94d0bb50ee">8913854</a>)</li> <li><strong>event-handler</strong> throw error when middleware does not await next() (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4511">#4511</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b0b43e862fb189941fe9db220580884e7707d541">b0b43e8</a>)</li> <li><strong>event-handler</strong> add CORS middleware support (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4477">#4477</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/972cd1f86b6ea01c93abef5e6cde7876360196f1">972cd1f</a>)</li> <li><strong>event-handler</strong> added compress middleware for the REST API event handler (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4495">#4495</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/320e0dcaa07476de3b7d07209ef27379b9d4900a">320e0dc</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f38af1db92473327776fc3128bccad145062e354"><code>f38af1d</code></a> chore(ci): bump version to 2.27.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4544">#4544</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/72cf1cd046fa37abb5148aa9ed5f3244ca5db1ac"><code>72cf1cd</code></a> docs(event-handler): update to new APIs before release (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4542">#4542</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e53aa8816325f21510706e3f9e62fb0a76692915"><code>e53aa88</code></a> improv(event-handler): rename HttpErrorCodes to HttpStatusCodes (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4543">#4543</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3d1255c145f85709b8ab4c4ec9e143ceb2a26ec9"><code>3d1255c</code></a> docs(idempotency): fix dataKeywordArgument reference and remove unused test c...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f08b366b79152d338ebefb5a25caacade6846919"><code>f08b366</code></a> improv(event-handler): made error handler responses versatile (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4536">#4536</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/fd156aa04806b3de37c16efb07bef111d411d31a"><code>fd156aa</code></a> chore(ci): add <code>registry-url</code> to <code>setup-node</code> steps to fix Scorecard packagin...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d281d46cbdd2e813005c5b5174aa017ace8f0671"><code>d281d46</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/4527">#4527</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/278fca0491ce9cb955326523557c3ddf9d03dbc5"><code>278fca0</code></a> improv(event-handler): changed path parameter in middleware and routehandler ...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7ea49c7dbc84d48da6ca214e367a5c612c583cc9"><code>7ea49c7</code></a> chore(deps): bump the aws-sdk-v3 group across 1 directory with 62 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4">#4</a>...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a05c07411629d1e23a9cb3fec8a78cf23bd8dd0c"><code>a05c074</code></a> improv(event-handler): change the Middleware and RequestContext signatures (#...</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.26.1...v2.27.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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7add6a5 commit 1bfe414

File tree

3 files changed

+33
-33
lines changed

3 files changed

+33
-33
lines changed

lambdas/functions/control-plane/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"dependencies": {
3333
"@aws-github-runner/aws-powertools-util": "*",
3434
"@aws-github-runner/aws-ssm-util": "*",
35-
"@aws-lambda-powertools/parameters": "^2.26.1",
35+
"@aws-lambda-powertools/parameters": "^2.27.0",
3636
"@aws-sdk/client-ec2": "^3.895.0",
3737
"@aws-sdk/client-sqs": "^3.895.0",
3838
"@middy/core": "^6.4.1",

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"body-parser": "^2.2.0"
2121
},
2222
"dependencies": {
23-
"@aws-lambda-powertools/logger": "^2.26.1",
24-
"@aws-lambda-powertools/metrics": "^2.26.1",
25-
"@aws-lambda-powertools/tracer": "^2.26.1",
23+
"@aws-lambda-powertools/logger": "^2.27.0",
24+
"@aws-lambda-powertools/metrics": "^2.27.0",
25+
"@aws-lambda-powertools/tracer": "^2.27.0",
2626
"aws-lambda": "^1.0.7"
2727
},
2828
"nx": {

lambdas/yarn.lock

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ __metadata:
128128
version: 0.0.0-use.local
129129
resolution: "@aws-github-runner/aws-powertools-util@workspace:libs/aws-powertools-util"
130130
dependencies:
131-
"@aws-lambda-powertools/logger": "npm:^2.26.1"
132-
"@aws-lambda-powertools/metrics": "npm:^2.26.1"
133-
"@aws-lambda-powertools/tracer": "npm:^2.26.1"
131+
"@aws-lambda-powertools/logger": "npm:^2.27.0"
132+
"@aws-lambda-powertools/metrics": "npm:^2.27.0"
133+
"@aws-lambda-powertools/tracer": "npm:^2.27.0"
134134
"@types/aws-lambda": "npm:^8.10.152"
135135
"@types/node": "npm:^22.16.5"
136136
aws-lambda: "npm:^1.0.7"
@@ -158,7 +158,7 @@ __metadata:
158158
dependencies:
159159
"@aws-github-runner/aws-powertools-util": "npm:*"
160160
"@aws-github-runner/aws-ssm-util": "npm:*"
161-
"@aws-lambda-powertools/parameters": "npm:^2.26.1"
161+
"@aws-lambda-powertools/parameters": "npm:^2.27.0"
162162
"@aws-sdk/client-ec2": "npm:^3.895.0"
163163
"@aws-sdk/client-sqs": "npm:^3.895.0"
164164
"@aws-sdk/types": "npm:^3.893.0"
@@ -242,50 +242,50 @@ __metadata:
242242
languageName: unknown
243243
linkType: soft
244244

245-
"@aws-lambda-powertools/commons@npm:2.26.1":
246-
version: 2.26.1
247-
resolution: "@aws-lambda-powertools/commons@npm:2.26.1"
248-
checksum: 10c0/09af888e0843bac9100c7e5b97cd7d0693803d64d92c445a53278a910bd140c8f44fcc0a28c5ba54b789708da5cb3f05fd7ef074849014553f8b542bd72bddff
245+
"@aws-lambda-powertools/commons@npm:2.27.0":
246+
version: 2.27.0
247+
resolution: "@aws-lambda-powertools/commons@npm:2.27.0"
248+
checksum: 10c0/b0e3ff68c10b1f33caa86e784bcf10aad53f74e5c68399b3cb037862b7b2f5f11c2c464b8f6fbd0245bdfe18daf099be0b9836382549cb5b36cfb0a2ea99e7e2
249249
languageName: node
250250
linkType: hard
251251

252-
"@aws-lambda-powertools/logger@npm:^2.26.1":
253-
version: 2.26.1
254-
resolution: "@aws-lambda-powertools/logger@npm:2.26.1"
252+
"@aws-lambda-powertools/logger@npm:^2.27.0":
253+
version: 2.27.0
254+
resolution: "@aws-lambda-powertools/logger@npm:2.27.0"
255255
dependencies:
256-
"@aws-lambda-powertools/commons": "npm:2.26.1"
256+
"@aws-lambda-powertools/commons": "npm:2.27.0"
257257
lodash.merge: "npm:^4.6.2"
258258
peerDependencies:
259-
"@aws-lambda-powertools/jmespath": 2.26.1
259+
"@aws-lambda-powertools/jmespath": 2.27.0
260260
"@middy/core": 4.x || 5.x || 6.x
261261
peerDependenciesMeta:
262262
"@aws-lambda-powertools/jmespath":
263263
optional: true
264264
"@middy/core":
265265
optional: true
266-
checksum: 10c0/05e7eb63209e31e2bf63aeff3dcc9d934e3cad884ed95a5c848144a48c00699b3125df5315b050061cd5caf96df5312cf4a360ef3dc22fdbd498de5997bb6bb3
266+
checksum: 10c0/841dee5ca70d48c2af8fa76b5e1d0388b9b2c328b60221122959299606c4bea6ad6ade4a062baced22a32c7d51c5b02de69755c349826c59421d3a82706bcbba
267267
languageName: node
268268
linkType: hard
269269

270-
"@aws-lambda-powertools/metrics@npm:^2.26.1":
271-
version: 2.26.1
272-
resolution: "@aws-lambda-powertools/metrics@npm:2.26.1"
270+
"@aws-lambda-powertools/metrics@npm:^2.27.0":
271+
version: 2.27.0
272+
resolution: "@aws-lambda-powertools/metrics@npm:2.27.0"
273273
dependencies:
274-
"@aws-lambda-powertools/commons": "npm:2.26.1"
274+
"@aws-lambda-powertools/commons": "npm:2.27.0"
275275
peerDependencies:
276276
"@middy/core": 4.x || 5.x || 6.x
277277
peerDependenciesMeta:
278278
"@middy/core":
279279
optional: true
280-
checksum: 10c0/7cf050be24ebb897ad31ada4701c5f8cc78a6237ae3eba604b77d0c772edd4e927581b6d8a447283dcf3aab906d0e1078b400d3f3ad17b771987ef73dae6ff87
280+
checksum: 10c0/6d657731e1264056558544cdf2b7decb59caf9147bab11cbe0ee9167759f950fb53c2d3d782de6b377c3a821e5fabbf1ec4ab499d761d8b9f990c64da445d9ef
281281
languageName: node
282282
linkType: hard
283283

284-
"@aws-lambda-powertools/parameters@npm:^2.26.1":
285-
version: 2.26.1
286-
resolution: "@aws-lambda-powertools/parameters@npm:2.26.1"
284+
"@aws-lambda-powertools/parameters@npm:^2.27.0":
285+
version: 2.27.0
286+
resolution: "@aws-lambda-powertools/parameters@npm:2.27.0"
287287
dependencies:
288-
"@aws-lambda-powertools/commons": "npm:2.26.1"
288+
"@aws-lambda-powertools/commons": "npm:2.27.0"
289289
peerDependencies:
290290
"@aws-sdk/client-appconfigdata": ">=3.x"
291291
"@aws-sdk/client-dynamodb": ">=3.x"
@@ -306,22 +306,22 @@ __metadata:
306306
optional: true
307307
"@middy/core":
308308
optional: true
309-
checksum: 10c0/a437479b47268cbe9c9a9912161e9f65e491313aee523cdd41560904040a54b8d50018e47edef781b97839551ba6c46b7aa7059f7482f76df8c262f4a473b415
309+
checksum: 10c0/cac56a20bd2b7c00a11540cee7d985474dc344b7b89170921f4273d84904414be272890a87e5c640b2b0c6d86dd30579f243fd38cccd557a1b1dc86df3e8cdc7
310310
languageName: node
311311
linkType: hard
312312

313-
"@aws-lambda-powertools/tracer@npm:^2.26.1":
314-
version: 2.26.1
315-
resolution: "@aws-lambda-powertools/tracer@npm:2.26.1"
313+
"@aws-lambda-powertools/tracer@npm:^2.27.0":
314+
version: 2.27.0
315+
resolution: "@aws-lambda-powertools/tracer@npm:2.27.0"
316316
dependencies:
317-
"@aws-lambda-powertools/commons": "npm:2.26.1"
317+
"@aws-lambda-powertools/commons": "npm:2.27.0"
318318
aws-xray-sdk-core: "npm:^3.10.3"
319319
peerDependencies:
320320
"@middy/core": 4.x || 5.x || 6.x
321321
peerDependenciesMeta:
322322
"@middy/core":
323323
optional: true
324-
checksum: 10c0/a3534eaafd255832babfbdb3ff039075ec6cffe2e0e1d5f6db2c40b7022482cedbfdf7cbb660fb393ae6490da0e9e9077d8e8a638cd5553bd68d790066ba4f96
324+
checksum: 10c0/850b5bbfda802c99bddf3b701640bc8d3c92f817fcdbaed4b296d838b5e8022f596bde4ed5520dbf61630d715940e6f0bb1bd233088919287ad339d5be4b3cb0
325325
languageName: node
326326
linkType: hard
327327

0 commit comments

Comments
 (0)