Commit d4e5ee4
authored
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 />
</tr></table><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 />
</tr></table><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 />
</tr></table><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 />
</tr></table><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- lambdas
- functions/control-plane
- libs/aws-powertools-util
3 files changed
+33
-33
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
24 | | - | |
25 | | - | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
141 | 141 | | |
142 | 142 | | |
143 | 143 | | |
144 | | - | |
145 | | - | |
146 | | - | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
147 | 147 | | |
148 | 148 | | |
149 | 149 | | |
| |||
171 | 171 | | |
172 | 172 | | |
173 | 173 | | |
174 | | - | |
| 174 | + | |
175 | 175 | | |
176 | 176 | | |
177 | 177 | | |
| |||
255 | 255 | | |
256 | 256 | | |
257 | 257 | | |
258 | | - | |
259 | | - | |
260 | | - | |
261 | | - | |
| 258 | + | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
262 | 262 | | |
263 | 263 | | |
264 | 264 | | |
265 | | - | |
266 | | - | |
267 | | - | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
268 | 268 | | |
269 | | - | |
| 269 | + | |
270 | 270 | | |
271 | 271 | | |
272 | | - | |
| 272 | + | |
273 | 273 | | |
274 | 274 | | |
275 | 275 | | |
276 | 276 | | |
277 | 277 | | |
278 | 278 | | |
279 | | - | |
| 279 | + | |
280 | 280 | | |
281 | 281 | | |
282 | 282 | | |
283 | | - | |
284 | | - | |
285 | | - | |
| 283 | + | |
| 284 | + | |
| 285 | + | |
286 | 286 | | |
287 | | - | |
| 287 | + | |
288 | 288 | | |
289 | 289 | | |
290 | 290 | | |
291 | 291 | | |
292 | 292 | | |
293 | | - | |
| 293 | + | |
294 | 294 | | |
295 | 295 | | |
296 | 296 | | |
297 | | - | |
298 | | - | |
299 | | - | |
| 297 | + | |
| 298 | + | |
| 299 | + | |
300 | 300 | | |
301 | | - | |
| 301 | + | |
302 | 302 | | |
303 | 303 | | |
304 | 304 | | |
| |||
319 | 319 | | |
320 | 320 | | |
321 | 321 | | |
322 | | - | |
| 322 | + | |
323 | 323 | | |
324 | 324 | | |
325 | 325 | | |
326 | | - | |
327 | | - | |
328 | | - | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
329 | 329 | | |
330 | | - | |
| 330 | + | |
331 | 331 | | |
332 | 332 | | |
333 | 333 | | |
334 | 334 | | |
335 | 335 | | |
336 | 336 | | |
337 | | - | |
| 337 | + | |
338 | 338 | | |
339 | 339 | | |
340 | 340 | | |
| |||
0 commit comments