Skip to content

Commit f6f87c0

Browse files
fix(lambda): bump the aws-powertools group in /lambdas with 4 updates (#4663)
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.22.0 to 2.23.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.23.0</h2> <h2>Summary</h2> <p>We're excited to announce a new resolver for AppSync GraphQL APIs in the Event Handler utility. It simplifies routing and processing of events in AWS Lambda functions by allowing you to define resolvers for specific GraphQL types and fields.</p> <p>We’ve also fixed two bugs in Logger: 1/ one causing timestamps to be incorrectly formatted when using non-UTC timezone and around midnight, and 2/ another causing temporary keys to not be properly cleared when using the <code>injectLambdaContext()</code> Middy.js middleware.</p> <p>Finally, starting from this release we're publishing our Lambda layers in the AWS China Beijing Region operated by Sinnet.</p> <p>🌟 A huge thank you to <a href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a> for the amazing work on the AppSync GraphQL resolver 🎉</p> <h3>Working AppSync GraphQL APIs</h3> <h4>Key Features</h4> <ul> <li>Route events based on GraphQL type and field keys</li> <li>Automatically parse API arguments to function parameters</li> <li>Handle GraphQL responses and errors in the expected format</li> </ul> <p>To get started install the Event Handler utility by running:</p> <pre lang="sh"><code>npm install @aws-lambda-powertools/event-handler </code></pre> <h4>Registering a resolver</h4> <blockquote> <p><a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/event-handler/appsync-graphql/">Docs</a></p> </blockquote> <p>You can register functions to match GraphQL types and fields with one of three methods:</p> <ul> <li><code>onQuery()</code> - Register a function to handle a GraphQL Query type.</li> <li><code>onMutation()</code> - Register a function to handle a GraphQL Mutation type.</li> <li><code>resolver()</code> - Register a function to handle a GraphQL type and field.</li> </ul> <p>Your resolvers receive the parsed arguments from the GraphQL request as their first parameter. We will take care of parsing the response or catching errors and returning them in the expected format.</p> <p>You can register a resolver for a <code>Query</code> type, you can use the <code>onQuery()</code> method. This method allows you to define a function that will be invoked when a GraphQL Query is made.</p> <pre lang="ts"><code>import { AppSyncGraphQLResolver } from '@aws-lambda-powertools/event-handler/appsync-graphql'; import { Logger } from '@aws-lambda-powertools/logger'; import type { Context } from 'aws-lambda'; <p>const logger = new Logger({<br /> serviceName: 'TodoManager',<br /> });<br /> const app = new AppSyncGraphQLResolver({ logger });</p> <p>app.onQuery&lt;{ id: string }&gt;('getTodo', async ({ id }) =&gt; {<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> <h1><a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.22.0...v2.23.0">2.23.0</a> (2025-07-02)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>ci:</strong> Partition workflows (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4084">#4084</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/40195ddc36f343c3b7905b51f2b82842d05fce58">40195dd</a>)</li> <li><strong>logger:</strong> reset keys on error in middleware (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4122">#4122</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e310c50fe12463a5e3759ee1ecd61e0467fbc6a4">e310c50</a>)</li> <li><strong>logger:</strong> set <code>hourCycle</code> to h23 when tz is not UTC (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4102">#4102</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54b08636474f11fefcb295cd04511d3f46be4382">54b0863</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>event-handler:</strong> add single resolver functionality for AppSync GraphQL API (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3999">#3999</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b91383f6ec82cff9196ccc4e0c9e88d285eb567d">b91383f</a>)</li> <li><strong>event-handler:</strong> expose event &amp; context as object (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4113">#4113</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7e74c9e356d97372c4f1ee5ca83d16dfefea42f4">7e74c9e</a>)</li> <li><strong>event-handler:</strong> support <code>onQuery</code> and <code>onMutation</code> handlers (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4111">#4111</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/263db2d74e558adb9b088174a5500de6c29488d0">263db2d</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b8e6d9361c78e58921ed88e90cc4aec21971479e"><code>b8e6d93</code></a> chore(ci): bump version to 2.23.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4123">#4123</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e310c50fe12463a5e3759ee1ecd61e0467fbc6a4"><code>e310c50</code></a> fix(logger): reset keys on error in middleware (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4122">#4122</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7c3196f423c1c35a52da2df0db0744a9e5b896b6"><code>7c3196f</code></a> docs(event-handler): add AppSync GraphQL docs page (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4120">#4120</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7e74c9e356d97372c4f1ee5ca83d16dfefea42f4"><code>7e74c9e</code></a> feat(event-handler): expose event &amp; context as object (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4113">#4113</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/263db2d74e558adb9b088174a5500de6c29488d0"><code>263db2d</code></a> feat(event-handler): support <code>onQuery</code> and <code>onMutation</code> handlers (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4111">#4111</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/dfc31da7ef5ca5a225bdba3c9883c7cf45270df8"><code>dfc31da</code></a> chore(deps): bump <code>@​types/node</code> from 24.0.7 to 24.0.8 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4107">#4107</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5d783ee9b447f086d5644dddb19712f9db83ddd8"><code>5d783ee</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/4106">#4106</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3359dbe556e3dd654d9e2af553cb41d9600a2495"><code>3359dbe</code></a> chore(deps): bump mkdocs-material from 9.6.14 to 9.6.15 in /docs (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4104">#4104</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/94a690ed9c5208427e5593ef94a082ac8ba4e756"><code>94a690e</code></a> chore(deps): bump squidfunk/mkdocs-material from <code>eb04b60</code> to <code>0bfdba4</code> in /d...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f6374e127ca176e5bee1397a3cabe5471dc06d4b"><code>f6374e1</code></a> chore(deps): bump the aws-cdk group across 1 directory with 2 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4108">#4108</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.22.0...v2.23.0">compare view</a></li> </ul> </details> <br /> Updates `@aws-lambda-powertools/logger` from 2.22.0 to 2.23.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.23.0</h2> <h2>Summary</h2> <p>We're excited to announce a new resolver for AppSync GraphQL APIs in the Event Handler utility. It simplifies routing and processing of events in AWS Lambda functions by allowing you to define resolvers for specific GraphQL types and fields.</p> <p>We’ve also fixed two bugs in Logger: 1/ one causing timestamps to be incorrectly formatted when using non-UTC timezone and around midnight, and 2/ another causing temporary keys to not be properly cleared when using the <code>injectLambdaContext()</code> Middy.js middleware.</p> <p>Finally, starting from this release we're publishing our Lambda layers in the AWS China Beijing Region operated by Sinnet.</p> <p>🌟 A huge thank you to <a href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a> for the amazing work on the AppSync GraphQL resolver 🎉</p> <h3>Working AppSync GraphQL APIs</h3> <h4>Key Features</h4> <ul> <li>Route events based on GraphQL type and field keys</li> <li>Automatically parse API arguments to function parameters</li> <li>Handle GraphQL responses and errors in the expected format</li> </ul> <p>To get started install the Event Handler utility by running:</p> <pre lang="sh"><code>npm install @aws-lambda-powertools/event-handler </code></pre> <h4>Registering a resolver</h4> <blockquote> <p><a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/event-handler/appsync-graphql/">Docs</a></p> </blockquote> <p>You can register functions to match GraphQL types and fields with one of three methods:</p> <ul> <li><code>onQuery()</code> - Register a function to handle a GraphQL Query type.</li> <li><code>onMutation()</code> - Register a function to handle a GraphQL Mutation type.</li> <li><code>resolver()</code> - Register a function to handle a GraphQL type and field.</li> </ul> <p>Your resolvers receive the parsed arguments from the GraphQL request as their first parameter. We will take care of parsing the response or catching errors and returning them in the expected format.</p> <p>You can register a resolver for a <code>Query</code> type, you can use the <code>onQuery()</code> method. This method allows you to define a function that will be invoked when a GraphQL Query is made.</p> <pre lang="ts"><code>import { AppSyncGraphQLResolver } from '@aws-lambda-powertools/event-handler/appsync-graphql'; import { Logger } from '@aws-lambda-powertools/logger'; import type { Context } from 'aws-lambda'; <p>const logger = new Logger({<br /> serviceName: 'TodoManager',<br /> });<br /> const app = new AppSyncGraphQLResolver({ logger });</p> <p>app.onQuery&lt;{ id: string }&gt;('getTodo', async ({ id }) =&gt; {<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> <h1><a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.22.0...v2.23.0">2.23.0</a> (2025-07-02)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>ci:</strong> Partition workflows (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4084">#4084</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/40195ddc36f343c3b7905b51f2b82842d05fce58">40195dd</a>)</li> <li><strong>logger:</strong> reset keys on error in middleware (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4122">#4122</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e310c50fe12463a5e3759ee1ecd61e0467fbc6a4">e310c50</a>)</li> <li><strong>logger:</strong> set <code>hourCycle</code> to h23 when tz is not UTC (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4102">#4102</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54b08636474f11fefcb295cd04511d3f46be4382">54b0863</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>event-handler:</strong> add single resolver functionality for AppSync GraphQL API (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3999">#3999</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b91383f6ec82cff9196ccc4e0c9e88d285eb567d">b91383f</a>)</li> <li><strong>event-handler:</strong> expose event &amp; context as object (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4113">#4113</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7e74c9e356d97372c4f1ee5ca83d16dfefea42f4">7e74c9e</a>)</li> <li><strong>event-handler:</strong> support <code>onQuery</code> and <code>onMutation</code> handlers (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4111">#4111</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/263db2d74e558adb9b088174a5500de6c29488d0">263db2d</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b8e6d9361c78e58921ed88e90cc4aec21971479e"><code>b8e6d93</code></a> chore(ci): bump version to 2.23.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4123">#4123</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e310c50fe12463a5e3759ee1ecd61e0467fbc6a4"><code>e310c50</code></a> fix(logger): reset keys on error in middleware (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4122">#4122</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7c3196f423c1c35a52da2df0db0744a9e5b896b6"><code>7c3196f</code></a> docs(event-handler): add AppSync GraphQL docs page (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4120">#4120</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7e74c9e356d97372c4f1ee5ca83d16dfefea42f4"><code>7e74c9e</code></a> feat(event-handler): expose event &amp; context as object (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4113">#4113</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/263db2d74e558adb9b088174a5500de6c29488d0"><code>263db2d</code></a> feat(event-handler): support <code>onQuery</code> and <code>onMutation</code> handlers (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4111">#4111</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/dfc31da7ef5ca5a225bdba3c9883c7cf45270df8"><code>dfc31da</code></a> chore(deps): bump <code>@​types/node</code> from 24.0.7 to 24.0.8 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4107">#4107</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5d783ee9b447f086d5644dddb19712f9db83ddd8"><code>5d783ee</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/4106">#4106</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3359dbe556e3dd654d9e2af553cb41d9600a2495"><code>3359dbe</code></a> chore(deps): bump mkdocs-material from 9.6.14 to 9.6.15 in /docs (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4104">#4104</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/94a690ed9c5208427e5593ef94a082ac8ba4e756"><code>94a690e</code></a> chore(deps): bump squidfunk/mkdocs-material from <code>eb04b60</code> to <code>0bfdba4</code> in /d...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f6374e127ca176e5bee1397a3cabe5471dc06d4b"><code>f6374e1</code></a> chore(deps): bump the aws-cdk group across 1 directory with 2 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4108">#4108</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.22.0...v2.23.0">compare view</a></li> </ul> </details> <br /> Updates `@aws-lambda-powertools/metrics` from 2.22.0 to 2.23.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.23.0</h2> <h2>Summary</h2> <p>We're excited to announce a new resolver for AppSync GraphQL APIs in the Event Handler utility. It simplifies routing and processing of events in AWS Lambda functions by allowing you to define resolvers for specific GraphQL types and fields.</p> <p>We’ve also fixed two bugs in Logger: 1/ one causing timestamps to be incorrectly formatted when using non-UTC timezone and around midnight, and 2/ another causing temporary keys to not be properly cleared when using the <code>injectLambdaContext()</code> Middy.js middleware.</p> <p>Finally, starting from this release we're publishing our Lambda layers in the AWS China Beijing Region operated by Sinnet.</p> <p>🌟 A huge thank you to <a href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a> for the amazing work on the AppSync GraphQL resolver 🎉</p> <h3>Working AppSync GraphQL APIs</h3> <h4>Key Features</h4> <ul> <li>Route events based on GraphQL type and field keys</li> <li>Automatically parse API arguments to function parameters</li> <li>Handle GraphQL responses and errors in the expected format</li> </ul> <p>To get started install the Event Handler utility by running:</p> <pre lang="sh"><code>npm install @aws-lambda-powertools/event-handler </code></pre> <h4>Registering a resolver</h4> <blockquote> <p><a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/event-handler/appsync-graphql/">Docs</a></p> </blockquote> <p>You can register functions to match GraphQL types and fields with one of three methods:</p> <ul> <li><code>onQuery()</code> - Register a function to handle a GraphQL Query type.</li> <li><code>onMutation()</code> - Register a function to handle a GraphQL Mutation type.</li> <li><code>resolver()</code> - Register a function to handle a GraphQL type and field.</li> </ul> <p>Your resolvers receive the parsed arguments from the GraphQL request as their first parameter. We will take care of parsing the response or catching errors and returning them in the expected format.</p> <p>You can register a resolver for a <code>Query</code> type, you can use the <code>onQuery()</code> method. This method allows you to define a function that will be invoked when a GraphQL Query is made.</p> <pre lang="ts"><code>import { AppSyncGraphQLResolver } from '@aws-lambda-powertools/event-handler/appsync-graphql'; import { Logger } from '@aws-lambda-powertools/logger'; import type { Context } from 'aws-lambda'; <p>const logger = new Logger({<br /> serviceName: 'TodoManager',<br /> });<br /> const app = new AppSyncGraphQLResolver({ logger });</p> <p>app.onQuery&lt;{ id: string }&gt;('getTodo', async ({ id }) =&gt; {<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> <h1><a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.22.0...v2.23.0">2.23.0</a> (2025-07-02)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>ci:</strong> Partition workflows (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4084">#4084</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/40195ddc36f343c3b7905b51f2b82842d05fce58">40195dd</a>)</li> <li><strong>logger:</strong> reset keys on error in middleware (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4122">#4122</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e310c50fe12463a5e3759ee1ecd61e0467fbc6a4">e310c50</a>)</li> <li><strong>logger:</strong> set <code>hourCycle</code> to h23 when tz is not UTC (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4102">#4102</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54b08636474f11fefcb295cd04511d3f46be4382">54b0863</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>event-handler:</strong> add single resolver functionality for AppSync GraphQL API (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3999">#3999</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b91383f6ec82cff9196ccc4e0c9e88d285eb567d">b91383f</a>)</li> <li><strong>event-handler:</strong> expose event &amp; context as object (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4113">#4113</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7e74c9e356d97372c4f1ee5ca83d16dfefea42f4">7e74c9e</a>)</li> <li><strong>event-handler:</strong> support <code>onQuery</code> and <code>onMutation</code> handlers (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4111">#4111</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/263db2d74e558adb9b088174a5500de6c29488d0">263db2d</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b8e6d9361c78e58921ed88e90cc4aec21971479e"><code>b8e6d93</code></a> chore(ci): bump version to 2.23.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4123">#4123</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e310c50fe12463a5e3759ee1ecd61e0467fbc6a4"><code>e310c50</code></a> fix(logger): reset keys on error in middleware (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4122">#4122</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7c3196f423c1c35a52da2df0db0744a9e5b896b6"><code>7c3196f</code></a> docs(event-handler): add AppSync GraphQL docs page (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4120">#4120</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7e74c9e356d97372c4f1ee5ca83d16dfefea42f4"><code>7e74c9e</code></a> feat(event-handler): expose event &amp; context as object (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4113">#4113</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/263db2d74e558adb9b088174a5500de6c29488d0"><code>263db2d</code></a> feat(event-handler): support <code>onQuery</code> and <code>onMutation</code> handlers (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4111">#4111</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/dfc31da7ef5ca5a225bdba3c9883c7cf45270df8"><code>dfc31da</code></a> chore(deps): bump <code>@​types/node</code> from 24.0.7 to 24.0.8 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4107">#4107</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5d783ee9b447f086d5644dddb19712f9db83ddd8"><code>5d783ee</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/4106">#4106</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3359dbe556e3dd654d9e2af553cb41d9600a2495"><code>3359dbe</code></a> chore(deps): bump mkdocs-material from 9.6.14 to 9.6.15 in /docs (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4104">#4104</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/94a690ed9c5208427e5593ef94a082ac8ba4e756"><code>94a690e</code></a> chore(deps): bump squidfunk/mkdocs-material from <code>eb04b60</code> to <code>0bfdba4</code> in /d...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f6374e127ca176e5bee1397a3cabe5471dc06d4b"><code>f6374e1</code></a> chore(deps): bump the aws-cdk group across 1 directory with 2 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4108">#4108</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.22.0...v2.23.0">compare view</a></li> </ul> </details> <br /> Updates `@aws-lambda-powertools/tracer` from 2.22.0 to 2.23.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.23.0</h2> <h2>Summary</h2> <p>We're excited to announce a new resolver for AppSync GraphQL APIs in the Event Handler utility. It simplifies routing and processing of events in AWS Lambda functions by allowing you to define resolvers for specific GraphQL types and fields.</p> <p>We’ve also fixed two bugs in Logger: 1/ one causing timestamps to be incorrectly formatted when using non-UTC timezone and around midnight, and 2/ another causing temporary keys to not be properly cleared when using the <code>injectLambdaContext()</code> Middy.js middleware.</p> <p>Finally, starting from this release we're publishing our Lambda layers in the AWS China Beijing Region operated by Sinnet.</p> <p>🌟 A huge thank you to <a href="https://github.com/arnabrahman"><code>@​arnabrahman</code></a> for the amazing work on the AppSync GraphQL resolver 🎉</p> <h3>Working AppSync GraphQL APIs</h3> <h4>Key Features</h4> <ul> <li>Route events based on GraphQL type and field keys</li> <li>Automatically parse API arguments to function parameters</li> <li>Handle GraphQL responses and errors in the expected format</li> </ul> <p>To get started install the Event Handler utility by running:</p> <pre lang="sh"><code>npm install @aws-lambda-powertools/event-handler </code></pre> <h4>Registering a resolver</h4> <blockquote> <p><a href="https://docs.powertools.aws.dev/lambda/typescript/latest/features/event-handler/appsync-graphql/">Docs</a></p> </blockquote> <p>You can register functions to match GraphQL types and fields with one of three methods:</p> <ul> <li><code>onQuery()</code> - Register a function to handle a GraphQL Query type.</li> <li><code>onMutation()</code> - Register a function to handle a GraphQL Mutation type.</li> <li><code>resolver()</code> - Register a function to handle a GraphQL type and field.</li> </ul> <p>Your resolvers receive the parsed arguments from the GraphQL request as their first parameter. We will take care of parsing the response or catching errors and returning them in the expected format.</p> <p>You can register a resolver for a <code>Query</code> type, you can use the <code>onQuery()</code> method. This method allows you to define a function that will be invoked when a GraphQL Query is made.</p> <pre lang="ts"><code>import { AppSyncGraphQLResolver } from '@aws-lambda-powertools/event-handler/appsync-graphql'; import { Logger } from '@aws-lambda-powertools/logger'; import type { Context } from 'aws-lambda'; <p>const logger = new Logger({<br /> serviceName: 'TodoManager',<br /> });<br /> const app = new AppSyncGraphQLResolver({ logger });</p> <p>app.onQuery&lt;{ id: string }&gt;('getTodo', async ({ id }) =&gt; {<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> <h1><a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.22.0...v2.23.0">2.23.0</a> (2025-07-02)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>ci:</strong> Partition workflows (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4084">#4084</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/40195ddc36f343c3b7905b51f2b82842d05fce58">40195dd</a>)</li> <li><strong>logger:</strong> reset keys on error in middleware (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4122">#4122</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e310c50fe12463a5e3759ee1ecd61e0467fbc6a4">e310c50</a>)</li> <li><strong>logger:</strong> set <code>hourCycle</code> to h23 when tz is not UTC (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4102">#4102</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/54b08636474f11fefcb295cd04511d3f46be4382">54b0863</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>event-handler:</strong> add single resolver functionality for AppSync GraphQL API (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/3999">#3999</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b91383f6ec82cff9196ccc4e0c9e88d285eb567d">b91383f</a>)</li> <li><strong>event-handler:</strong> expose event &amp; context as object (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4113">#4113</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7e74c9e356d97372c4f1ee5ca83d16dfefea42f4">7e74c9e</a>)</li> <li><strong>event-handler:</strong> support <code>onQuery</code> and <code>onMutation</code> handlers (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4111">#4111</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/263db2d74e558adb9b088174a5500de6c29488d0">263db2d</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/b8e6d9361c78e58921ed88e90cc4aec21971479e"><code>b8e6d93</code></a> chore(ci): bump version to 2.23.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4123">#4123</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e310c50fe12463a5e3759ee1ecd61e0467fbc6a4"><code>e310c50</code></a> fix(logger): reset keys on error in middleware (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4122">#4122</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7c3196f423c1c35a52da2df0db0744a9e5b896b6"><code>7c3196f</code></a> docs(event-handler): add AppSync GraphQL docs page (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4120">#4120</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/7e74c9e356d97372c4f1ee5ca83d16dfefea42f4"><code>7e74c9e</code></a> feat(event-handler): expose event &amp; context as object (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4113">#4113</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/263db2d74e558adb9b088174a5500de6c29488d0"><code>263db2d</code></a> feat(event-handler): support <code>onQuery</code> and <code>onMutation</code> handlers (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4111">#4111</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/dfc31da7ef5ca5a225bdba3c9883c7cf45270df8"><code>dfc31da</code></a> chore(deps): bump <code>@​types/node</code> from 24.0.7 to 24.0.8 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4107">#4107</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5d783ee9b447f086d5644dddb19712f9db83ddd8"><code>5d783ee</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/4106">#4106</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3359dbe556e3dd654d9e2af553cb41d9600a2495"><code>3359dbe</code></a> chore(deps): bump mkdocs-material from 9.6.14 to 9.6.15 in /docs (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4104">#4104</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/94a690ed9c5208427e5593ef94a082ac8ba4e756"><code>94a690e</code></a> chore(deps): bump squidfunk/mkdocs-material from <code>eb04b60</code> to <code>0bfdba4</code> in /d...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f6374e127ca176e5bee1397a3cabe5471dc06d4b"><code>f6374e1</code></a> chore(deps): bump the aws-cdk group across 1 directory with 2 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4108">#4108</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.22.0...v2.23.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> Co-authored-by: Niek Palm <[email protected]>
1 parent 802e955 commit f6f87c0

File tree

3 files changed

+32
-32
lines changed

3 files changed

+32
-32
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.22.0",
35+
"@aws-lambda-powertools/parameters": "^2.23.0",
3636
"@aws-sdk/client-ec2": "^3.844.0",
3737
"@aws-sdk/client-sqs": "^3.844.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.22.0",
24-
"@aws-lambda-powertools/metrics": "^2.22.0",
25-
"@aws-lambda-powertools/tracer": "^2.22.0",
23+
"@aws-lambda-powertools/logger": "^2.23.0",
24+
"@aws-lambda-powertools/metrics": "^2.23.0",
25+
"@aws-lambda-powertools/tracer": "^2.23.0",
2626
"aws-lambda": "^1.0.7"
2727
},
2828
"nx": {

lambdas/yarn.lock

Lines changed: 28 additions & 28 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.22.0"
145-
"@aws-lambda-powertools/metrics": "npm:^2.22.0"
146-
"@aws-lambda-powertools/tracer": "npm:^2.22.0"
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"
147147
"@types/aws-lambda": "npm:^8.10.147"
148148
"@types/node": "npm:^22.14.0"
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.22.0"
174+
"@aws-lambda-powertools/parameters": "npm:^2.23.0"
175175
"@aws-sdk/client-ec2": "npm:^3.844.0"
176176
"@aws-sdk/client-sqs": "npm:^3.844.0"
177177
"@aws-sdk/types": "npm:^3.840.0"
@@ -255,18 +255,18 @@ __metadata:
255255
languageName: unknown
256256
linkType: soft
257257

258-
"@aws-lambda-powertools/commons@npm:^2.22.0":
259-
version: 2.22.0
260-
resolution: "@aws-lambda-powertools/commons@npm:2.22.0"
261-
checksum: 10c0/876f1f410cbfba02d30d0e7a38011491eb5a2a0d02b2d7f399fe49dea5f9979dabe581640b6fe098f5bb8f8ff624c6e3cdc8724e905c8c78000be2e599c609e6
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
262262
languageName: node
263263
linkType: hard
264264

265-
"@aws-lambda-powertools/logger@npm:^2.22.0":
266-
version: 2.22.0
267-
resolution: "@aws-lambda-powertools/logger@npm:2.22.0"
265+
"@aws-lambda-powertools/logger@npm:^2.23.0":
266+
version: 2.23.0
267+
resolution: "@aws-lambda-powertools/logger@npm:2.23.0"
268268
dependencies:
269-
"@aws-lambda-powertools/commons": "npm:^2.22.0"
269+
"@aws-lambda-powertools/commons": "npm:^2.23.0"
270270
lodash.merge: "npm:^4.6.2"
271271
peerDependencies:
272272
"@aws-lambda-powertools/jmespath": 2.x
@@ -276,29 +276,29 @@ __metadata:
276276
optional: true
277277
"@middy/core":
278278
optional: true
279-
checksum: 10c0/a422be2e293f84f73dc3b4af1c9fcd5c089c5752cf47073e6b2b00c8dd36671f447c2e7e0ef1c7da6f6281c8c3fa42451305dd0e8520d3a36a8614a754926395
279+
checksum: 10c0/0d2ef1c1b2dc88b6a9e6e45f0fb282d9f3534bc1c9d3ddcb3dbd1b14321b024f8fb23a58cd32b290033561c59ba58f198241eb3eed0ac4ceea741198a6129103
280280
languageName: node
281281
linkType: hard
282282

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

297-
"@aws-lambda-powertools/parameters@npm:^2.22.0":
298-
version: 2.22.0
299-
resolution: "@aws-lambda-powertools/parameters@npm:2.22.0"
297+
"@aws-lambda-powertools/parameters@npm:^2.23.0":
298+
version: 2.23.0
299+
resolution: "@aws-lambda-powertools/parameters@npm:2.23.0"
300300
dependencies:
301-
"@aws-lambda-powertools/commons": "npm:^2.22.0"
301+
"@aws-lambda-powertools/commons": "npm:^2.23.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/6dec68456fd107f461fae4a16c7aa1ba3b5e9d1925e8b1377758207fa0fc11d044b0a1c7c5f856c9325671216cbf37bdc01a9f358250eb4bc1a3445d18977d98
322+
checksum: 10c0/5263ccf5ab54215fbc44d531065d9b434d7f4b63050664c3d3611c12f9546e100db923f9ae4e0efb5e71477a25d502ef0ee9ae5b6de0e2530070565433f14653
323323
languageName: node
324324
linkType: hard
325325

326-
"@aws-lambda-powertools/tracer@npm:^2.22.0":
327-
version: 2.22.0
328-
resolution: "@aws-lambda-powertools/tracer@npm:2.22.0"
326+
"@aws-lambda-powertools/tracer@npm:^2.23.0":
327+
version: 2.23.0
328+
resolution: "@aws-lambda-powertools/tracer@npm:2.23.0"
329329
dependencies:
330-
"@aws-lambda-powertools/commons": "npm:^2.22.0"
330+
"@aws-lambda-powertools/commons": "npm:^2.23.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/8abe1e71d1726451180d2d1250401e390fe52432046135151e3ee9571d9340baa3fd1b7dc94de5957da4619e52e0eb9e4cdc8a42bba2619a8b8f33e10b60a7a3
337+
checksum: 10c0/634dbbe2324b8090b596a13761ffd5640927f3e8efba170ec9532a9edf648a043a8f7c7ca980fd22e40f830dcb50027d713210b10a1398a008af9c0ee660f19e
338338
languageName: node
339339
linkType: hard
340340

0 commit comments

Comments
 (0)