Skip to content

Commit d4e5ee4

Browse files
fix(lambda): bump the aws-powertools group in /lambdas with 4 updates (#4675)
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.23.0 to 2.24.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.24.0</h2> <h2>Summary</h2> <p>We’ve listened to <a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3951">your feedback</a> and starting from this release of Parser we support only <a href="https://zod.dev/v4">Zod v4</a> for all our built-in schemas and envelopes. Additionally the utility got a power up and it now supports schemas written using <a href="https://github.com/standard-schema/standard-schema">Standard Schema</a> 🔥.</p> <p>We’ve also fixed a bug in Tracer that prevented requests made via proxies to be traced correctly and another bug in Metrics that caused dimension sets to be added correctly to the metrics data object..</p> <p>🌟 Congratulations to <a href="https://github.com/chetan9518"><code>@​chetan9518</code></a>, <a href="https://github.com/sdangol"><code>@​sdangol</code></a>, and <a href="https://github.com/matteofigus"><code>@​matteofigus</code></a> for their first PRs merged in the project 🎉</p> <h3>Using Parser with Standard Schema</h3> <blockquote> <p><a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/parser/">Docs</a></p> </blockquote> <p>You can now use schemas written using <a href="https://valibot.dev/">Valibot</a> or other <a href="https://github.com/standard-schema/standard-schema">Standard Schema</a>-compatible parsing library to parse incoming events using the <code>parser</code> Middy.js middleware or TypeScript class method decorator. This is useful if your codebase is already relying on one of these libraries or you want to have full control over the bundle size.</p> <p>Note that our <a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/parser/#built-in-schemas">built-in schemas</a> and <a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/parser/#built-in-envelopes">envelopes</a> are still defined only using Zod. If you would like us to support other libraries like Valibot please <a href="https://github.com/aws-powertools/powertools-lambda-typescript/issues/new?template=feature_request.yml">open an issue</a> and we will consider it based on the community's feedback.</p> <p>If you are using Zod v3 and need more time to migrate, you can continue using Parser v2.23.0 as long as needed.</p> <pre lang="ts"><code>import { Logger } from '@aws-lambda-powertools/logger'; import { parser } from '@aws-lambda-powertools/parser/middleware'; import middy from '@middy/core'; import { array, number, object, optional, pipe, string, toMinValue, } from 'valibot'; <p>const logger = new Logger();</p> <p>const orderSchema = object({<br /> id: pipe(number(), toMinValue(0)),<br /> description: string(),<br /> items: array(<br /> object({<br /> id: pipe(number(), toMinValue(0)),<br /> quantity: pipe(number(), toMinValue(1)),<br /> description: string(),<br /> })<br /> ),<br /> optionalField: optional(string()),<br /> });</p> <p>export const handler = middy()<br /> .use(parser({ schema: orderSchema }))<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.23.0...v2.24.0">2.24.0</a> (2025-07-15)</h2> <h3>Improvements</h3> <ul> <li><strong>metrics</strong> optimize <code>addDimensions</code> method to avoid O(n²) complexity (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4156">#4156</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3982b4a6b25e82fa1b5001c73d238cf62eda1137">3982b4a</a>)</li> <li><strong>tracer</strong> replace class-based env access with functional helpers (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4146">#4146</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/51d9b988488aee01de337669dbfc68d0ab7af9dd">51d9b98</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>metrics</strong> addDimensions() documentation and tests (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3964">#3964</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a80163614e4a0ef7106beaa5cf91161d50a09fea">a801636</a>)</li> <li><strong>tracer</strong> skip tracing CONNECT requests (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4148">#4148</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a147c3b46ff975ed3e94722e21e79e65ae2bbc78">a147c3b</a>)</li> <li><strong>parser</strong> remove nullable from md5OfMessageAttributes in SqsRecordSchema (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4165">#4165</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d6cbde0fe977bb1ce011a80f31369e5f7161df08">d6cbde0</a>)</li> </ul> <h3>Maintenance</h3> <ul> <li><strong>batch</strong> exclude deprecated code from coverage (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4152">#4152</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/30bbf5af3ae78fdb4b837ad9b4322a9e90f15f57">30bbf5a</a>)</li> <li><strong>parser</strong> remove deprecated parser type (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4154">#4154</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a59db36e7816d8587b91acf282582204ccc78845">a59db36</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>parser</strong> support Standard Schema and upgrade to Zod v4 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4164">#4164</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/67549f61cd77e23a66e3338576efc96839833329">67549f6</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/501dc1781976e025f108acf9dd6549b38efae444"><code>501dc17</code></a> chore: bump to 2.24.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4172">#4172</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/57902be48bf9f9752ce0358ce9b758c003b61066"><code>57902be</code></a> chore(deps): bump <code>@​types/node</code> from 24.0.12 to 24.0.13 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4167">#4167</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c7ebae6ff6ede4b66ddd358737b8980aadc72a77"><code>c7ebae6</code></a> chore(deps): bump esbuild from 0.25.5 to 0.25.6 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4166">#4166</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d6cbde0fe977bb1ce011a80f31369e5f7161df08"><code>d6cbde0</code></a> fix(parser): remove nullable from md5OfMessageAttributes in SqsRecordSchema (...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/67549f61cd77e23a66e3338576efc96839833329"><code>67549f6</code></a> feat(parser): support Standard Schema and upgrade to Zod v4 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4164">#4164</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/191c84636a85a1f4d132dbe6f3b6427c13e03e4c"><code>191c846</code></a> chore(deps-dev): bump <code>@​redis/client</code> from 5.5.6 to 5.6.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4162">#4162</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/947247118fe23d0c40e627c0eb4a25029e0455a1"><code>9472471</code></a> chore(deps): bump the aws-sdk-v3 group across 1 directory with 9 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4159">#4159</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/06622c3db8df3bd9784d4ee27c394dfee0a8216f"><code>06622c3</code></a> chore(deps): bump vscode/devcontainers/javascript-node from <code>0d29e5f</code> to `eac...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/af44b7c03e6f58846054754c64bffba1975c2072"><code>af44b7c</code></a> chore(deps-dev): bump zod from 3.25.67 to 3.25.76 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4158">#4158</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c9a1f7b3033c715b098cfc4e8f6f7b03e1921825"><code>c9a1f7b</code></a> chore(deps): bump <code>@​types/node</code> from 24.0.10 to 24.0.12 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4157">#4157</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0">compare view</a></li> </ul> </details> <br /> Updates `@aws-lambda-powertools/logger` from 2.23.0 to 2.24.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.24.0</h2> <h2>Summary</h2> <p>We’ve listened to <a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3951">your feedback</a> and starting from this release of Parser we support only <a href="https://zod.dev/v4">Zod v4</a> for all our built-in schemas and envelopes. Additionally the utility got a power up and it now supports schemas written using <a href="https://github.com/standard-schema/standard-schema">Standard Schema</a> 🔥.</p> <p>We’ve also fixed a bug in Tracer that prevented requests made via proxies to be traced correctly and another bug in Metrics that caused dimension sets to be added correctly to the metrics data object..</p> <p>🌟 Congratulations to <a href="https://github.com/chetan9518"><code>@​chetan9518</code></a>, <a href="https://github.com/sdangol"><code>@​sdangol</code></a>, and <a href="https://github.com/matteofigus"><code>@​matteofigus</code></a> for their first PRs merged in the project 🎉</p> <h3>Using Parser with Standard Schema</h3> <blockquote> <p><a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/parser/">Docs</a></p> </blockquote> <p>You can now use schemas written using <a href="https://valibot.dev/">Valibot</a> or other <a href="https://github.com/standard-schema/standard-schema">Standard Schema</a>-compatible parsing library to parse incoming events using the <code>parser</code> Middy.js middleware or TypeScript class method decorator. This is useful if your codebase is already relying on one of these libraries or you want to have full control over the bundle size.</p> <p>Note that our <a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/parser/#built-in-schemas">built-in schemas</a> and <a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/parser/#built-in-envelopes">envelopes</a> are still defined only using Zod. If you would like us to support other libraries like Valibot please <a href="https://github.com/aws-powertools/powertools-lambda-typescript/issues/new?template=feature_request.yml">open an issue</a> and we will consider it based on the community's feedback.</p> <p>If you are using Zod v3 and need more time to migrate, you can continue using Parser v2.23.0 as long as needed.</p> <pre lang="ts"><code>import { Logger } from '@aws-lambda-powertools/logger'; import { parser } from '@aws-lambda-powertools/parser/middleware'; import middy from '@middy/core'; import { array, number, object, optional, pipe, string, toMinValue, } from 'valibot'; <p>const logger = new Logger();</p> <p>const orderSchema = object({<br /> id: pipe(number(), toMinValue(0)),<br /> description: string(),<br /> items: array(<br /> object({<br /> id: pipe(number(), toMinValue(0)),<br /> quantity: pipe(number(), toMinValue(1)),<br /> description: string(),<br /> })<br /> ),<br /> optionalField: optional(string()),<br /> });</p> <p>export const handler = middy()<br /> .use(parser({ schema: orderSchema }))<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.23.0...v2.24.0">2.24.0</a> (2025-07-15)</h2> <h3>Improvements</h3> <ul> <li><strong>metrics</strong> optimize <code>addDimensions</code> method to avoid O(n²) complexity (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4156">#4156</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3982b4a6b25e82fa1b5001c73d238cf62eda1137">3982b4a</a>)</li> <li><strong>tracer</strong> replace class-based env access with functional helpers (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4146">#4146</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/51d9b988488aee01de337669dbfc68d0ab7af9dd">51d9b98</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>metrics</strong> addDimensions() documentation and tests (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3964">#3964</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a80163614e4a0ef7106beaa5cf91161d50a09fea">a801636</a>)</li> <li><strong>tracer</strong> skip tracing CONNECT requests (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4148">#4148</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a147c3b46ff975ed3e94722e21e79e65ae2bbc78">a147c3b</a>)</li> <li><strong>parser</strong> remove nullable from md5OfMessageAttributes in SqsRecordSchema (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4165">#4165</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d6cbde0fe977bb1ce011a80f31369e5f7161df08">d6cbde0</a>)</li> </ul> <h3>Maintenance</h3> <ul> <li><strong>batch</strong> exclude deprecated code from coverage (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4152">#4152</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/30bbf5af3ae78fdb4b837ad9b4322a9e90f15f57">30bbf5a</a>)</li> <li><strong>parser</strong> remove deprecated parser type (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4154">#4154</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a59db36e7816d8587b91acf282582204ccc78845">a59db36</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>parser</strong> support Standard Schema and upgrade to Zod v4 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4164">#4164</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/67549f61cd77e23a66e3338576efc96839833329">67549f6</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/501dc1781976e025f108acf9dd6549b38efae444"><code>501dc17</code></a> chore: bump to 2.24.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4172">#4172</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/57902be48bf9f9752ce0358ce9b758c003b61066"><code>57902be</code></a> chore(deps): bump <code>@​types/node</code> from 24.0.12 to 24.0.13 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4167">#4167</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c7ebae6ff6ede4b66ddd358737b8980aadc72a77"><code>c7ebae6</code></a> chore(deps): bump esbuild from 0.25.5 to 0.25.6 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4166">#4166</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d6cbde0fe977bb1ce011a80f31369e5f7161df08"><code>d6cbde0</code></a> fix(parser): remove nullable from md5OfMessageAttributes in SqsRecordSchema (...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/67549f61cd77e23a66e3338576efc96839833329"><code>67549f6</code></a> feat(parser): support Standard Schema and upgrade to Zod v4 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4164">#4164</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/191c84636a85a1f4d132dbe6f3b6427c13e03e4c"><code>191c846</code></a> chore(deps-dev): bump <code>@​redis/client</code> from 5.5.6 to 5.6.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4162">#4162</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/947247118fe23d0c40e627c0eb4a25029e0455a1"><code>9472471</code></a> chore(deps): bump the aws-sdk-v3 group across 1 directory with 9 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4159">#4159</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/06622c3db8df3bd9784d4ee27c394dfee0a8216f"><code>06622c3</code></a> chore(deps): bump vscode/devcontainers/javascript-node from <code>0d29e5f</code> to `eac...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/af44b7c03e6f58846054754c64bffba1975c2072"><code>af44b7c</code></a> chore(deps-dev): bump zod from 3.25.67 to 3.25.76 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4158">#4158</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c9a1f7b3033c715b098cfc4e8f6f7b03e1921825"><code>c9a1f7b</code></a> chore(deps): bump <code>@​types/node</code> from 24.0.10 to 24.0.12 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4157">#4157</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0">compare view</a></li> </ul> </details> <br /> Updates `@aws-lambda-powertools/metrics` from 2.23.0 to 2.24.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.24.0</h2> <h2>Summary</h2> <p>We’ve listened to <a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3951">your feedback</a> and starting from this release of Parser we support only <a href="https://zod.dev/v4">Zod v4</a> for all our built-in schemas and envelopes. Additionally the utility got a power up and it now supports schemas written using <a href="https://github.com/standard-schema/standard-schema">Standard Schema</a> 🔥.</p> <p>We’ve also fixed a bug in Tracer that prevented requests made via proxies to be traced correctly and another bug in Metrics that caused dimension sets to be added correctly to the metrics data object..</p> <p>🌟 Congratulations to <a href="https://github.com/chetan9518"><code>@​chetan9518</code></a>, <a href="https://github.com/sdangol"><code>@​sdangol</code></a>, and <a href="https://github.com/matteofigus"><code>@​matteofigus</code></a> for their first PRs merged in the project 🎉</p> <h3>Using Parser with Standard Schema</h3> <blockquote> <p><a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/parser/">Docs</a></p> </blockquote> <p>You can now use schemas written using <a href="https://valibot.dev/">Valibot</a> or other <a href="https://github.com/standard-schema/standard-schema">Standard Schema</a>-compatible parsing library to parse incoming events using the <code>parser</code> Middy.js middleware or TypeScript class method decorator. This is useful if your codebase is already relying on one of these libraries or you want to have full control over the bundle size.</p> <p>Note that our <a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/parser/#built-in-schemas">built-in schemas</a> and <a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/parser/#built-in-envelopes">envelopes</a> are still defined only using Zod. If you would like us to support other libraries like Valibot please <a href="https://github.com/aws-powertools/powertools-lambda-typescript/issues/new?template=feature_request.yml">open an issue</a> and we will consider it based on the community's feedback.</p> <p>If you are using Zod v3 and need more time to migrate, you can continue using Parser v2.23.0 as long as needed.</p> <pre lang="ts"><code>import { Logger } from '@aws-lambda-powertools/logger'; import { parser } from '@aws-lambda-powertools/parser/middleware'; import middy from '@middy/core'; import { array, number, object, optional, pipe, string, toMinValue, } from 'valibot'; <p>const logger = new Logger();</p> <p>const orderSchema = object({<br /> id: pipe(number(), toMinValue(0)),<br /> description: string(),<br /> items: array(<br /> object({<br /> id: pipe(number(), toMinValue(0)),<br /> quantity: pipe(number(), toMinValue(1)),<br /> description: string(),<br /> })<br /> ),<br /> optionalField: optional(string()),<br /> });</p> <p>export const handler = middy()<br /> .use(parser({ schema: orderSchema }))<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.23.0...v2.24.0">2.24.0</a> (2025-07-15)</h2> <h3>Improvements</h3> <ul> <li><strong>metrics</strong> optimize <code>addDimensions</code> method to avoid O(n²) complexity (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4156">#4156</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3982b4a6b25e82fa1b5001c73d238cf62eda1137">3982b4a</a>)</li> <li><strong>tracer</strong> replace class-based env access with functional helpers (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4146">#4146</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/51d9b988488aee01de337669dbfc68d0ab7af9dd">51d9b98</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>metrics</strong> addDimensions() documentation and tests (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3964">#3964</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a80163614e4a0ef7106beaa5cf91161d50a09fea">a801636</a>)</li> <li><strong>tracer</strong> skip tracing CONNECT requests (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4148">#4148</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a147c3b46ff975ed3e94722e21e79e65ae2bbc78">a147c3b</a>)</li> <li><strong>parser</strong> remove nullable from md5OfMessageAttributes in SqsRecordSchema (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4165">#4165</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d6cbde0fe977bb1ce011a80f31369e5f7161df08">d6cbde0</a>)</li> </ul> <h3>Maintenance</h3> <ul> <li><strong>batch</strong> exclude deprecated code from coverage (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4152">#4152</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/30bbf5af3ae78fdb4b837ad9b4322a9e90f15f57">30bbf5a</a>)</li> <li><strong>parser</strong> remove deprecated parser type (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4154">#4154</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a59db36e7816d8587b91acf282582204ccc78845">a59db36</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>parser</strong> support Standard Schema and upgrade to Zod v4 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4164">#4164</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/67549f61cd77e23a66e3338576efc96839833329">67549f6</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/501dc1781976e025f108acf9dd6549b38efae444"><code>501dc17</code></a> chore: bump to 2.24.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4172">#4172</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/57902be48bf9f9752ce0358ce9b758c003b61066"><code>57902be</code></a> chore(deps): bump <code>@​types/node</code> from 24.0.12 to 24.0.13 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4167">#4167</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c7ebae6ff6ede4b66ddd358737b8980aadc72a77"><code>c7ebae6</code></a> chore(deps): bump esbuild from 0.25.5 to 0.25.6 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4166">#4166</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d6cbde0fe977bb1ce011a80f31369e5f7161df08"><code>d6cbde0</code></a> fix(parser): remove nullable from md5OfMessageAttributes in SqsRecordSchema (...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/67549f61cd77e23a66e3338576efc96839833329"><code>67549f6</code></a> feat(parser): support Standard Schema and upgrade to Zod v4 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4164">#4164</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/191c84636a85a1f4d132dbe6f3b6427c13e03e4c"><code>191c846</code></a> chore(deps-dev): bump <code>@​redis/client</code> from 5.5.6 to 5.6.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4162">#4162</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/947247118fe23d0c40e627c0eb4a25029e0455a1"><code>9472471</code></a> chore(deps): bump the aws-sdk-v3 group across 1 directory with 9 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4159">#4159</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/06622c3db8df3bd9784d4ee27c394dfee0a8216f"><code>06622c3</code></a> chore(deps): bump vscode/devcontainers/javascript-node from <code>0d29e5f</code> to `eac...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/af44b7c03e6f58846054754c64bffba1975c2072"><code>af44b7c</code></a> chore(deps-dev): bump zod from 3.25.67 to 3.25.76 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4158">#4158</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c9a1f7b3033c715b098cfc4e8f6f7b03e1921825"><code>c9a1f7b</code></a> chore(deps): bump <code>@​types/node</code> from 24.0.10 to 24.0.12 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4157">#4157</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.0">compare view</a></li> </ul> </details> <br /> Updates `@aws-lambda-powertools/tracer` from 2.23.0 to 2.24.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.24.0</h2> <h2>Summary</h2> <p>We’ve listened to <a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3951">your feedback</a> and starting from this release of Parser we support only <a href="https://zod.dev/v4">Zod v4</a> for all our built-in schemas and envelopes. Additionally the utility got a power up and it now supports schemas written using <a href="https://github.com/standard-schema/standard-schema">Standard Schema</a> 🔥.</p> <p>We’ve also fixed a bug in Tracer that prevented requests made via proxies to be traced correctly and another bug in Metrics that caused dimension sets to be added correctly to the metrics data object..</p> <p>🌟 Congratulations to <a href="https://github.com/chetan9518"><code>@​chetan9518</code></a>, <a href="https://github.com/sdangol"><code>@​sdangol</code></a>, and <a href="https://github.com/matteofigus"><code>@​matteofigus</code></a> for their first PRs merged in the project 🎉</p> <h3>Using Parser with Standard Schema</h3> <blockquote> <p><a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/parser/">Docs</a></p> </blockquote> <p>You can now use schemas written using <a href="https://valibot.dev/">Valibot</a> or other <a href="https://github.com/standard-schema/standard-schema">Standard Schema</a>-compatible parsing library to parse incoming events using the <code>parser</code> Middy.js middleware or TypeScript class method decorator. This is useful if your codebase is already relying on one of these libraries or you want to have full control over the bundle size.</p> <p>Note that our <a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/parser/#built-in-schemas">built-in schemas</a> and <a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/parser/#built-in-envelopes">envelopes</a> are still defined only using Zod. If you would like us to support other libraries like Valibot please <a href="https://github.com/aws-powertools/powertools-lambda-typescript/issues/new?template=feature_request.yml">open an issue</a> and we will consider it based on the community's feedback.</p> <p>If you are using Zod v3 and need more time to migrate, you can continue using Parser v2.23.0 as long as needed.</p> <pre lang="ts"><code>import { Logger } from '@aws-lambda-powertools/logger'; import { parser } from '@aws-lambda-powertools/parser/middleware'; import middy from '@middy/core'; import { array, number, object, optional, pipe, string, toMinValue, } from 'valibot'; <p>const logger = new Logger();</p> <p>const orderSchema = object({<br /> id: pipe(number(), toMinValue(0)),<br /> description: string(),<br /> items: array(<br /> object({<br /> id: pipe(number(), toMinValue(0)),<br /> quantity: pipe(number(), toMinValue(1)),<br /> description: string(),<br /> })<br /> ),<br /> optionalField: optional(string()),<br /> });</p> <p>export const handler = middy()<br /> .use(parser({ schema: orderSchema }))<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.23.0...v2.24.0">2.24.0</a> (2025-07-15)</h2> <h3>Improvements</h3> <ul> <li><strong>metrics</strong> optimize <code>addDimensions</code> method to avoid O(n²) complexity (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4156">#4156</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3982b4a6b25e82fa1b5001c73d238cf62eda1137">3982b4a</a>)</li> <li><strong>tracer</strong> replace class-based env access with functional helpers (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4146">#4146</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/51d9b988488aee01de337669dbfc68d0ab7af9dd">51d9b98</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>metrics</strong> addDimensions() documentation and tests (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3964">#3964</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a80163614e4a0ef7106beaa5cf91161d50a09fea">a801636</a>)</li> <li><strong>tracer</strong> skip tracing CONNECT requests (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4148">#4148</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a147c3b46ff975ed3e94722e21e79e65ae2bbc78">a147c3b</a>)</li> <li><strong>parser</strong> remove nullable from md5OfMessageAttributes in SqsRecordSchema (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4165">#4165</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d6cbde0fe977bb1ce011a80f31369e5f7161df08">d6cbde0</a>)</li> </ul> <h3>Maintenance</h3> <ul> <li><strong>batch</strong> exclude deprecated code from coverage (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4152">#4152</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/30bbf5af3ae78fdb4b837ad9b4322a9e90f15f57">30bbf5a</a>)</li> <li><strong>parser</strong> remove deprecated parser type (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4154">#4154</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a59db36e7816d8587b91acf282582204ccc78845">a59db36</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>parser</strong> support Standard Schema and upgrade to Zod v4 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4164">#4164</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/67549f61cd77e23a66e3338576efc96839833329">67549f6</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/501dc1781976e025f108acf9dd6549b38efae444"><code>501dc17</code></a> chore: bump to 2.24.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4172">#4172</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/57902be48bf9f9752ce0358ce9b758c003b61066"><code>57902be</code></a> chore(deps): bump <code>@​types/node</code> from 24.0.12 to 24.0.13 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4167">#4167</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c7ebae6ff6ede4b66ddd358737b8980aadc72a77"><code>c7ebae6</code></a> chore(deps): bump esbuild from 0.25.5 to 0.25.6 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4166">#4166</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/d6cbde0fe977bb1ce011a80f31369e5f7161df08"><code>d6cbde0</code></a> fix(parser): remove nullable from md5OfMessageAttributes in SqsRecordSchema (...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/67549f61cd77e23a66e3338576efc96839833329"><code>67549f6</code></a> feat(parser): support Standard Schema and upgrade to Zod v4 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4164">#4164</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/191c84636a85a1f4d132dbe6f3b6427c13e03e4c"><code>191c846</code></a> chore(deps-dev): bump <code>@​redis/client</code> from 5.5.6 to 5.6.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4162">#4162</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/947247118fe23d0c40e627c0eb4a25029e0455a1"><code>9472471</code></a> chore(deps): bump the aws-sdk-v3 group across 1 directory with 9 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4159">#4159</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/06622c3db8df3bd9784d4ee27c394dfee0a8216f"><code>06622c3</code></a> chore(deps): bump vscode/devcontainers/javascript-node from <code>0d29e5f</code> to `eac...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/af44b7c03e6f58846054754c64bffba1975c2072"><code>af44b7c</code></a> chore(deps-dev): bump zod from 3.25.67 to 3.25.76 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4158">#4158</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/c9a1f7b3033c715b098cfc4e8f6f7b03e1921825"><code>c9a1f7b</code></a> chore(deps): bump <code>@​types/node</code> from 24.0.10 to 24.0.12 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4157">#4157</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.23.0...v2.24.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 8e6c422 commit d4e5ee4

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.23.0",
35+
"@aws-lambda-powertools/parameters": "^2.24.0",
3636
"@aws-sdk/client-ec2": "^3.850.0",
3737
"@aws-sdk/client-sqs": "^3.848.0",
3838
"@middy/core": "^6.1.6",

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.23.0",
24-
"@aws-lambda-powertools/metrics": "^2.23.0",
25-
"@aws-lambda-powertools/tracer": "^2.23.0",
23+
"@aws-lambda-powertools/logger": "^2.24.0",
24+
"@aws-lambda-powertools/metrics": "^2.24.0",
25+
"@aws-lambda-powertools/tracer": "^2.24.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
@@ -141,9 +141,9 @@ __metadata:
141141
version: 0.0.0-use.local
142142
resolution: "@aws-github-runner/aws-powertools-util@workspace:libs/aws-powertools-util"
143143
dependencies:
144-
"@aws-lambda-powertools/logger": "npm:^2.23.0"
145-
"@aws-lambda-powertools/metrics": "npm:^2.23.0"
146-
"@aws-lambda-powertools/tracer": "npm:^2.23.0"
144+
"@aws-lambda-powertools/logger": "npm:^2.24.0"
145+
"@aws-lambda-powertools/metrics": "npm:^2.24.0"
146+
"@aws-lambda-powertools/tracer": "npm:^2.24.0"
147147
"@types/aws-lambda": "npm:^8.10.147"
148148
"@types/node": "npm:^22.16.5"
149149
aws-lambda: "npm:^1.0.7"
@@ -171,7 +171,7 @@ __metadata:
171171
dependencies:
172172
"@aws-github-runner/aws-powertools-util": "npm:*"
173173
"@aws-github-runner/aws-ssm-util": "npm:*"
174-
"@aws-lambda-powertools/parameters": "npm:^2.23.0"
174+
"@aws-lambda-powertools/parameters": "npm:^2.24.0"
175175
"@aws-sdk/client-ec2": "npm:^3.850.0"
176176
"@aws-sdk/client-sqs": "npm:^3.848.0"
177177
"@aws-sdk/types": "npm:^3.840.0"
@@ -255,50 +255,50 @@ __metadata:
255255
languageName: unknown
256256
linkType: soft
257257

258-
"@aws-lambda-powertools/commons@npm:^2.23.0":
259-
version: 2.23.0
260-
resolution: "@aws-lambda-powertools/commons@npm:2.23.0"
261-
checksum: 10c0/797cfd5bc29e97e256cd047e1813023758acefd21060ec0f408bbde392e6568f67cc1c8861e3d55537319ff160dbbb35ebc9768ea38c98b81b90424869f4d58e
258+
"@aws-lambda-powertools/commons@npm:^2.24.0":
259+
version: 2.24.0
260+
resolution: "@aws-lambda-powertools/commons@npm:2.24.0"
261+
checksum: 10c0/77ee48a5852a2cf7a71354772c4d7d76782a8dab9c0847177a280e0a4f242cfad159621c0fb97ba346805008cc6d4681e4e05396a19712164696fd3357631dd1
262262
languageName: node
263263
linkType: hard
264264

265-
"@aws-lambda-powertools/logger@npm:^2.23.0":
266-
version: 2.23.0
267-
resolution: "@aws-lambda-powertools/logger@npm:2.23.0"
265+
"@aws-lambda-powertools/logger@npm:^2.24.0":
266+
version: 2.24.0
267+
resolution: "@aws-lambda-powertools/logger@npm:2.24.0"
268268
dependencies:
269-
"@aws-lambda-powertools/commons": "npm:^2.23.0"
269+
"@aws-lambda-powertools/commons": "npm:^2.24.0"
270270
lodash.merge: "npm:^4.6.2"
271271
peerDependencies:
272-
"@aws-lambda-powertools/jmespath": 2.x
272+
"@aws-lambda-powertools/jmespath": 2.24.0
273273
"@middy/core": 4.x || 5.x || 6.x
274274
peerDependenciesMeta:
275275
"@aws-lambda-powertools/jmespath":
276276
optional: true
277277
"@middy/core":
278278
optional: true
279-
checksum: 10c0/0d2ef1c1b2dc88b6a9e6e45f0fb282d9f3534bc1c9d3ddcb3dbd1b14321b024f8fb23a58cd32b290033561c59ba58f198241eb3eed0ac4ceea741198a6129103
279+
checksum: 10c0/ae91e5c506589518b738e421056005f3e9fef8eb1f0a110bb8515e93b890d456fb5fddcee39187393846f77e684075ca312c8f31181f2825f9b6b779f4c3285c
280280
languageName: node
281281
linkType: hard
282282

283-
"@aws-lambda-powertools/metrics@npm:^2.23.0":
284-
version: 2.23.0
285-
resolution: "@aws-lambda-powertools/metrics@npm:2.23.0"
283+
"@aws-lambda-powertools/metrics@npm:^2.24.0":
284+
version: 2.24.0
285+
resolution: "@aws-lambda-powertools/metrics@npm:2.24.0"
286286
dependencies:
287-
"@aws-lambda-powertools/commons": "npm:^2.23.0"
287+
"@aws-lambda-powertools/commons": "npm:^2.24.0"
288288
peerDependencies:
289289
"@middy/core": 4.x || 5.x || 6.x
290290
peerDependenciesMeta:
291291
"@middy/core":
292292
optional: true
293-
checksum: 10c0/88b59018d197f539f33a5d439d7d0d85dc69049c92b3f3f480f0761ed5a048ea48c16b09d98b58878d9f555b5789e4f0a811660a8eb65531731cce058033e037
293+
checksum: 10c0/c3f9b9b1cb299aebf885f53caddcfe50d86ed6a30b275a1f7adf3fbcf6de2717ce67808c7c02b30f877603c308b3a263b6e4bd8c96bee3a7b949702af81dd45f
294294
languageName: node
295295
linkType: hard
296296

297-
"@aws-lambda-powertools/parameters@npm:^2.23.0":
298-
version: 2.23.0
299-
resolution: "@aws-lambda-powertools/parameters@npm:2.23.0"
297+
"@aws-lambda-powertools/parameters@npm:^2.24.0":
298+
version: 2.24.0
299+
resolution: "@aws-lambda-powertools/parameters@npm:2.24.0"
300300
dependencies:
301-
"@aws-lambda-powertools/commons": "npm:^2.23.0"
301+
"@aws-lambda-powertools/commons": "npm:^2.24.0"
302302
peerDependencies:
303303
"@aws-sdk/client-appconfigdata": ">=3.x"
304304
"@aws-sdk/client-dynamodb": ">=3.x"
@@ -319,22 +319,22 @@ __metadata:
319319
optional: true
320320
"@middy/core":
321321
optional: true
322-
checksum: 10c0/5263ccf5ab54215fbc44d531065d9b434d7f4b63050664c3d3611c12f9546e100db923f9ae4e0efb5e71477a25d502ef0ee9ae5b6de0e2530070565433f14653
322+
checksum: 10c0/b373b641791d3bf2a490a1cb66fc2fc97c65a6d80ca75af41f60739d5e063fe05ad0eeb55d758333a3a3ff844db20d7a2b001dae008a5d19f076a784d78e420f
323323
languageName: node
324324
linkType: hard
325325

326-
"@aws-lambda-powertools/tracer@npm:^2.23.0":
327-
version: 2.23.0
328-
resolution: "@aws-lambda-powertools/tracer@npm:2.23.0"
326+
"@aws-lambda-powertools/tracer@npm:^2.24.0":
327+
version: 2.24.0
328+
resolution: "@aws-lambda-powertools/tracer@npm:2.24.0"
329329
dependencies:
330-
"@aws-lambda-powertools/commons": "npm:^2.23.0"
330+
"@aws-lambda-powertools/commons": "npm:^2.24.0"
331331
aws-xray-sdk-core: "npm:^3.10.3"
332332
peerDependencies:
333333
"@middy/core": 4.x || 5.x || 6.x
334334
peerDependenciesMeta:
335335
"@middy/core":
336336
optional: true
337-
checksum: 10c0/634dbbe2324b8090b596a13761ffd5640927f3e8efba170ec9532a9edf648a043a8f7c7ca980fd22e40f830dcb50027d713210b10a1398a008af9c0ee660f19e
337+
checksum: 10c0/269061679eb259fdc134e3b4b049616a5bd761168542c18a148a2e3ff8ab086a6593bf2b5117e9adf785b8084be5335121fecdaaab35474d746d0cf484ee5fa8
338338
languageName: node
339339
linkType: hard
340340

0 commit comments

Comments
 (0)