Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: github-aws-runners/terraform-aws-github-runner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.7.9
Choose a base ref
...
head repository: github-aws-runners/terraform-aws-github-runner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.8.0
Choose a head ref
  • 9 commits
  • 27 files changed
  • 6 contributors

Commits on Oct 3, 2025

  1. fix(lambda): bump the aws-powertools group in /lambdas with 4 updates (

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

    Bumps the octokit group in /lambdas with 3 updates:
    [@octokit/auth-app](https://github.com/octokit/auth-app.js),
    [@octokit/core](https://github.com/octokit/core.js) and
    [@octokit/plugin-throttling](https://github.com/octokit/plugin-throttling.js).
    
    Updates `@octokit/auth-app` from 8.1.0 to 8.1.1
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/octokit/auth-app.js/releases"><code>@​octokit/auth-app</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v8.1.1</h2>
    <h2><a
    href="https://github.com/octokit/auth-app.js/compare/v8.1.0...v8.1.1">8.1.1</a>
    (2025-09-29)</h2>
    <h3>Bug Fixes</h3>
    <ul>
    <li><strong>deps:</strong> update dependency
    <code>@​octokit/types</code> to v15 (<a
    href="https://redirect.github.com/octokit/auth-app.js/issues/721">#721</a>)
    (<a
    href="https://github.com/octokit/auth-app.js/commit/8b76e56918edc0e754d397e42b1b968ec9fad800">8b76e56</a>)</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/octokit/auth-app.js/commit/8b76e56918edc0e754d397e42b1b968ec9fad800"><code>8b76e56</code></a>
    fix(deps): update dependency <code>@​octokit/types</code> to v15 (<a
    href="https://redirect.github.com/octokit/auth-app.js/issues/721">#721</a>)</li>
    <li><a
    href="https://github.com/octokit/auth-app.js/commit/1eb6dbc98053ecd71827edaf0cf47d78444899bb"><code>1eb6dbc</code></a>
    chore(deps): update dependency node to v22 (<a
    href="https://redirect.github.com/octokit/auth-app.js/issues/713">#713</a>)</li>
    <li><a
    href="https://github.com/octokit/auth-app.js/commit/576769682cfc7a7901bab4678edd9cd1c48aa76e"><code>5767696</code></a>
    build(deps): lock file maintenance (<a
    href="https://redirect.github.com/octokit/auth-app.js/issues/715">#715</a>)</li>
    <li>See full diff in <a
    href="https://github.com/octokit/auth-app.js/compare/v8.1.0...v8.1.1">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    Updates `@octokit/core` from 7.0.4 to 7.0.5
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/octokit/core.js/releases"><code>@​octokit/core</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v7.0.5</h2>
    <h2><a
    href="https://github.com/octokit/core.js/compare/v7.0.4...v7.0.5">7.0.5</a>
    (2025-09-29)</h2>
    <h3>Bug Fixes</h3>
    <ul>
    <li><strong>deps:</strong> update octokit dependencies, and
    <code>@​sinonjs/fake-timers</code> (<a
    href="https://redirect.github.com/octokit/core.js/issues/749">#749</a>)
    (<a
    href="https://github.com/octokit/core.js/commit/14d23a1e898b1822a0704632f7e914a201c4c62c">14d23a1</a>)</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/octokit/core.js/commit/14d23a1e898b1822a0704632f7e914a201c4c62c"><code>14d23a1</code></a>
    fix(deps): update octokit dependencies, and
    <code>@​sinonjs/fake-timers</code> (<a
    href="https://redirect.github.com/octokit/core.js/issues/749">#749</a>)</li>
    <li><a
    href="https://github.com/octokit/core.js/commit/e4d0776dbf46235c9e5314ae39796433b4500bb7"><code>e4d0776</code></a>
    ci(action): update actions/setup-node action to v5 (<a
    href="https://redirect.github.com/octokit/core.js/issues/746">#746</a>)</li>
    <li>See full diff in <a
    href="https://github.com/octokit/core.js/compare/v7.0.4...v7.0.5">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    Updates `@octokit/plugin-throttling` from 11.0.1 to 11.0.2
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/octokit/plugin-throttling.js/releases"><code>@​octokit/plugin-throttling</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v11.0.2</h2>
    <h2><a
    href="https://github.com/octokit/plugin-throttling.js/compare/v11.0.1...v11.0.2">11.0.2</a>
    (2025-09-29)</h2>
    <h3>Bug Fixes</h3>
    <ul>
    <li><strong>deps:</strong> update dependency
    <code>@​octokit/types</code> to v15 (<a
    href="https://redirect.github.com/octokit/plugin-throttling.js/issues/802">#802</a>)
    (<a
    href="https://github.com/octokit/plugin-throttling.js/commit/c9ecfea3148957da7b63ea45cacd8edfe1074848">c9ecfea</a>)</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/octokit/plugin-throttling.js/commit/c9ecfea3148957da7b63ea45cacd8edfe1074848"><code>c9ecfea</code></a>
    fix(deps): update dependency <code>@​octokit/types</code> to v15 (<a
    href="https://redirect.github.com/octokit/plugin-throttling.js/issues/802">#802</a>)</li>
    <li><a
    href="https://github.com/octokit/plugin-throttling.js/commit/790adf6c00275f870157351cc05d8b61eebf415c"><code>790adf6</code></a>
    build(deps): lock file maintenance (<a
    href="https://redirect.github.com/octokit/plugin-throttling.js/issues/796">#796</a>)</li>
    <li><a
    href="https://github.com/octokit/plugin-throttling.js/commit/9395a235835bb8453c493d014b2190b59c9e14c4"><code>9395a23</code></a>
    ci(action): update actions/checkout action to v5 (<a
    href="https://redirect.github.com/octokit/plugin-throttling.js/issues/799">#799</a>)</li>
    <li>See full diff in <a
    href="https://github.com/octokit/plugin-throttling.js/compare/v11.0.1...v11.0.2">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>
    dependabot[bot] authored Oct 3, 2025
    Configuration menu
    Copy the full SHA
    73cf01e View commit details
    Browse the repository at this point in the history
  3. chore(deps): bump the github group with 2 updates (#4797)

    Bumps the github group with 2 updates:
    [actions/dependency-review-action](https://github.com/actions/dependency-review-action)
    and [actions/cache](https://github.com/actions/cache).
    
    Updates `actions/dependency-review-action` from 4.7.3 to 4.8.0
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/actions/dependency-review-action/releases">actions/dependency-review-action's
    releases</a>.</em></p>
    <blockquote>
    <h2>v4.8.0</h2>
    <h2>What's Changed</h2>
    <ul>
    <li>Make Ruby Code Scannable by <a
    href="https://github.com/ljones140"><code>@​ljones140</code></a> in <a
    href="https://redirect.github.com/actions/dependency-review-action/pull/978">actions/dependency-review-action#978</a></li>
    <li>Batch some contributions for release by <a
    href="https://github.com/brrygrdn"><code>@​brrygrdn</code></a> in <a
    href="https://redirect.github.com/actions/dependency-review-action/pull/986">actions/dependency-review-action#986</a>
    <ul>
    <li>Make license lists collapsable by <a
    href="https://github.com/jasperkamerling"><code>@​jasperkamerling</code></a></li>
    <li>feat: add large summary handling with artifact upload by <a
    href="https://github.com/MattMencel"><code>@​MattMencel</code></a></li>
    </ul>
    </li>
    </ul>
    <h2>New Contributors</h2>
    <ul>
    <li><a href="https://github.com/ljones140"><code>@​ljones140</code></a>
    made their first contribution in <a
    href="https://redirect.github.com/actions/dependency-review-action/pull/978">actions/dependency-review-action#978</a></li>
    <li><a
    href="https://github.com/jasperkamerling"><code>@​jasperkamerling</code></a>
    made their first contribution in <a
    href="https://redirect.github.com/actions/dependency-review-action/pull/986">actions/dependency-review-action#986</a></li>
    <li><a
    href="https://github.com/MattMencel"><code>@​MattMencel</code></a> made
    their first contribution in <a
    href="https://redirect.github.com/actions/dependency-review-action/pull/986">actions/dependency-review-action#986</a></li>
    </ul>
    <p><strong>Full Changelog</strong>: <a
    href="https://github.com/actions/dependency-review-action/compare/v4...v4.8.0">https://github.com/actions/dependency-review-action/compare/v4...v4.8.0</a></p>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/actions/dependency-review-action/commit/56339e523c0409420f6c2c9a2f4292bbb3c07dd3"><code>56339e5</code></a>
    Merge pull request <a
    href="https://redirect.github.com/actions/dependency-review-action/issues/988">#988</a>
    from actions/brrygrdn/rc-4.8.0</li>
    <li><a
    href="https://github.com/actions/dependency-review-action/commit/1688b745f3910a538a77a31f5a2309ff170ecdcd"><code>1688b74</code></a>
    Bump to a 4.8.0</li>
    <li><a
    href="https://github.com/actions/dependency-review-action/commit/31c9f175b9cbbdee66d6ab34ed35e2c827f8be10"><code>31c9f17</code></a>
    Merge pull request <a
    href="https://redirect.github.com/actions/dependency-review-action/issues/987">#987</a>
    from actions/rc-4.7.4</li>
    <li><a
    href="https://github.com/actions/dependency-review-action/commit/eacde7836ead152e8af82e10138feaa50ae0294f"><code>eacde78</code></a>
    Update version</li>
    <li><a
    href="https://github.com/actions/dependency-review-action/commit/81510090e4e4774cc9d4ff2af72ff390708bdb77"><code>8151009</code></a>
    Merge pull request <a
    href="https://redirect.github.com/actions/dependency-review-action/issues/986">#986</a>
    from actions/brrygrdn/rc-4.7.4</li>
    <li><a
    href="https://github.com/actions/dependency-review-action/commit/b472ec914bf273ff9095ebb352bd828b2b7ff4d0"><code>b472ec9</code></a>
    Add a quick regression test for the artefact summary</li>
    <li><a
    href="https://github.com/actions/dependency-review-action/commit/e0cedc52dc1d7fbf4e769dab9dec786861c0cb74"><code>e0cedc5</code></a>
    feat: add large summary handling with artifact upload</li>
    <li><a
    href="https://github.com/actions/dependency-review-action/commit/e3fdf0f899f995cee00fdc50aa1c89ca0dd09eba"><code>e3fdf0f</code></a>
    This ensures large allow or deny lists don't create huge comments</li>
    <li><a
    href="https://github.com/actions/dependency-review-action/commit/6fad41793215e16e31faa120c584d320a07b88de"><code>6fad417</code></a>
    Merge pull request <a
    href="https://redirect.github.com/actions/dependency-review-action/issues/978">#978</a>
    from actions/ljones140/make-ruby-code-scannable</li>
    <li><a
    href="https://github.com/actions/dependency-review-action/commit/e86e9692adabac43c2fbf1b13e125e8b9821fa19"><code>e86e969</code></a>
    Update scripts/scan_pr_lib.rb</li>
    <li>Additional commits viewable in <a
    href="https://github.com/actions/dependency-review-action/compare/595b5aeba73380359d98a5e087f648dbb0edce1b...56339e523c0409420f6c2c9a2f4292bbb3c07dd3">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    Updates `actions/cache` from 4.2.4 to 4.3.0
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/actions/cache/releases">actions/cache's
    releases</a>.</em></p>
    <blockquote>
    <h2>v4.3.0</h2>
    <h2>What's Changed</h2>
    <ul>
    <li>Add note on runner versions by <a
    href="https://github.com/GhadimiR"><code>@​GhadimiR</code></a> in <a
    href="https://redirect.github.com/actions/cache/pull/1642">actions/cache#1642</a></li>
    <li>Prepare <code>v4.3.0</code> release by <a
    href="https://github.com/Link"><code>@​Link</code></a>- in <a
    href="https://redirect.github.com/actions/cache/pull/1655">actions/cache#1655</a></li>
    </ul>
    <h2>New Contributors</h2>
    <ul>
    <li><a href="https://github.com/GhadimiR"><code>@​GhadimiR</code></a>
    made their first contribution in <a
    href="https://redirect.github.com/actions/cache/pull/1642">actions/cache#1642</a></li>
    </ul>
    <p><strong>Full Changelog</strong>: <a
    href="https://github.com/actions/cache/compare/v4...v4.3.0">https://github.com/actions/cache/compare/v4...v4.3.0</a></p>
    </blockquote>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/actions/cache/blob/main/RELEASES.md">actions/cache's
    changelog</a>.</em></p>
    <blockquote>
    <h1>Releases</h1>
    <h3>4.3.0</h3>
    <ul>
    <li>Bump <code>@actions/cache</code> to <a
    href="https://redirect.github.com/actions/toolkit/pull/2132">v4.1.0</a></li>
    </ul>
    <h3>4.2.4</h3>
    <ul>
    <li>Bump <code>@actions/cache</code> to v4.0.5</li>
    </ul>
    <h3>4.2.3</h3>
    <ul>
    <li>Bump <code>@actions/cache</code> to v4.0.3 (obfuscates SAS token in
    debug logs for cache entries)</li>
    </ul>
    <h3>4.2.2</h3>
    <ul>
    <li>Bump <code>@actions/cache</code> to v4.0.2</li>
    </ul>
    <h3>4.2.1</h3>
    <ul>
    <li>Bump <code>@actions/cache</code> to v4.0.1</li>
    </ul>
    <h3>4.2.0</h3>
    <p>TLDR; The cache backend service has been rewritten from the ground up
    for improved performance and reliability. <a
    href="https://github.com/actions/cache">actions/cache</a> now integrates
    with the new cache service (v2) APIs.</p>
    <p>The new service will gradually roll out as of <strong>February 1st,
    2025</strong>. The legacy service will also be sunset on the same date.
    Changes in these release are <strong>fully backward
    compatible</strong>.</p>
    <p><strong>We are deprecating some versions of this action</strong>. We
    recommend upgrading to version <code>v4</code> or <code>v3</code> as
    soon as possible before <strong>February 1st, 2025.</strong> (Upgrade
    instructions below).</p>
    <p>If you are using pinned SHAs, please use the SHAs of versions
    <code>v4.2.0</code> or <code>v3.4.0</code></p>
    <p>If you do not upgrade, all workflow runs using any of the deprecated
    <a href="https://github.com/actions/cache">actions/cache</a> will
    fail.</p>
    <p>Upgrading to the recommended versions will not break your
    workflows.</p>
    <h3>4.1.2</h3>
    <ul>
    <li>Add GitHub Enterprise Cloud instances hostname filters to inform API
    endpoint choices - <a
    href="https://redirect.github.com/actions/cache/pull/1474">#1474</a></li>
    <li>Security fix: Bump braces from 3.0.2 to 3.0.3 - <a
    href="https://redirect.github.com/actions/cache/pull/1475">#1475</a></li>
    </ul>
    <h3>4.1.1</h3>
    <ul>
    <li>Restore original behavior of <code>cache-hit</code> output - <a
    href="https://redirect.github.com/actions/cache/pull/1467">#1467</a></li>
    </ul>
    <h3>4.1.0</h3>
    <ul>
    <li>Ensure <code>cache-hit</code> output is set when a cache is missed -
    <a
    href="https://redirect.github.com/actions/cache/pull/1404">#1404</a></li>
    <li>Deprecate <code>save-always</code> input - <a
    href="https://redirect.github.com/actions/cache/pull/1452">#1452</a></li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/actions/cache/commit/0057852bfaa89a56745cba8c7296529d2fc39830"><code>0057852</code></a>
    Merge pull request <a
    href="https://redirect.github.com/actions/cache/issues/1655">#1655</a>
    from actions/Link-/prepare-4.3.0</li>
    <li><a
    href="https://github.com/actions/cache/commit/4f5ea67f1cc87b2d4239690fa12a12fc32096d68"><code>4f5ea67</code></a>
    Update licensed cache</li>
    <li><a
    href="https://github.com/actions/cache/commit/9fcad95d03062fb8399cdbd79ae6041c7692b6c8"><code>9fcad95</code></a>
    Upgrade actions/cache to 4.1.0 and prepare 4.3.0 release</li>
    <li><a
    href="https://github.com/actions/cache/commit/638ed79f9dc94c1de1baef91bcab5edaa19451f4"><code>638ed79</code></a>
    Merge pull request <a
    href="https://redirect.github.com/actions/cache/issues/1642">#1642</a>
    from actions/GhadimiR-patch-1</li>
    <li><a
    href="https://github.com/actions/cache/commit/3862dccb1765f1ff6e623be1f4fd3a5b47a30d27"><code>3862dcc</code></a>
    Add note on runner versions</li>
    <li>See full diff in <a
    href="https://github.com/actions/cache/compare/0400d5f644dc74513175e3cd8d07132dd4860809...0057852bfaa89a56745cba8c7296529d2fc39830">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>
    dependabot[bot] authored Oct 3, 2025
    Configuration menu
    Copy the full SHA
    69219d2 View commit details
    Browse the repository at this point in the history
  4. feat: add cpu_options for EC2 launch template (#4789)

    This PR adds a feature which enables to use of `cpu_options` in the
    runner config.
    
    Context: We have a workload where hyperthreading hurts performance. With
    this option, we can opt-out of hyperthreading for a certain runner
    configuration.
    
    Tested by applying to our internal dev infra.
    
    Co-authored-by: Niek Palm <[email protected]>
    kirschem-fernride and npalm authored Oct 3, 2025
    Configuration menu
    Copy the full SHA
    20eeead View commit details
    Browse the repository at this point in the history
  5. fix(lambda): bump the aws group across 1 directory with 7 updates (#4805

    )
    
    Bumps the aws group with 7 updates in the /lambdas directory:
    
    | Package | From | To |
    | --- | --- | --- |
    |
    [@aws-sdk/client-ec2](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ec2)
    | `3.895.0` | `3.901.0` |
    |
    [@aws-sdk/client-ssm](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm)
    | `3.895.0` | `3.901.0` |
    |
    [@aws-sdk/types](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/types)
    | `3.893.0` | `3.901.0` |
    |
    [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs)
    | `3.895.0` | `3.901.0` |
    |
    [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3)
    | `3.895.0` | `3.901.0` |
    |
    [@aws-sdk/lib-storage](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage)
    | `3.895.0` | `3.901.0` |
    |
    [@aws-sdk/client-eventbridge](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-eventbridge)
    | `3.895.0` | `3.901.0` |
    
    
    Updates `@aws-sdk/client-ec2` from 3.895.0 to 3.901.0
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@​aws-sdk/client-ec2</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v3.901.0</h2>
    <h4>3.901.0(2025-10-01)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>bump Gradle to 9.0.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7390">#7390</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1e004195a36d0198a2e8430b809063d25e49d262">1e004195</a>)</li>
    <li>bump codegen version to 0.36.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7393">#7393</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/d0a9cd8b8ac2dd0fb5fe2a6263e81252cde466db">d0a9cd8b</a>)</li>
    </ul>
    </li>
    <li>add more bundle types to the benchmark (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7392">#7392</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/97078ce620c47657072d9082ba8372bdeb510e70">97078ce6</a>)</li>
    <li>bump '@smithy/*' versions (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7391">#7391</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce">0a418cc2</a>)</li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-ecs:</strong> This is a documentation only Amazon ECS
    release that adds additional information for health checks. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a5652334b742048bf9b8f71d6fcf6a898011afe5">a5652334</a>)</li>
    <li><strong>client-database-migration-service:</strong> This is a
    doc-only update, revising text for kms-key-arns. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/629c6306c9e875913a5aeaca0dfd700a5368291d">629c6306</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>client-chime-sdk-meetings:</strong> Add support to receive
    dual stack MediaPlacement URLs in Chime Meetings SDK (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/c32ced42006da139afd5a68f1bfb719c25d3557f">c32ced42</a>)</li>
    <li><strong>client-cleanroomsml:</strong> This release introduces data
    access budgets to view how many times an input channel can be used for
    ML jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6cc054b0f654118d455e9ff018c8020499311c9">a6cc054b</a>)</li>
    <li><strong>client-cleanrooms:</strong> This release introduces data
    access budgets to control how many times a table can be used for queries
    and jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/783dbc10a03aa60bcedb7da715026a741378ea0d">783dbc10</a>)</li>
    <li><strong>client-pcs:</strong> Added the UpdateCluster API action to
    modify cluster configurations, and Slurm custom settings for queues. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/3b9d480eaffccc6629de49b83c0cc6fa7131a130">3b9d480e</a>)</li>
    <li><strong>client-ivs-realtime:</strong> Remove incorrect ReadOnly
    trait on IVS RealTime ImportPublicKey API (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/8b79cdc1a70cf11a8bd3099f495fe55ed8a012b5">8b79cdc1</a>)</li>
    </ul>
    <hr />
    <p>For list of updated packages, view
    <strong>updated-packages.md</strong> in
    <strong>assets-3.901.0.zip</strong></p>
    <h2>v3.900.0</h2>
    <h4>3.900.0(2025-09-30)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>replace legacy gradle plugin code (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7389">#7389</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/e2b60b5dc7e585a9541decce8c8f43418dcfe195">e2b60b5d</a>)</li>
    <li>bump smithy-plugin to 0.7.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7388">#7388</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/b9cbc47569df8a2df7b66ac8eace1d31bb02a64a">b9cbc475</a>)</li>
    <li>bump smithy-gradle-plugin to 1.3.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7387">#7387</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/f449c5b86ada847b37878eab3bc0e5d2614d0332">f449c5b8</a>)</li>
    <li>upgrade smithy to 1.62.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7386">#7386</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/568fe9a65619bbb51a58587f4860cefe65867c67">568fe9a6</a>)</li>
    </ul>
    </li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-quicksight:</strong> added warnings to a few CLI
    pages (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1ea0f8896d92e6677db80a0cded6f3c481bc2942">1ea0f889</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>clients:</strong> update client endpoints as of 2025-09-30
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/453bf08d09a0d3bf43ca35842a064bc50eb7cd8a">453bf08d</a>)</li>
    <li><strong>client-customer-profiles:</strong> This release introduces
    ListProfileHistoryRecords and GetProfileHistoryRecord APIs for
    comprehensive profile history tracking with complete audit trails of
    creation, updates, merges, deletions, and data ingestion events. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a39cb1276808462911f1250083e6d3c48859c24c">a39cb127</a>)</li>
    <li><strong>client-rds:</strong> Enhanced RDS error handling: Added
    DBProxyEndpointNotFoundFault, DBShardGroupNotFoundFault,
    KMSKeyNotAccessibleFault for snapshots/restores/backups,
    NetworkTypeNotSupported, StorageTypeNotSupportedFault for restores, and
    granular state validation faults. Changed DBInstanceNotReadyFault to
    HTTP 400. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6d4eb28861f8d0fb3fd4ab400a1b70f6825208b">a6d4eb28</a>)</li>
    <li><strong>client-datasync:</strong> Added support for FIPS VPC
    endpoints in FIPS-enabled AWS Regions. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/def03385d2f02876fabd6f00ae2dc851c969d32e">def03385</a>)</li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-ec2/CHANGELOG.md"><code>@​aws-sdk/client-ec2</code>'s
    changelog</a>.</em></p>
    <blockquote>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.900.0...v3.901.0">3.901.0</a>
    (2025-10-01)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-ec2</code></p>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.898.0...v3.899.0">3.899.0</a>
    (2025-09-29)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-ec2</code></p>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.897.0...v3.898.0">3.898.0</a>
    (2025-09-26)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-ec2</code></p>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.895.0...v3.896.0">3.896.0</a>
    (2025-09-24)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-ec2</code></p>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/5befda8667e806c2e95556a55d09b05bc9f0dd3a"><code>5befda8</code></a>
    Publish v3.901.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce"><code>0a418cc</code></a>
    chore: bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ec2/issues/7391">#7391</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/99ff240110f8e2213f96ab208b44fe7cdf22be4a"><code>99ff240</code></a>
    Publish v3.899.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/ad1514df905b7b661f7f81050f5f2102d31e5cfa"><code>ad1514d</code></a>
    chore(codegen): sync for separating error schema &amp; ctor (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ec2/issues/7377">#7377</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/6bbbca2faf50ac8ed66d9ae561cbdf818cb1b718"><code>6bbbca2</code></a>
    Publish v3.898.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/bb0e673bc004e0c7ecf7dbca56e9c46df4b6d720"><code>bb0e673</code></a>
    docs(client-ec2): This release includes documentation updates for Amazon
    EBS ...</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/115af678470101f95f86bac31e42f1d6acd8b9d5"><code>115af67</code></a>
    Publish v3.896.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/281c666796e62691a6af521d21a87ad788b54c68"><code>281c666</code></a>
    chore(clients): replace 'uuid' with '<code>@​smithy/uuid</code>' (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ec2/issues/7372">#7372</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/76ac1de2947a077fd53217af55f8f3c9e1203287"><code>76ac1de</code></a>
    chore(codegen): bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ec2/issues/7370">#7370</a>)</li>
    <li>See full diff in <a
    href="https://github.com/aws/aws-sdk-js-v3/commits/v3.901.0/clients/client-ec2">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    Updates `@aws-sdk/client-ssm` from 3.895.0 to 3.901.0
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@​aws-sdk/client-ssm</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v3.901.0</h2>
    <h4>3.901.0(2025-10-01)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>bump Gradle to 9.0.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7390">#7390</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1e004195a36d0198a2e8430b809063d25e49d262">1e004195</a>)</li>
    <li>bump codegen version to 0.36.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7393">#7393</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/d0a9cd8b8ac2dd0fb5fe2a6263e81252cde466db">d0a9cd8b</a>)</li>
    </ul>
    </li>
    <li>add more bundle types to the benchmark (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7392">#7392</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/97078ce620c47657072d9082ba8372bdeb510e70">97078ce6</a>)</li>
    <li>bump '@smithy/*' versions (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7391">#7391</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce">0a418cc2</a>)</li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-ecs:</strong> This is a documentation only Amazon ECS
    release that adds additional information for health checks. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a5652334b742048bf9b8f71d6fcf6a898011afe5">a5652334</a>)</li>
    <li><strong>client-database-migration-service:</strong> This is a
    doc-only update, revising text for kms-key-arns. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/629c6306c9e875913a5aeaca0dfd700a5368291d">629c6306</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>client-chime-sdk-meetings:</strong> Add support to receive
    dual stack MediaPlacement URLs in Chime Meetings SDK (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/c32ced42006da139afd5a68f1bfb719c25d3557f">c32ced42</a>)</li>
    <li><strong>client-cleanroomsml:</strong> This release introduces data
    access budgets to view how many times an input channel can be used for
    ML jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6cc054b0f654118d455e9ff018c8020499311c9">a6cc054b</a>)</li>
    <li><strong>client-cleanrooms:</strong> This release introduces data
    access budgets to control how many times a table can be used for queries
    and jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/783dbc10a03aa60bcedb7da715026a741378ea0d">783dbc10</a>)</li>
    <li><strong>client-pcs:</strong> Added the UpdateCluster API action to
    modify cluster configurations, and Slurm custom settings for queues. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/3b9d480eaffccc6629de49b83c0cc6fa7131a130">3b9d480e</a>)</li>
    <li><strong>client-ivs-realtime:</strong> Remove incorrect ReadOnly
    trait on IVS RealTime ImportPublicKey API (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/8b79cdc1a70cf11a8bd3099f495fe55ed8a012b5">8b79cdc1</a>)</li>
    </ul>
    <hr />
    <p>For list of updated packages, view
    <strong>updated-packages.md</strong> in
    <strong>assets-3.901.0.zip</strong></p>
    <h2>v3.900.0</h2>
    <h4>3.900.0(2025-09-30)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>replace legacy gradle plugin code (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7389">#7389</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/e2b60b5dc7e585a9541decce8c8f43418dcfe195">e2b60b5d</a>)</li>
    <li>bump smithy-plugin to 0.7.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7388">#7388</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/b9cbc47569df8a2df7b66ac8eace1d31bb02a64a">b9cbc475</a>)</li>
    <li>bump smithy-gradle-plugin to 1.3.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7387">#7387</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/f449c5b86ada847b37878eab3bc0e5d2614d0332">f449c5b8</a>)</li>
    <li>upgrade smithy to 1.62.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7386">#7386</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/568fe9a65619bbb51a58587f4860cefe65867c67">568fe9a6</a>)</li>
    </ul>
    </li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-quicksight:</strong> added warnings to a few CLI
    pages (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1ea0f8896d92e6677db80a0cded6f3c481bc2942">1ea0f889</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>clients:</strong> update client endpoints as of 2025-09-30
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/453bf08d09a0d3bf43ca35842a064bc50eb7cd8a">453bf08d</a>)</li>
    <li><strong>client-customer-profiles:</strong> This release introduces
    ListProfileHistoryRecords and GetProfileHistoryRecord APIs for
    comprehensive profile history tracking with complete audit trails of
    creation, updates, merges, deletions, and data ingestion events. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a39cb1276808462911f1250083e6d3c48859c24c">a39cb127</a>)</li>
    <li><strong>client-rds:</strong> Enhanced RDS error handling: Added
    DBProxyEndpointNotFoundFault, DBShardGroupNotFoundFault,
    KMSKeyNotAccessibleFault for snapshots/restores/backups,
    NetworkTypeNotSupported, StorageTypeNotSupportedFault for restores, and
    granular state validation faults. Changed DBInstanceNotReadyFault to
    HTTP 400. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6d4eb28861f8d0fb3fd4ab400a1b70f6825208b">a6d4eb28</a>)</li>
    <li><strong>client-datasync:</strong> Added support for FIPS VPC
    endpoints in FIPS-enabled AWS Regions. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/def03385d2f02876fabd6f00ae2dc851c969d32e">def03385</a>)</li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-ssm/CHANGELOG.md"><code>@​aws-sdk/client-ssm</code>'s
    changelog</a>.</em></p>
    <blockquote>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.900.0...v3.901.0">3.901.0</a>
    (2025-10-01)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-ssm</code></p>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.898.0...v3.899.0">3.899.0</a>
    (2025-09-29)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-ssm</code></p>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.895.0...v3.896.0">3.896.0</a>
    (2025-09-24)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-ssm</code></p>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/5befda8667e806c2e95556a55d09b05bc9f0dd3a"><code>5befda8</code></a>
    Publish v3.901.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce"><code>0a418cc</code></a>
    chore: bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm/issues/7391">#7391</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/99ff240110f8e2213f96ab208b44fe7cdf22be4a"><code>99ff240</code></a>
    Publish v3.899.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/ad1514df905b7b661f7f81050f5f2102d31e5cfa"><code>ad1514d</code></a>
    chore(codegen): sync for separating error schema &amp; ctor (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm/issues/7377">#7377</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/115af678470101f95f86bac31e42f1d6acd8b9d5"><code>115af67</code></a>
    Publish v3.896.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/281c666796e62691a6af521d21a87ad788b54c68"><code>281c666</code></a>
    chore(clients): replace 'uuid' with '<code>@​smithy/uuid</code>' (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm/issues/7372">#7372</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/76ac1de2947a077fd53217af55f8f3c9e1203287"><code>76ac1de</code></a>
    chore(codegen): bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm/issues/7370">#7370</a>)</li>
    <li>See full diff in <a
    href="https://github.com/aws/aws-sdk-js-v3/commits/v3.901.0/clients/client-ssm">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    Updates `@aws-sdk/types` from 3.893.0 to 3.901.0
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@​aws-sdk/types</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v3.901.0</h2>
    <h4>3.901.0(2025-10-01)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>bump Gradle to 9.0.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7390">#7390</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1e004195a36d0198a2e8430b809063d25e49d262">1e004195</a>)</li>
    <li>bump codegen version to 0.36.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7393">#7393</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/d0a9cd8b8ac2dd0fb5fe2a6263e81252cde466db">d0a9cd8b</a>)</li>
    </ul>
    </li>
    <li>add more bundle types to the benchmark (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7392">#7392</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/97078ce620c47657072d9082ba8372bdeb510e70">97078ce6</a>)</li>
    <li>bump '@smithy/*' versions (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7391">#7391</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce">0a418cc2</a>)</li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-ecs:</strong> This is a documentation only Amazon ECS
    release that adds additional information for health checks. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a5652334b742048bf9b8f71d6fcf6a898011afe5">a5652334</a>)</li>
    <li><strong>client-database-migration-service:</strong> This is a
    doc-only update, revising text for kms-key-arns. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/629c6306c9e875913a5aeaca0dfd700a5368291d">629c6306</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>client-chime-sdk-meetings:</strong> Add support to receive
    dual stack MediaPlacement URLs in Chime Meetings SDK (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/c32ced42006da139afd5a68f1bfb719c25d3557f">c32ced42</a>)</li>
    <li><strong>client-cleanroomsml:</strong> This release introduces data
    access budgets to view how many times an input channel can be used for
    ML jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6cc054b0f654118d455e9ff018c8020499311c9">a6cc054b</a>)</li>
    <li><strong>client-cleanrooms:</strong> This release introduces data
    access budgets to control how many times a table can be used for queries
    and jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/783dbc10a03aa60bcedb7da715026a741378ea0d">783dbc10</a>)</li>
    <li><strong>client-pcs:</strong> Added the UpdateCluster API action to
    modify cluster configurations, and Slurm custom settings for queues. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/3b9d480eaffccc6629de49b83c0cc6fa7131a130">3b9d480e</a>)</li>
    <li><strong>client-ivs-realtime:</strong> Remove incorrect ReadOnly
    trait on IVS RealTime ImportPublicKey API (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/8b79cdc1a70cf11a8bd3099f495fe55ed8a012b5">8b79cdc1</a>)</li>
    </ul>
    <hr />
    <p>For list of updated packages, view
    <strong>updated-packages.md</strong> in
    <strong>assets-3.901.0.zip</strong></p>
    <h2>v3.900.0</h2>
    <h4>3.900.0(2025-09-30)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>replace legacy gradle plugin code (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7389">#7389</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/e2b60b5dc7e585a9541decce8c8f43418dcfe195">e2b60b5d</a>)</li>
    <li>bump smithy-plugin to 0.7.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7388">#7388</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/b9cbc47569df8a2df7b66ac8eace1d31bb02a64a">b9cbc475</a>)</li>
    <li>bump smithy-gradle-plugin to 1.3.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7387">#7387</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/f449c5b86ada847b37878eab3bc0e5d2614d0332">f449c5b8</a>)</li>
    <li>upgrade smithy to 1.62.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7386">#7386</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/568fe9a65619bbb51a58587f4860cefe65867c67">568fe9a6</a>)</li>
    </ul>
    </li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-quicksight:</strong> added warnings to a few CLI
    pages (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1ea0f8896d92e6677db80a0cded6f3c481bc2942">1ea0f889</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>clients:</strong> update client endpoints as of 2025-09-30
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/453bf08d09a0d3bf43ca35842a064bc50eb7cd8a">453bf08d</a>)</li>
    <li><strong>client-customer-profiles:</strong> This release introduces
    ListProfileHistoryRecords and GetProfileHistoryRecord APIs for
    comprehensive profile history tracking with complete audit trails of
    creation, updates, merges, deletions, and data ingestion events. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a39cb1276808462911f1250083e6d3c48859c24c">a39cb127</a>)</li>
    <li><strong>client-rds:</strong> Enhanced RDS error handling: Added
    DBProxyEndpointNotFoundFault, DBShardGroupNotFoundFault,
    KMSKeyNotAccessibleFault for snapshots/restores/backups,
    NetworkTypeNotSupported, StorageTypeNotSupportedFault for restores, and
    granular state validation faults. Changed DBInstanceNotReadyFault to
    HTTP 400. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6d4eb28861f8d0fb3fd4ab400a1b70f6825208b">a6d4eb28</a>)</li>
    <li><strong>client-datasync:</strong> Added support for FIPS VPC
    endpoints in FIPS-enabled AWS Regions. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/def03385d2f02876fabd6f00ae2dc851c969d32e">def03385</a>)</li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/blob/main/packages/types/CHANGELOG.md"><code>@​aws-sdk/types</code>'s
    changelog</a>.</em></p>
    <blockquote>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.900.0...v3.901.0">3.901.0</a>
    (2025-10-01)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/types</code></p>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/5befda8667e806c2e95556a55d09b05bc9f0dd3a"><code>5befda8</code></a>
    Publish v3.901.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce"><code>0a418cc</code></a>
    chore: bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/types/issues/7391">#7391</a>)</li>
    <li>See full diff in <a
    href="https://github.com/aws/aws-sdk-js-v3/commits/v3.901.0/packages/types">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    Updates `@aws-sdk/client-sqs` from 3.895.0 to 3.901.0
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@​aws-sdk/client-sqs</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v3.901.0</h2>
    <h4>3.901.0(2025-10-01)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>bump Gradle to 9.0.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7390">#7390</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1e004195a36d0198a2e8430b809063d25e49d262">1e004195</a>)</li>
    <li>bump codegen version to 0.36.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7393">#7393</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/d0a9cd8b8ac2dd0fb5fe2a6263e81252cde466db">d0a9cd8b</a>)</li>
    </ul>
    </li>
    <li>add more bundle types to the benchmark (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7392">#7392</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/97078ce620c47657072d9082ba8372bdeb510e70">97078ce6</a>)</li>
    <li>bump '@smithy/*' versions (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7391">#7391</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce">0a418cc2</a>)</li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-ecs:</strong> This is a documentation only Amazon ECS
    release that adds additional information for health checks. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a5652334b742048bf9b8f71d6fcf6a898011afe5">a5652334</a>)</li>
    <li><strong>client-database-migration-service:</strong> This is a
    doc-only update, revising text for kms-key-arns. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/629c6306c9e875913a5aeaca0dfd700a5368291d">629c6306</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>client-chime-sdk-meetings:</strong> Add support to receive
    dual stack MediaPlacement URLs in Chime Meetings SDK (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/c32ced42006da139afd5a68f1bfb719c25d3557f">c32ced42</a>)</li>
    <li><strong>client-cleanroomsml:</strong> This release introduces data
    access budgets to view how many times an input channel can be used for
    ML jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6cc054b0f654118d455e9ff018c8020499311c9">a6cc054b</a>)</li>
    <li><strong>client-cleanrooms:</strong> This release introduces data
    access budgets to control how many times a table can be used for queries
    and jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/783dbc10a03aa60bcedb7da715026a741378ea0d">783dbc10</a>)</li>
    <li><strong>client-pcs:</strong> Added the UpdateCluster API action to
    modify cluster configurations, and Slurm custom settings for queues. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/3b9d480eaffccc6629de49b83c0cc6fa7131a130">3b9d480e</a>)</li>
    <li><strong>client-ivs-realtime:</strong> Remove incorrect ReadOnly
    trait on IVS RealTime ImportPublicKey API (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/8b79cdc1a70cf11a8bd3099f495fe55ed8a012b5">8b79cdc1</a>)</li>
    </ul>
    <hr />
    <p>For list of updated packages, view
    <strong>updated-packages.md</strong> in
    <strong>assets-3.901.0.zip</strong></p>
    <h2>v3.900.0</h2>
    <h4>3.900.0(2025-09-30)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>replace legacy gradle plugin code (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7389">#7389</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/e2b60b5dc7e585a9541decce8c8f43418dcfe195">e2b60b5d</a>)</li>
    <li>bump smithy-plugin to 0.7.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7388">#7388</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/b9cbc47569df8a2df7b66ac8eace1d31bb02a64a">b9cbc475</a>)</li>
    <li>bump smithy-gradle-plugin to 1.3.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7387">#7387</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/f449c5b86ada847b37878eab3bc0e5d2614d0332">f449c5b8</a>)</li>
    <li>upgrade smithy to 1.62.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7386">#7386</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/568fe9a65619bbb51a58587f4860cefe65867c67">568fe9a6</a>)</li>
    </ul>
    </li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-quicksight:</strong> added warnings to a few CLI
    pages (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1ea0f8896d92e6677db80a0cded6f3c481bc2942">1ea0f889</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>clients:</strong> update client endpoints as of 2025-09-30
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/453bf08d09a0d3bf43ca35842a064bc50eb7cd8a">453bf08d</a>)</li>
    <li><strong>client-customer-profiles:</strong> This release introduces
    ListProfileHistoryRecords and GetProfileHistoryRecord APIs for
    comprehensive profile history tracking with complete audit trails of
    creation, updates, merges, deletions, and data ingestion events. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a39cb1276808462911f1250083e6d3c48859c24c">a39cb127</a>)</li>
    <li><strong>client-rds:</strong> Enhanced RDS error handling: Added
    DBProxyEndpointNotFoundFault, DBShardGroupNotFoundFault,
    KMSKeyNotAccessibleFault for snapshots/restores/backups,
    NetworkTypeNotSupported, StorageTypeNotSupportedFault for restores, and
    granular state validation faults. Changed DBInstanceNotReadyFault to
    HTTP 400. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6d4eb28861f8d0fb3fd4ab400a1b70f6825208b">a6d4eb28</a>)</li>
    <li><strong>client-datasync:</strong> Added support for FIPS VPC
    endpoints in FIPS-enabled AWS Regions. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/def03385d2f02876fabd6f00ae2dc851c969d32e">def03385</a>)</li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-sqs/CHANGELOG.md"><code>@​aws-sdk/client-sqs</code>'s
    changelog</a>.</em></p>
    <blockquote>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.900.0...v3.901.0">3.901.0</a>
    (2025-10-01)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-sqs</code></p>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.898.0...v3.899.0">3.899.0</a>
    (2025-09-29)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-sqs</code></p>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.895.0...v3.896.0">3.896.0</a>
    (2025-09-24)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-sqs</code></p>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/5befda8667e806c2e95556a55d09b05bc9f0dd3a"><code>5befda8</code></a>
    Publish v3.901.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce"><code>0a418cc</code></a>
    chore: bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs/issues/7391">#7391</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/99ff240110f8e2213f96ab208b44fe7cdf22be4a"><code>99ff240</code></a>
    Publish v3.899.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/ad1514df905b7b661f7f81050f5f2102d31e5cfa"><code>ad1514d</code></a>
    chore(codegen): sync for separating error schema &amp; ctor (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs/issues/7377">#7377</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/115af678470101f95f86bac31e42f1d6acd8b9d5"><code>115af67</code></a>
    Publish v3.896.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/76ac1de2947a077fd53217af55f8f3c9e1203287"><code>76ac1de</code></a>
    chore(codegen): bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs/issues/7370">#7370</a>)</li>
    <li>See full diff in <a
    href="https://github.com/aws/aws-sdk-js-v3/commits/v3.901.0/clients/client-sqs">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    Updates `@aws-sdk/client-s3` from 3.895.0 to 3.901.0
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@​aws-sdk/client-s3</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v3.901.0</h2>
    <h4>3.901.0(2025-10-01)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>bump Gradle to 9.0.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7390">#7390</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1e004195a36d0198a2e8430b809063d25e49d262">1e004195</a>)</li>
    <li>bump codegen version to 0.36.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7393">#7393</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/d0a9cd8b8ac2dd0fb5fe2a6263e81252cde466db">d0a9cd8b</a>)</li>
    </ul>
    </li>
    <li>add more bundle types to the benchmark (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7392">#7392</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/97078ce620c47657072d9082ba8372bdeb510e70">97078ce6</a>)</li>
    <li>bump '@smithy/*' versions (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7391">#7391</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce">0a418cc2</a>)</li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-ecs:</strong> This is a documentation only Amazon ECS
    release that adds additional information for health checks. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a5652334b742048bf9b8f71d6fcf6a898011afe5">a5652334</a>)</li>
    <li><strong>client-database-migration-service:</strong> This is a
    doc-only update, revising text for kms-key-arns. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/629c6306c9e875913a5aeaca0dfd700a5368291d">629c6306</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>client-chime-sdk-meetings:</strong> Add support to receive
    dual stack MediaPlacement URLs in Chime Meetings SDK (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/c32ced42006da139afd5a68f1bfb719c25d3557f">c32ced42</a>)</li>
    <li><strong>client-cleanroomsml:</strong> This release introduces data
    access budgets to view how many times an input channel can be used for
    ML jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6cc054b0f654118d455e9ff018c8020499311c9">a6cc054b</a>)</li>
    <li><strong>client-cleanrooms:</strong> This release introduces data
    access budgets to control how many times a table can be used for queries
    and jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/783dbc10a03aa60bcedb7da715026a741378ea0d">783dbc10</a>)</li>
    <li><strong>client-pcs:</strong> Added the UpdateCluster API action to
    modify cluster configurations, and Slurm custom settings for queues. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/3b9d480eaffccc6629de49b83c0cc6fa7131a130">3b9d480e</a>)</li>
    <li><strong>client-ivs-realtime:</strong> Remove incorrect ReadOnly
    trait on IVS RealTime ImportPublicKey API (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/8b79cdc1a70cf11a8bd3099f495fe55ed8a012b5">8b79cdc1</a>)</li>
    </ul>
    <hr />
    <p>For list of updated packages, view
    <strong>updated-packages.md</strong> in
    <strong>assets-3.901.0.zip</strong></p>
    <h2>v3.900.0</h2>
    <h4>3.900.0(2025-09-30)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>replace legacy gradle plugin code (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7389">#7389</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/e2b60b5dc7e585a9541decce8c8f43418dcfe195">e2b60b5d</a>)</li>
    <li>bump smithy-plugin to 0.7.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7388">#7388</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/b9cbc47569df8a2df7b66ac8eace1d31bb02a64a">b9cbc475</a>)</li>
    <li>bump smithy-gradle-plugin to 1.3.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7387">#7387</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/f449c5b86ada847b37878eab3bc0e5d2614d0332">f449c5b8</a>)</li>
    <li>upgrade smithy to 1.62.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7386">#7386</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/568fe9a65619bbb51a58587f4860cefe65867c67">568fe9a6</a>)</li>
    </ul>
    </li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-quicksight:</strong> added warnings to a few CLI
    pages (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1ea0f8896d92e6677db80a0cded6f3c481bc2942">1ea0f889</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>clients:</strong> update client endpoints as of 2025-09-30
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/453bf08d09a0d3bf43ca35842a064bc50eb7cd8a">453bf08d</a>)</li>
    <li><strong>client-customer-profiles:</strong> This release introduces
    ListProfileHistoryRecords and GetProfileHistoryRecord APIs for
    comprehensive profile history tracking with complete audit trails of
    creation, updates, merges, deletions, and data ingestion events. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a39cb1276808462911f1250083e6d3c48859c24c">a39cb127</a>)</li>
    <li><strong>client-rds:</strong> Enhanced RDS error handling: Added
    DBProxyEndpointNotFoundFault, DBShardGroupNotFoundFault,
    KMSKeyNotAccessibleFault for snapshots/restores/backups,
    NetworkTypeNotSupported, StorageTypeNotSupportedFault for restores, and
    granular state validation faults. Changed DBInstanceNotReadyFault to
    HTTP 400. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6d4eb28861f8d0fb3fd4ab400a1b70f6825208b">a6d4eb28</a>)</li>
    <li><strong>client-datasync:</strong> Added support for FIPS VPC
    endpoints in FIPS-enabled AWS Regions. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/def03385d2f02876fabd6f00ae2dc851c969d32e">def03385</a>)</li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md"><code>@​aws-sdk/client-s3</code>'s
    changelog</a>.</em></p>
    <blockquote>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.900.0...v3.901.0">3.901.0</a>
    (2025-10-01)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-s3</code></p>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.898.0...v3.899.0">3.899.0</a>
    (2025-09-29)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-s3</code></p>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.895.0...v3.896.0">3.896.0</a>
    (2025-09-24)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-s3</code></p>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/5befda8667e806c2e95556a55d09b05bc9f0dd3a"><code>5befda8</code></a>
    Publish v3.901.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce"><code>0a418cc</code></a>
    chore: bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3/issues/7391">#7391</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/99ff240110f8e2213f96ab208b44fe7cdf22be4a"><code>99ff240</code></a>
    Publish v3.899.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/ad1514df905b7b661f7f81050f5f2102d31e5cfa"><code>ad1514d</code></a>
    chore(codegen): sync for separating error schema &amp; ctor (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3/issues/7377">#7377</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/115af678470101f95f86bac31e42f1d6acd8b9d5"><code>115af67</code></a>
    Publish v3.896.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/f7eb085f7d34ba91aaef6e235e5f15c8607d5084"><code>f7eb085</code></a>
    test(clients): update payload types in client tests (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3/issues/7373">#7373</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/281c666796e62691a6af521d21a87ad788b54c68"><code>281c666</code></a>
    chore(clients): replace 'uuid' with '<code>@​smithy/uuid</code>' (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3/issues/7372">#7372</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/76ac1de2947a077fd53217af55f8f3c9e1203287"><code>76ac1de</code></a>
    chore(codegen): bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3/issues/7370">#7370</a>)</li>
    <li>See full diff in <a
    href="https://github.com/aws/aws-sdk-js-v3/commits/v3.901.0/clients/client-s3">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    Updates `@aws-sdk/lib-storage` from 3.895.0 to 3.901.0
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@​aws-sdk/lib-storage</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v3.901.0</h2>
    <h4>3.901.0(2025-10-01)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>bump Gradle to 9.0.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7390">#7390</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1e004195a36d0198a2e8430b809063d25e49d262">1e004195</a>)</li>
    <li>bump codegen version to 0.36.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7393">#7393</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/d0a9cd8b8ac2dd0fb5fe2a6263e81252cde466db">d0a9cd8b</a>)</li>
    </ul>
    </li>
    <li>add more bundle types to the benchmark (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7392">#7392</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/97078ce620c47657072d9082ba8372bdeb510e70">97078ce6</a>)</li>
    <li>bump '@smithy/*' versions (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7391">#7391</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce">0a418cc2</a>)</li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-ecs:</strong> This is a documentation only Amazon ECS
    release that adds additional information for health checks. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a5652334b742048bf9b8f71d6fcf6a898011afe5">a5652334</a>)</li>
    <li><strong>client-database-migration-service:</strong> This is a
    doc-only update, revising text for kms-key-arns. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/629c6306c9e875913a5aeaca0dfd700a5368291d">629c6306</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>client-chime-sdk-meetings:</strong> Add support to receive
    dual stack MediaPlacement URLs in Chime Meetings SDK (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/c32ced42006da139afd5a68f1bfb719c25d3557f">c32ced42</a>)</li>
    <li><strong>client-cleanroomsml:</strong> This release introduces data
    access budgets to view how many times an input channel can be used for
    ML jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6cc054b0f654118d455e9ff018c8020499311c9">a6cc054b</a>)</li>
    <li><strong>client-cleanrooms:</strong> This release introduces data
    access budgets to control how many times a table can be used for queries
    and jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/783dbc10a03aa60bcedb7da715026a741378ea0d">783dbc10</a>)</li>
    <li><strong>client-pcs:</strong> Added the UpdateCluster API action to
    modify cluster configurations, and Slurm custom settings for queues. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/3b9d480eaffccc6629de49b83c0cc6fa7131a130">3b9d480e</a>)</li>
    <li><strong>client-ivs-realtime:</strong> Remove incorrect ReadOnly
    trait on IVS RealTime ImportPublicKey API (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/8b79cdc1a70cf11a8bd3099f495fe55ed8a012b5">8b79cdc1</a>)</li>
    </ul>
    <hr />
    <p>For list of updated packages, view
    <strong>updated-packages.md</strong> in
    <strong>assets-3.901.0.zip</strong></p>
    <h2>v3.900.0</h2>
    <h4>3.900.0(2025-09-30)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>replace legacy gradle plugin code (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7389">#7389</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/e2b60b5dc7e585a9541decce8c8f43418dcfe195">e2b60b5d</a>)</li>
    <li>bump smithy-plugin to 0.7.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7388">#7388</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/b9cbc47569df8a2df7b66ac8eace1d31bb02a64a">b9cbc475</a>)</li>
    <li>bump smithy-gradle-plugin to 1.3.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7387">#7387</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/f449c5b86ada847b37878eab3bc0e5d2614d0332">f449c5b8</a>)</li>
    <li>upgrade smithy to 1.62.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7386">#7386</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/568fe9a65619bbb51a58587f4860cefe65867c67">568fe9a6</a>)</li>
    </ul>
    </li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-quicksight:</strong> added warnings to a few CLI
    pages (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1ea0f8896d92e6677db80a0cded6f3c481bc2942">1ea0f889</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>clients:</strong> update client endpoints as of 2025-09-30
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/453bf08d09a0d3bf43ca35842a064bc50eb7cd8a">453bf08d</a>)</li>
    <li><strong>client-customer-profiles:</strong> This release introduces
    ListProfileHistoryRecords and GetProfileHistoryRecord APIs for
    comprehensive profile history tracking with complete audit trails of
    creation, updates, merges, deletions, and data ingestion events. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a39cb1276808462911f1250083e6d3c48859c24c">a39cb127</a>)</li>
    <li><strong>client-rds:</strong> Enhanced RDS error handling: Added
    DBProxyEndpointNotFoundFault, DBShardGroupNotFoundFault,
    KMSKeyNotAccessibleFault for snapshots/restores/backups,
    NetworkTypeNotSupported, StorageTypeNotSupportedFault for restores, and
    granular state validation faults. Changed DBInstanceNotReadyFault to
    HTTP 400. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6d4eb28861f8d0fb3fd4ab400a1b70f6825208b">a6d4eb28</a>)</li>
    <li><strong>client-datasync:</strong> Added support for FIPS VPC
    endpoints in FIPS-enabled AWS Regions. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/def03385d2f02876fabd6f00ae2dc851c969d32e">def03385</a>)</li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/blob/main/lib/lib-storage/CHANGELOG.md"><code>@​aws-sdk/lib-storage</code>'s
    changelog</a>.</em></p>
    <blockquote>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.900.0...v3.901.0">3.901.0</a>
    (2025-10-01)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/lib-storage</code></p>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.899.0...v3.900.0">3.900.0</a>
    (2025-09-30)</h1>
    <h3>Bug Fixes</h3>
    <ul>
    <li><strong>lib-storage:</strong> use input parameter object size
    information if available (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/issues/7385">#7385</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/45d5730a5bb335cf15034e305a37deb4c57db7c8">45d5730</a>)</li>
    </ul>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.898.0...v3.899.0">3.899.0</a>
    (2025-09-29)</h1>
    <h3>Bug Fixes</h3>
    <ul>
    <li><strong>lib-storage:</strong> respect user-provided partSize option
    for Upload (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/issues/7381">#7381</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/31fc9967a50f66c50963f387144681149484e0ea">31fc996</a>)</li>
    </ul>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.895.0...v3.896.0">3.896.0</a>
    (2025-09-24)</h1>
    <h3>Bug Fixes</h3>
    <ul>
    <li><strong>lib-storage:</strong> add validation for partCount and
    contentLength for multipart upload (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/issues/7363">#7363</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0562a0d1d3a445a2a124fbbe875fc558546d02e6">0562a0d</a>)</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/5befda8667e806c2e95556a55d09b05bc9f0dd3a"><code>5befda8</code></a>
    Publish v3.901.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce"><code>0a418cc</code></a>
    chore: bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage/issues/7391">#7391</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0dcf5be6f6649f83dcf64113e6623a7842098103"><code>0dcf5be</code></a>
    Publish v3.900.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/45d5730a5bb335cf15034e305a37deb4c57db7c8"><code>45d5730</code></a>
    fix(lib-storage): use input parameter object size information if
    available (#...</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/99ff240110f8e2213f96ab208b44fe7cdf22be4a"><code>99ff240</code></a>
    Publish v3.899.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/31fc9967a50f66c50963f387144681149484e0ea"><code>31fc996</code></a>
    fix(lib-storage): respect user-provided partSize option for Upload (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage/issues/7381">#7381</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/ad1514df905b7b661f7f81050f5f2102d31e5cfa"><code>ad1514d</code></a>
    chore(codegen): sync for separating error schema &amp; ctor (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage/issues/7377">#7377</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/115af678470101f95f86bac31e42f1d6acd8b9d5"><code>115af67</code></a>
    Publish v3.896.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0562a0d1d3a445a2a124fbbe875fc558546d02e6"><code>0562a0d</code></a>
    fix(lib-storage): add validation for partCount and contentLength for
    multipar...</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/76ac1de2947a077fd53217af55f8f3c9e1203287"><code>76ac1de</code></a>
    chore(codegen): bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage/issues/7370">#7370</a>)</li>
    <li>See full diff in <a
    href="https://github.com/aws/aws-sdk-js-v3/commits/v3.901.0/lib/lib-storage">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    Updates `@aws-sdk/client-eventbridge` from 3.895.0 to 3.901.0
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@​aws-sdk/client-eventbridge</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v3.901.0</h2>
    <h4>3.901.0(2025-10-01)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>bump Gradle to 9.0.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7390">#7390</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1e004195a36d0198a2e8430b809063d25e49d262">1e004195</a>)</li>
    <li>bump codegen version to 0.36.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7393">#7393</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/d0a9cd8b8ac2dd0fb5fe2a6263e81252cde466db">d0a9cd8b</a>)</li>
    </ul>
    </li>
    <li>add more bundle types to the benchmark (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7392">#7392</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/97078ce620c47657072d9082ba8372bdeb510e70">97078ce6</a>)</li>
    <li>bump '@smithy/*' versions (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7391">#7391</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce">0a418cc2</a>)</li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-ecs:</strong> This is a documentation only Amazon ECS
    release that adds additional information for health checks. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a5652334b742048bf9b8f71d6fcf6a898011afe5">a5652334</a>)</li>
    <li><strong>client-database-migration-service:</strong> This is a
    doc-only update, revising text for kms-key-arns. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/629c6306c9e875913a5aeaca0dfd700a5368291d">629c6306</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>client-chime-sdk-meetings:</strong> Add support to receive
    dual stack MediaPlacement URLs in Chime Meetings SDK (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/c32ced42006da139afd5a68f1bfb719c25d3557f">c32ced42</a>)</li>
    <li><strong>client-cleanroomsml:</strong> This release introduces data
    access budgets to view how many times an input channel can be used for
    ML jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6cc054b0f654118d455e9ff018c8020499311c9">a6cc054b</a>)</li>
    <li><strong>client-cleanrooms:</strong> This release introduces data
    access budgets to control how many times a table can be used for queries
    and jobs in a collaboration. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/783dbc10a03aa60bcedb7da715026a741378ea0d">783dbc10</a>)</li>
    <li><strong>client-pcs:</strong> Added the UpdateCluster API action to
    modify cluster configurations, and Slurm custom settings for queues. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/3b9d480eaffccc6629de49b83c0cc6fa7131a130">3b9d480e</a>)</li>
    <li><strong>client-ivs-realtime:</strong> Remove incorrect ReadOnly
    trait on IVS RealTime ImportPublicKey API (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/8b79cdc1a70cf11a8bd3099f495fe55ed8a012b5">8b79cdc1</a>)</li>
    </ul>
    <hr />
    <p>For list of updated packages, view
    <strong>updated-packages.md</strong> in
    <strong>assets-3.901.0.zip</strong></p>
    <h2>v3.900.0</h2>
    <h4>3.900.0(2025-09-30)</h4>
    <h5>Chores</h5>
    <ul>
    <li><strong>codegen:</strong>
    <ul>
    <li>replace legacy gradle plugin code (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7389">#7389</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/e2b60b5dc7e585a9541decce8c8f43418dcfe195">e2b60b5d</a>)</li>
    <li>bump smithy-plugin to 0.7.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7388">#7388</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/b9cbc47569df8a2df7b66ac8eace1d31bb02a64a">b9cbc475</a>)</li>
    <li>bump smithy-gradle-plugin to 1.3.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7387">#7387</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/f449c5b86ada847b37878eab3bc0e5d2614d0332">f449c5b8</a>)</li>
    <li>upgrade smithy to 1.62.0 (<a
    href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7386">#7386</a>)
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/568fe9a65619bbb51a58587f4860cefe65867c67">568fe9a6</a>)</li>
    </ul>
    </li>
    </ul>
    <h5>Documentation Changes</h5>
    <ul>
    <li><strong>client-quicksight:</strong> added warnings to a few CLI
    pages (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/1ea0f8896d92e6677db80a0cded6f3c481bc2942">1ea0f889</a>)</li>
    </ul>
    <h5>New Features</h5>
    <ul>
    <li><strong>clients:</strong> update client endpoints as of 2025-09-30
    (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/453bf08d09a0d3bf43ca35842a064bc50eb7cd8a">453bf08d</a>)</li>
    <li><strong>client-customer-profiles:</strong> This release introduces
    ListProfileHistoryRecords and GetProfileHistoryRecord APIs for
    comprehensive profile history tracking with complete audit trails of
    creation, updates, merges, deletions, and data ingestion events. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a39cb1276808462911f1250083e6d3c48859c24c">a39cb127</a>)</li>
    <li><strong>client-rds:</strong> Enhanced RDS error handling: Added
    DBProxyEndpointNotFoundFault, DBShardGroupNotFoundFault,
    KMSKeyNotAccessibleFault for snapshots/restores/backups,
    NetworkTypeNotSupported, StorageTypeNotSupportedFault for restores, and
    granular state validation faults. Changed DBInstanceNotReadyFault to
    HTTP 400. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/a6d4eb28861f8d0fb3fd4ab400a1b70f6825208b">a6d4eb28</a>)</li>
    <li><strong>client-datasync:</strong> Added support for FIPS VPC
    endpoints in FIPS-enabled AWS Regions. (<a
    href="https://github.com/aws/aws-sdk-js-v3/commit/def03385d2f02876fabd6f00ae2dc851c969d32e">def03385</a>)</li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-eventbridge/CHANGELOG.md"><code>@​aws-sdk/client-eventbridge</code>'s
    changelog</a>.</em></p>
    <blockquote>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.900.0...v3.901.0">3.901.0</a>
    (2025-10-01)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-eventbridge</code></p>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.898.0...v3.899.0">3.899.0</a>
    (2025-09-29)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-eventbridge</code></p>
    <h1><a
    href="https://github.com/aws/aws-sdk-js-v3/compare/v3.895.0...v3.896.0">3.896.0</a>
    (2025-09-24)</h1>
    <p><strong>Note:</strong> Version bump only for package
    <code>@​aws-sdk/client-eventbridge</code></p>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/5befda8667e806c2e95556a55d09b05bc9f0dd3a"><code>5befda8</code></a>
    Publish v3.901.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/0a418cc265b71347d0582d7ec2b937d51f5407ce"><code>0a418cc</code></a>
    chore: bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-eventbridge/issues/7391">#7391</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/99ff240110f8e2213f96ab208b44fe7cdf22be4a"><code>99ff240</code></a>
    Publish v3.899.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/ad1514df905b7b661f7f81050f5f2102d31e5cfa"><code>ad1514d</code></a>
    chore(codegen): sync for separating error schema &amp; ctor (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-eventbridge/issues/7377">#7377</a>)</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/115af678470101f95f86bac31e42f1d6acd8b9d5"><code>115af67</code></a>
    Publish v3.896.0</li>
    <li><a
    href="https://github.com/aws/aws-sdk-js-v3/commit/76ac1de2947a077fd53217af55f8f3c9e1203287"><code>76ac1de</code></a>
    chore(codegen): bump '@smithy/*' versions (<a
    href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-eventbridge/issues/7370">#7370</a>)</li>
    <li>See full diff in <a
    href="https://github.com/aws/aws-sdk-js-v3/commits/v3.901.0/clients/client-eventbridge">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>
    dependabot[bot] authored Oct 3, 2025
    Configuration menu
    Copy the full SHA
    3025930 View commit details
    Browse the repository at this point in the history
  6. chore(lambda): bump the nx group in /lambdas with 3 updates (#4799)

    Bumps the nx group in /lambdas with 3 updates:
    [@nx/eslint](https://github.com/nrwl/nx/tree/HEAD/packages/eslint),
    [@nx/js](https://github.com/nrwl/nx/tree/HEAD/packages/js) and
    [@nx/vite](https://github.com/nrwl/nx/tree/HEAD/packages/vite).
    
    Updates `@nx/eslint` from 21.5.3 to 21.6.1
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/nrwl/nx/releases"><code>@​nx/eslint</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>21.6.1 (2025-09-29)</h2>
    <h3>🚀 Features</h3>
    <ul>
    <li><strong>angular:</strong> support angular v20.3.0 (<a
    href="https://redirect.github.com/nrwl/nx/pull/32730">#32730</a>)</li>
    <li><strong>core:</strong> replace the pagination from the tui tasks
    list with scrolling (<a
    href="https://redirect.github.com/nrwl/nx/pull/32560">#32560</a>)</li>
    <li><strong>core:</strong> generate AI files in create-nx-workspace (<a
    href="https://redirect.github.com/nrwl/nx/pull/32442">#32442</a>)</li>
    <li><strong>core:</strong> add NX_PROJECT_ROOT environment variable to
    runti… (<a
    href="https://redirect.github.com/nrwl/nx/pull/32736">#32736</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/31428">#31428</a>)</li>
    <li><strong>core:</strong> improve split target to support Gradle format
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32766">#32766</a>)</li>
    <li><strong>core:</strong> add id, start and end time to lifecycle hooks
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32583">#32583</a>)</li>
    <li><strong>core:</strong> add configure-ai-agents command (<a
    href="https://redirect.github.com/nrwl/nx/pull/32825">#32825</a>)</li>
    <li><strong>docker:</strong> add env var for providing docker registry
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32676">#32676</a>)</li>
    <li><strong>docker:</strong> ensure docker:build dependsOn build (<a
    href="https://redirect.github.com/nrwl/nx/pull/32697">#32697</a>)</li>
    <li><strong>graph:</strong> unified graph UI and controls (<a
    href="https://redirect.github.com/nrwl/nx/pull/32724">#32724</a>)</li>
    <li><strong>misc:</strong> add Cookiebot global scripts to astro-docs
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32660">#32660</a>)</li>
    <li><strong>nx-dev:</strong> disable Algolia search on non-docs pages
    when Astro docs are enabled (<a
    href="https://redirect.github.com/nrwl/nx/pull/32789">#32789</a>)</li>
    <li><strong>nx-dev:</strong> change login button to try nx cloud (<a
    href="https://github.com/nrwl/nx/commit/5e0bcae9ef">5e0bcae9ef</a>)</li>
    <li><strong>nx-dev:</strong> enhance UI animations &amp; statistics
    display (<a
    href="https://redirect.github.com/nrwl/nx/pull/32863">#32863</a>)</li>
    <li><strong>release:</strong> new option
    preserveMatchingDependencyRanges to not update matching version ranges
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32556">#32556</a>)</li>
    <li><strong>rspack:</strong> respect deleteOutputPath option in rspack
    executor (<a
    href="https://redirect.github.com/nrwl/nx/pull/32609">#32609</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32015">#32015</a>)</li>
    <li><strong>testing:</strong> infer task to merge reports from
    playwright atomized tasks (<a
    href="https://redirect.github.com/nrwl/nx/pull/31615">#31615</a>)</li>
    <li><strong>testing:</strong> support inferring atomized tasks for
    cypress component tests (<a
    href="https://redirect.github.com/nrwl/nx/pull/32733">#32733</a>)</li>
    <li><strong>testing:</strong> forward <code>e2e-ci</code> task options
    to their atomized tasks (<a
    href="https://redirect.github.com/nrwl/nx/pull/32765">#32765</a>)</li>
    <li>⚠️ <strong>webpack:</strong> remove SVGR option and provide withSvgr
    composable function (<a
    href="https://redirect.github.com/nrwl/nx/pull/32843">#32843</a>)</li>
    </ul>
    <h3>🩹 Fixes</h3>
    <ul>
    <li><strong>angular:</strong> install a compatible version of jest for
    angular (<a
    href="https://redirect.github.com/nrwl/nx/pull/32744">#32744</a>)</li>
    <li><strong>angular-rspack:</strong> show correct file sizes in build
    stats for i18n builds (<a
    href="https://redirect.github.com/nrwl/nx/pull/32758">#32758</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32277">#32277</a>)</li>
    <li><strong>angular-rspack:</strong> ensure assets extracted from
    stylesheets correctly <a
    href="https://github.com/nrwl/nx/tree/HEAD/packages/eslint/issues/32487">#32487</a>
    (<a href="https://redirect.github.com/nrwl/nx/pull/32759">#32759</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32487">#32487</a>)</li>
    <li><strong>bundling:</strong> postcss-cli-resources should handle
    relative urls <a
    href="https://github.com/nrwl/nx/tree/HEAD/packages/eslint/issues/32582">#32582</a>
    (<a href="https://redirect.github.com/nrwl/nx/pull/32658">#32658</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32582">#32582</a>)</li>
    <li><strong>core:</strong> ensure only supported bundlers are used for
    angular fallback to default (<a
    href="https://redirect.github.com/nrwl/nx/pull/32655">#32655</a>)</li>
    <li><strong>core:</strong> invalidate project graph when external nodes
    change (<a
    href="https://redirect.github.com/nrwl/nx/pull/32626">#32626</a>)</li>
    <li><strong>core:</strong> check if daemon process is actually alive
    before trying to kill it (<a
    href="https://redirect.github.com/nrwl/nx/pull/32661">#32661</a>)</li>
    <li><strong>core:</strong> add bold styling to terminal pane title when
    focused (<a
    href="https://redirect.github.com/nrwl/nx/pull/32462">#32462</a>)</li>
    <li><strong>core:</strong> resolve watcher infinite loops from missing
    parent gitignore support (<a
    href="https://redirect.github.com/nrwl/nx/pull/32604">#32604</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/30313">#30313</a>)</li>
    <li><strong>core:</strong> check nx packages for provenance config
    before running nx migrate (<a
    href="https://redirect.github.com/nrwl/nx/pull/32557">#32557</a>)</li>
    <li><strong>core:</strong> handle uninstalled nx console case in
    autoinstall logic (<a
    href="https://redirect.github.com/nrwl/nx/pull/32673">#32673</a>)</li>
    <li><strong>core:</strong> filter task duration estimation by successful
    tasks only (<a
    href="https://redirect.github.com/nrwl/nx/pull/32688">#32688</a>)</li>
    <li><strong>core:</strong> move git utilities to fix WASM build (<a
    href="https://redirect.github.com/nrwl/nx/pull/32695">#32695</a>)</li>
    <li><strong>core:</strong> detect vscode insiders as separate editor (<a
    href="https://redirect.github.com/nrwl/nx/pull/32679">#32679</a>)</li>
    <li><strong>core:</strong> exit fork process and children when ipc
    connection closes (<a
    href="https://redirect.github.com/nrwl/nx/pull/32681">#32681</a>)</li>
    <li><strong>core:</strong> improve error messages for provenance checks
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32680">#32680</a>)</li>
    <li><strong>core:</strong> add missing view command to npm (<a
    href="https://redirect.github.com/nrwl/nx/pull/32729">#32729</a>)</li>
    <li><strong>core:</strong> kill child process correctly when run-script
    executor process is killed and not using pseudoterminal (<a
    href="https://redirect.github.com/nrwl/nx/pull/32699">#32699</a>)</li>
    <li><strong>core:</strong> do not shutdown daemon for project graph
    errors (<a
    href="https://redirect.github.com/nrwl/nx/pull/32764">#32764</a>)</li>
    <li><strong>core:</strong> fix misc db-related issues (<a
    href="https://redirect.github.com/nrwl/nx/pull/32745">#32745</a>)</li>
    <li><strong>core:</strong> update tui title text structure (<a
    href="https://redirect.github.com/nrwl/nx/pull/32793">#32793</a>)</li>
    <li><strong>core:</strong> move from execFile to exec for windows
    support (<a
    href="https://redirect.github.com/nrwl/nx/pull/32836">#32836</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32713">#32713</a>)</li>
    <li><strong>core:</strong> do not show placeholder parallel entries in
    tui when filtering (<a
    href="https://redirect.github.com/nrwl/nx/pull/32837">#32837</a>)</li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/nrwl/nx/commit/79ac44d078d1cd89f87e4e501efc48af85132d71"><code>79ac44d</code></a>
    fix(misc): remove unnecessary <code>bust</code> property from plugin
    hashes (<a
    href="https://github.com/nrwl/nx/tree/HEAD/packages/eslint/issues/32807">#32807</a>)</li>
    <li>See full diff in <a
    href="https://github.com/nrwl/nx/commits/21.6.1/packages/eslint">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    Updates `@nx/js` from 21.5.3 to 21.6.1
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/nrwl/nx/releases"><code>@​nx/js</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>21.6.1 (2025-09-29)</h2>
    <h3>🚀 Features</h3>
    <ul>
    <li><strong>angular:</strong> support angular v20.3.0 (<a
    href="https://redirect.github.com/nrwl/nx/pull/32730">#32730</a>)</li>
    <li><strong>core:</strong> replace the pagination from the tui tasks
    list with scrolling (<a
    href="https://redirect.github.com/nrwl/nx/pull/32560">#32560</a>)</li>
    <li><strong>core:</strong> generate AI files in create-nx-workspace (<a
    href="https://redirect.github.com/nrwl/nx/pull/32442">#32442</a>)</li>
    <li><strong>core:</strong> add NX_PROJECT_ROOT environment variable to
    runti… (<a
    href="https://redirect.github.com/nrwl/nx/pull/32736">#32736</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/31428">#31428</a>)</li>
    <li><strong>core:</strong> improve split target to support Gradle format
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32766">#32766</a>)</li>
    <li><strong>core:</strong> add id, start and end time to lifecycle hooks
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32583">#32583</a>)</li>
    <li><strong>core:</strong> add configure-ai-agents command (<a
    href="https://redirect.github.com/nrwl/nx/pull/32825">#32825</a>)</li>
    <li><strong>docker:</strong> add env var for providing docker registry
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32676">#32676</a>)</li>
    <li><strong>docker:</strong> ensure docker:build dependsOn build (<a
    href="https://redirect.github.com/nrwl/nx/pull/32697">#32697</a>)</li>
    <li><strong>graph:</strong> unified graph UI and controls (<a
    href="https://redirect.github.com/nrwl/nx/pull/32724">#32724</a>)</li>
    <li><strong>misc:</strong> add Cookiebot global scripts to astro-docs
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32660">#32660</a>)</li>
    <li><strong>nx-dev:</strong> disable Algolia search on non-docs pages
    when Astro docs are enabled (<a
    href="https://redirect.github.com/nrwl/nx/pull/32789">#32789</a>)</li>
    <li><strong>nx-dev:</strong> change login button to try nx cloud (<a
    href="https://github.com/nrwl/nx/commit/5e0bcae9ef">5e0bcae9ef</a>)</li>
    <li><strong>nx-dev:</strong> enhance UI animations &amp; statistics
    display (<a
    href="https://redirect.github.com/nrwl/nx/pull/32863">#32863</a>)</li>
    <li><strong>release:</strong> new option
    preserveMatchingDependencyRanges to not update matching version ranges
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32556">#32556</a>)</li>
    <li><strong>rspack:</strong> respect deleteOutputPath option in rspack
    executor (<a
    href="https://redirect.github.com/nrwl/nx/pull/32609">#32609</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32015">#32015</a>)</li>
    <li><strong>testing:</strong> infer task to merge reports from
    playwright atomized tasks (<a
    href="https://redirect.github.com/nrwl/nx/pull/31615">#31615</a>)</li>
    <li><strong>testing:</strong> support inferring atomized tasks for
    cypress component tests (<a
    href="https://redirect.github.com/nrwl/nx/pull/32733">#32733</a>)</li>
    <li><strong>testing:</strong> forward <code>e2e-ci</code> task options
    to their atomized tasks (<a
    href="https://redirect.github.com/nrwl/nx/pull/32765">#32765</a>)</li>
    <li>⚠️ <strong>webpack:</strong> remove SVGR option and provide withSvgr
    composable function (<a
    href="https://redirect.github.com/nrwl/nx/pull/32843">#32843</a>)</li>
    </ul>
    <h3>🩹 Fixes</h3>
    <ul>
    <li><strong>angular:</strong> install a compatible version of jest for
    angular (<a
    href="https://redirect.github.com/nrwl/nx/pull/32744">#32744</a>)</li>
    <li><strong>angular-rspack:</strong> show correct file sizes in build
    stats for i18n builds (<a
    href="https://redirect.github.com/nrwl/nx/pull/32758">#32758</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32277">#32277</a>)</li>
    <li><strong>angular-rspack:</strong> ensure assets extracted from
    stylesheets correctly <a
    href="https://github.com/nrwl/nx/tree/HEAD/packages/js/issues/32487">#32487</a>
    (<a href="https://redirect.github.com/nrwl/nx/pull/32759">#32759</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32487">#32487</a>)</li>
    <li><strong>bundling:</strong> postcss-cli-resources should handle
    relative urls <a
    href="https://github.com/nrwl/nx/tree/HEAD/packages/js/issues/32582">#32582</a>
    (<a href="https://redirect.github.com/nrwl/nx/pull/32658">#32658</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32582">#32582</a>)</li>
    <li><strong>core:</strong> ensure only supported bundlers are used for
    angular fallback to default (<a
    href="https://redirect.github.com/nrwl/nx/pull/32655">#32655</a>)</li>
    <li><strong>core:</strong> invalidate project graph when external nodes
    change (<a
    href="https://redirect.github.com/nrwl/nx/pull/32626">#32626</a>)</li>
    <li><strong>core:</strong> check if daemon process is actually alive
    before trying to kill it (<a
    href="https://redirect.github.com/nrwl/nx/pull/32661">#32661</a>)</li>
    <li><strong>core:</strong> add bold styling to terminal pane title when
    focused (<a
    href="https://redirect.github.com/nrwl/nx/pull/32462">#32462</a>)</li>
    <li><strong>core:</strong> resolve watcher infinite loops from missing
    parent gitignore support (<a
    href="https://redirect.github.com/nrwl/nx/pull/32604">#32604</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/30313">#30313</a>)</li>
    <li><strong>core:</strong> check nx packages for provenance config
    before running nx migrate (<a
    href="https://redirect.github.com/nrwl/nx/pull/32557">#32557</a>)</li>
    <li><strong>core:</strong> handle uninstalled nx console case in
    autoinstall logic (<a
    href="https://redirect.github.com/nrwl/nx/pull/32673">#32673</a>)</li>
    <li><strong>core:</strong> filter task duration estimation by successful
    tasks only (<a
    href="https://redirect.github.com/nrwl/nx/pull/32688">#32688</a>)</li>
    <li><strong>core:</strong> move git utilities to fix WASM build (<a
    href="https://redirect.github.com/nrwl/nx/pull/32695">#32695</a>)</li>
    <li><strong>core:</strong> detect vscode insiders as separate editor (<a
    href="https://redirect.github.com/nrwl/nx/pull/32679">#32679</a>)</li>
    <li><strong>core:</strong> exit fork process and children when ipc
    connection closes (<a
    href="https://redirect.github.com/nrwl/nx/pull/32681">#32681</a>)</li>
    <li><strong>core:</strong> improve error messages for provenance checks
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32680">#32680</a>)</li>
    <li><strong>core:</strong> add missing view command to npm (<a
    href="https://redirect.github.com/nrwl/nx/pull/32729">#32729</a>)</li>
    <li><strong>core:</strong> kill child process correctly when run-script
    executor process is killed and not using pseudoterminal (<a
    href="https://redirect.github.com/nrwl/nx/pull/32699">#32699</a>)</li>
    <li><strong>core:</strong> do not shutdown daemon for project graph
    errors (<a
    href="https://redirect.github.com/nrwl/nx/pull/32764">#32764</a>)</li>
    <li><strong>core:</strong> fix misc db-related issues (<a
    href="https://redirect.github.com/nrwl/nx/pull/32745">#32745</a>)</li>
    <li><strong>core:</strong> update tui title text structure (<a
    href="https://redirect.github.com/nrwl/nx/pull/32793">#32793</a>)</li>
    <li><strong>core:</strong> move from execFile to exec for windows
    support (<a
    href="https://redirect.github.com/nrwl/nx/pull/32836">#32836</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32713">#32713</a>)</li>
    <li><strong>core:</strong> do not show placeholder parallel entries in
    tui when filtering (<a
    href="https://redirect.github.com/nrwl/nx/pull/32837">#32837</a>)</li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/nrwl/nx/commit/79ac44d078d1cd89f87e4e501efc48af85132d71"><code>79ac44d</code></a>
    fix(misc): remove unnecessary <code>bust</code> property from plugin
    hashes (<a
    href="https://github.com/nrwl/nx/tree/HEAD/packages/js/issues/32807">#32807</a>)</li>
    <li><a
    href="https://github.com/nrwl/nx/commit/dd5daeae0cf49b3359549044de4812e158e97c20"><code>dd5daea</code></a>
    fix(misc): add typescript output to the eslint ignore when needed (<a
    href="https://github.com/nrwl/nx/tree/HEAD/packages/js/issues/32775">#32775</a>)</li>
    <li><a
    href="https://github.com/nrwl/nx/commit/67f60e729f1cab779cc8a6da24c92c009adb26bb"><code>67f60e7</code></a>
    feat(release): new option preserveMatchingDependencyRanges to not update
    matc...</li>
    <li>See full diff in <a
    href="https://github.com/nrwl/nx/commits/21.6.1/packages/js">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    Updates `@nx/vite` from 21.5.3 to 21.6.1
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/nrwl/nx/releases"><code>@​nx/vite</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>21.6.1 (2025-09-29)</h2>
    <h3>🚀 Features</h3>
    <ul>
    <li><strong>angular:</strong> support angular v20.3.0 (<a
    href="https://redirect.github.com/nrwl/nx/pull/32730">#32730</a>)</li>
    <li><strong>core:</strong> replace the pagination from the tui tasks
    list with scrolling (<a
    href="https://redirect.github.com/nrwl/nx/pull/32560">#32560</a>)</li>
    <li><strong>core:</strong> generate AI files in create-nx-workspace (<a
    href="https://redirect.github.com/nrwl/nx/pull/32442">#32442</a>)</li>
    <li><strong>core:</strong> add NX_PROJECT_ROOT environment variable to
    runti… (<a
    href="https://redirect.github.com/nrwl/nx/pull/32736">#32736</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/31428">#31428</a>)</li>
    <li><strong>core:</strong> improve split target to support Gradle format
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32766">#32766</a>)</li>
    <li><strong>core:</strong> add id, start and end time to lifecycle hooks
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32583">#32583</a>)</li>
    <li><strong>core:</strong> add configure-ai-agents command (<a
    href="https://redirect.github.com/nrwl/nx/pull/32825">#32825</a>)</li>
    <li><strong>docker:</strong> add env var for providing docker registry
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32676">#32676</a>)</li>
    <li><strong>docker:</strong> ensure docker:build dependsOn build (<a
    href="https://redirect.github.com/nrwl/nx/pull/32697">#32697</a>)</li>
    <li><strong>graph:</strong> unified graph UI and controls (<a
    href="https://redirect.github.com/nrwl/nx/pull/32724">#32724</a>)</li>
    <li><strong>misc:</strong> add Cookiebot global scripts to astro-docs
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32660">#32660</a>)</li>
    <li><strong>nx-dev:</strong> disable Algolia search on non-docs pages
    when Astro docs are enabled (<a
    href="https://redirect.github.com/nrwl/nx/pull/32789">#32789</a>)</li>
    <li><strong>nx-dev:</strong> change login button to try nx cloud (<a
    href="https://github.com/nrwl/nx/commit/5e0bcae9ef">5e0bcae9ef</a>)</li>
    <li><strong>nx-dev:</strong> enhance UI animations &amp; statistics
    display (<a
    href="https://redirect.github.com/nrwl/nx/pull/32863">#32863</a>)</li>
    <li><strong>release:</strong> new option
    preserveMatchingDependencyRanges to not update matching version ranges
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32556">#32556</a>)</li>
    <li><strong>rspack:</strong> respect deleteOutputPath option in rspack
    executor (<a
    href="https://redirect.github.com/nrwl/nx/pull/32609">#32609</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32015">#32015</a>)</li>
    <li><strong>testing:</strong> infer task to merge reports from
    playwright atomized tasks (<a
    href="https://redirect.github.com/nrwl/nx/pull/31615">#31615</a>)</li>
    <li><strong>testing:</strong> support inferring atomized tasks for
    cypress component tests (<a
    href="https://redirect.github.com/nrwl/nx/pull/32733">#32733</a>)</li>
    <li><strong>testing:</strong> forward <code>e2e-ci</code> task options
    to their atomized tasks (<a
    href="https://redirect.github.com/nrwl/nx/pull/32765">#32765</a>)</li>
    <li>⚠️ <strong>webpack:</strong> remove SVGR option and provide withSvgr
    composable function (<a
    href="https://redirect.github.com/nrwl/nx/pull/32843">#32843</a>)</li>
    </ul>
    <h3>🩹 Fixes</h3>
    <ul>
    <li><strong>angular:</strong> install a compatible version of jest for
    angular (<a
    href="https://redirect.github.com/nrwl/nx/pull/32744">#32744</a>)</li>
    <li><strong>angular-rspack:</strong> show correct file sizes in build
    stats for i18n builds (<a
    href="https://redirect.github.com/nrwl/nx/pull/32758">#32758</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32277">#32277</a>)</li>
    <li><strong>angular-rspack:</strong> ensure assets extracted from
    stylesheets correctly <a
    href="https://github.com/nrwl/nx/tree/HEAD/packages/vite/issues/32487">#32487</a>
    (<a href="https://redirect.github.com/nrwl/nx/pull/32759">#32759</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32487">#32487</a>)</li>
    <li><strong>bundling:</strong> postcss-cli-resources should handle
    relative urls <a
    href="https://github.com/nrwl/nx/tree/HEAD/packages/vite/issues/32582">#32582</a>
    (<a href="https://redirect.github.com/nrwl/nx/pull/32658">#32658</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32582">#32582</a>)</li>
    <li><strong>core:</strong> ensure only supported bundlers are used for
    angular fallback to default (<a
    href="https://redirect.github.com/nrwl/nx/pull/32655">#32655</a>)</li>
    <li><strong>core:</strong> invalidate project graph when external nodes
    change (<a
    href="https://redirect.github.com/nrwl/nx/pull/32626">#32626</a>)</li>
    <li><strong>core:</strong> check if daemon process is actually alive
    before trying to kill it (<a
    href="https://redirect.github.com/nrwl/nx/pull/32661">#32661</a>)</li>
    <li><strong>core:</strong> add bold styling to terminal pane title when
    focused (<a
    href="https://redirect.github.com/nrwl/nx/pull/32462">#32462</a>)</li>
    <li><strong>core:</strong> resolve watcher infinite loops from missing
    parent gitignore support (<a
    href="https://redirect.github.com/nrwl/nx/pull/32604">#32604</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/30313">#30313</a>)</li>
    <li><strong>core:</strong> check nx packages for provenance config
    before running nx migrate (<a
    href="https://redirect.github.com/nrwl/nx/pull/32557">#32557</a>)</li>
    <li><strong>core:</strong> handle uninstalled nx console case in
    autoinstall logic (<a
    href="https://redirect.github.com/nrwl/nx/pull/32673">#32673</a>)</li>
    <li><strong>core:</strong> filter task duration estimation by successful
    tasks only (<a
    href="https://redirect.github.com/nrwl/nx/pull/32688">#32688</a>)</li>
    <li><strong>core:</strong> move git utilities to fix WASM build (<a
    href="https://redirect.github.com/nrwl/nx/pull/32695">#32695</a>)</li>
    <li><strong>core:</strong> detect vscode insiders as separate editor (<a
    href="https://redirect.github.com/nrwl/nx/pull/32679">#32679</a>)</li>
    <li><strong>core:</strong> exit fork process and children when ipc
    connection closes (<a
    href="https://redirect.github.com/nrwl/nx/pull/32681">#32681</a>)</li>
    <li><strong>core:</strong> improve error messages for provenance checks
    (<a
    href="https://redirect.github.com/nrwl/nx/pull/32680">#32680</a>)</li>
    <li><strong>core:</strong> add missing view command to npm (<a
    href="https://redirect.github.com/nrwl/nx/pull/32729">#32729</a>)</li>
    <li><strong>core:</strong> kill child process correctly when run-script
    executor process is killed and not using pseudoterminal (<a
    href="https://redirect.github.com/nrwl/nx/pull/32699">#32699</a>)</li>
    <li><strong>core:</strong> do not shutdown daemon for project graph
    errors (<a
    href="https://redirect.github.com/nrwl/nx/pull/32764">#32764</a>)</li>
    <li><strong>core:</strong> fix misc db-related issues (<a
    href="https://redirect.github.com/nrwl/nx/pull/32745">#32745</a>)</li>
    <li><strong>core:</strong> update tui title text structure (<a
    href="https://redirect.github.com/nrwl/nx/pull/32793">#32793</a>)</li>
    <li><strong>core:</strong> move from execFile to exec for windows
    support (<a
    href="https://redirect.github.com/nrwl/nx/pull/32836">#32836</a>, <a
    href="https://redirect.github.com/nrwl/nx/issues/32713">#32713</a>)</li>
    <li><strong>core:</strong> do not show placeholder parallel entries in
    tui when filtering (<a
    href="https://redirect.github.com/nrwl/nx/pull/32837">#32837</a>)</li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/nrwl/nx/commit/1ff26dde52e0760476f7e16511d95f7b8b9c5a83"><code>1ff26dd</code></a>
    fix(core): check nx packages for provenance config before running nx
    migrate ...</li>
    <li><a
    href="https://github.com/nrwl/nx/commit/46c26280e687d156c6493cafb72b313c1b2d85c6"><code>46c2628</code></a>
    fix(vite): handle config server properly for libs (<a
    href="https://github.com/nrwl/nx/tree/HEAD/packages/vite/issues/32608">#32608</a>)</li>
    <li>See full diff in <a
    href="https://github.com/nrwl/nx/commits/21.6.1/packages/vite">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>
    dependabot[bot] authored Oct 3, 2025
    Configuration menu
    Copy the full SHA
    df9593c View commit details
    Browse the repository at this point in the history
  7. chore(deps): bump github/codeql-action from 3.30.3 to 3.30.5 (#4796)

    Bumps [github/codeql-action](https://github.com/github/codeql-action)
    from 3.30.3 to 3.30.5.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/github/codeql-action/releases">github/codeql-action's
    releases</a>.</em></p>
    <blockquote>
    <h2>v3.30.5</h2>
    <h1>CodeQL Action Changelog</h1>
    <p>See the <a
    href="https://github.com/github/codeql-action/releases">releases
    page</a> for the relevant changes to the CodeQL CLI and language
    packs.</p>
    <h2>3.30.5 - 26 Sep 2025</h2>
    <ul>
    <li>We fixed a bug that was introduced in <code>3.30.4</code> with
    <code>upload-sarif</code> which resulted in files without a
    <code>.sarif</code> extension not getting uploaded. <a
    href="https://redirect.github.com/github/codeql-action/pull/3160">#3160</a></li>
    </ul>
    <p>See the full <a
    href="https://github.com/github/codeql-action/blob/v3.30.5/CHANGELOG.md">CHANGELOG.md</a>
    for more information.</p>
    <h2>v3.30.4</h2>
    <h1>CodeQL Action Changelog</h1>
    <p>See the <a
    href="https://github.com/github/codeql-action/releases">releases
    page</a> for the relevant changes to the CodeQL CLI and language
    packs.</p>
    <h2>3.30.4 - 25 Sep 2025</h2>
    <ul>
    <li>We have improved the CodeQL Action's ability to validate that the
    workflow it is used in does not use different versions of the CodeQL
    Action for different workflow steps. Mixing different versions of the
    CodeQL Action in the same workflow is unsupported and can lead to
    unpredictable results. A warning will now be emitted from the
    <code>codeql-action/init</code> step if different versions of the CodeQL
    Action are detected in the workflow file. Additionally, an error will
    now be thrown by the other CodeQL Action steps if they load a
    configuration file that was generated by a different version of the
    <code>codeql-action/init</code> step. <a
    href="https://redirect.github.com/github/codeql-action/pull/3099">#3099</a>
    and <a
    href="https://redirect.github.com/github/codeql-action/pull/3100">#3100</a></li>
    <li>We added support for reducing the size of dependency caches for Java
    analyses, which will reduce cache usage and speed up workflows. This
    will be enabled automatically at a later time. <a
    href="https://redirect.github.com/github/codeql-action/pull/3107">#3107</a></li>
    <li>You can now run the latest CodeQL nightly bundle by passing
    <code>tools: nightly</code> to the <code>init</code> action. In general,
    the nightly bundle is unstable and we only recommend running it when
    directed by GitHub staff. <a
    href="https://redirect.github.com/github/codeql-action/pull/3130">#3130</a></li>
    <li>Update default CodeQL bundle version to 2.23.1. <a
    href="https://redirect.github.com/github/codeql-action/pull/3118">#3118</a></li>
    </ul>
    <p>See the full <a
    href="https://github.com/github/codeql-action/blob/v3.30.4/CHANGELOG.md">CHANGELOG.md</a>
    for more information.</p>
    </blockquote>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/github/codeql-action/blob/main/CHANGELOG.md">github/codeql-action's
    changelog</a>.</em></p>
    <blockquote>
    <h1>CodeQL Action Changelog</h1>
    <p>See the <a
    href="https://github.com/github/codeql-action/releases">releases
    page</a> for the relevant changes to the CodeQL CLI and language
    packs.</p>
    <h2>[UNRELEASED]</h2>
    <p>No user facing changes.</p>
    <h2>3.30.5 - 26 Sep 2025</h2>
    <ul>
    <li>We fixed a bug that was introduced in <code>3.30.4</code> with
    <code>upload-sarif</code> which resulted in files without a
    <code>.sarif</code> extension not getting uploaded. <a
    href="https://redirect.github.com/github/codeql-action/pull/3160">#3160</a></li>
    </ul>
    <h2>3.30.4 - 25 Sep 2025</h2>
    <ul>
    <li>We have improved the CodeQL Action's ability to validate that the
    workflow it is used in does not use different versions of the CodeQL
    Action for different workflow steps. Mixing different versions of the
    CodeQL Action in the same workflow is unsupported and can lead to
    unpredictable results. A warning will now be emitted from the
    <code>codeql-action/init</code> step if different versions of the CodeQL
    Action are detected in the workflow file. Additionally, an error will
    now be thrown by the other CodeQL Action steps if they load a
    configuration file that was generated by a different version of the
    <code>codeql-action/init</code> step. <a
    href="https://redirect.github.com/github/codeql-action/pull/3099">#3099</a>
    and <a
    href="https://redirect.github.com/github/codeql-action/pull/3100">#3100</a></li>
    <li>We added support for reducing the size of dependency caches for Java
    analyses, which will reduce cache usage and speed up workflows. This
    will be enabled automatically at a later time. <a
    href="https://redirect.github.com/github/codeql-action/pull/3107">#3107</a></li>
    <li>You can now run the latest CodeQL nightly bundle by passing
    <code>tools: nightly</code> to the <code>init</code> action. In general,
    the nightly bundle is unstable and we only recommend running it when
    directed by GitHub staff. <a
    href="https://redirect.github.com/github/codeql-action/pull/3130">#3130</a></li>
    <li>Update default CodeQL bundle version to 2.23.1. <a
    href="https://redirect.github.com/github/codeql-action/pull/3118">#3118</a></li>
    </ul>
    <h2>3.30.3 - 10 Sep 2025</h2>
    <p>No user facing changes.</p>
    <h2>3.30.2 - 09 Sep 2025</h2>
    <ul>
    <li>Fixed a bug which could cause language autodetection to fail. <a
    href="https://redirect.github.com/github/codeql-action/pull/3084">#3084</a></li>
    <li>Experimental: The <code>quality-queries</code> input that was added
    in <code>3.29.2</code> as part of an internal experiment is now
    deprecated and will be removed in an upcoming version of the CodeQL
    Action. It has been superseded by a new <code>analysis-kinds</code>
    input, which is part of the same internal experiment. Do not use this in
    production as it is subject to change at any time. <a
    href="https://redirect.github.com/github/codeql-action/pull/3064">#3064</a></li>
    </ul>
    <h2>3.30.1 - 05 Sep 2025</h2>
    <ul>
    <li>Update default CodeQL bundle version to 2.23.0. <a
    href="https://redirect.github.com/github/codeql-action/pull/3077">#3077</a></li>
    </ul>
    <h2>3.30.0 - 01 Sep 2025</h2>
    <ul>
    <li>Reduce the size of the CodeQL Action, speeding up workflows by
    approximately 4 seconds. <a
    href="https://redirect.github.com/github/codeql-action/pull/3054">#3054</a></li>
    </ul>
    <h2>3.29.11 - 21 Aug 2025</h2>
    <ul>
    <li>Update default CodeQL bundle version to 2.22.4. <a
    href="https://redirect.github.com/github/codeql-action/pull/3044">#3044</a></li>
    </ul>
    <h2>3.29.10 - 18 Aug 2025</h2>
    <p>No user facing changes.</p>
    <h2>3.29.9 - 12 Aug 2025</h2>
    <p>No user facing changes.</p>
    <h2>3.29.8 - 08 Aug 2025</h2>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/github/codeql-action/commit/3599b3baa15b485a2e49ef411a7a4bb2452e7f93"><code>3599b3b</code></a>
    Merge pull request <a
    href="https://redirect.github.com/github/codeql-action/issues/3161">#3161</a>
    from github/update-v3.30.5-0a67bd46a</li>
    <li><a
    href="https://github.com/github/codeql-action/commit/2ca0085e584affd600efbd3930bc90e48dbacb46"><code>2ca0085</code></a>
    Update changelog for v3.30.5</li>
    <li><a
    href="https://github.com/github/codeql-action/commit/0a67bd46a0f456ddad9e4b732137f519280275db"><code>0a67bd4</code></a>
    Merge pull request <a
    href="https://redirect.github.com/github/codeql-action/issues/3160">#3160</a>
    from github/mbg/fix/upload-sarif</li>
    <li><a
    href="https://github.com/github/codeql-action/commit/8e34f2f3bf0f3f0b192913b0e0f234372329699b"><code>8e34f2f</code></a>
    Add changelog</li>
    <li><a
    href="https://github.com/github/codeql-action/commit/0b7fc5664842c1a6bb23c4ef64b85438afcb76c5"><code>0b7fc56</code></a>
    Fix <code>upload-sarif</code> not uploading non-<code>.sarif</code>
    files</li>
    <li><a
    href="https://github.com/github/codeql-action/commit/94a9b7a1101a1320dcadcbda5e7fd9a1e6abaaca"><code>94a9b7a</code></a>
    Merge pull request <a
    href="https://redirect.github.com/github/codeql-action/issues/3155">#3155</a>
    from github/mbg/node/no-install-in-actions</li>
    <li><a
    href="https://github.com/github/codeql-action/commit/a0ae9ba2026911d58db9df06e6b074d8ef6c24c9"><code>a0ae9ba</code></a>
    Log what the script is doing</li>
    <li><a
    href="https://github.com/github/codeql-action/commit/b27a8ef21f72b5c541232d50400874a3f0a374b9"><code>b27a8ef</code></a>
    Exit if running in an Actions workflow</li>
    <li><a
    href="https://github.com/github/codeql-action/commit/65925679a36e83b45b5f1673869dabf891669742"><code>6592567</code></a>
    Merge pull request <a
    href="https://redirect.github.com/github/codeql-action/issues/3139">#3139</a>
    from github/henrymercer/fix-log-message</li>
    <li><a
    href="https://github.com/github/codeql-action/commit/fa64a7dee67e389b18445aa15d26426512d9ab97"><code>fa64a7d</code></a>
    Merge pull request <a
    href="https://redirect.github.com/github/codeql-action/issues/3154">#3154</a>
    from github/mbg/node/check-up-to-date-deps</li>
    <li>Additional commits viewable in <a
    href="https://github.com/github/codeql-action/compare/192325c86100d080feab897ff886c34abd4c83a3...3599b3baa15b485a2e49ef411a7a4bb2452e7f93">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github/codeql-action&package-manager=github_actions&previous-version=3.30.3&new-version=3.30.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    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 this major version` will close this PR and stop
    Dependabot creating any more for this major version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop
    Dependabot creating any more for this minor version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop
    Dependabot creating any more for this dependency (unless you reopen the
    PR or upgrade to it yourself)
    
    
    </details>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 3, 2025
    Configuration menu
    Copy the full SHA
    17a04bc View commit details
    Browse the repository at this point in the history
  8. docs: fix typo (#4801)

    `grapped` -> `grabbed`
    `Uncommet` -> `Uncomment`
    Sbozzolo authored Oct 3, 2025
    Configuration menu
    Copy the full SHA
    eace5ca View commit details
    Browse the repository at this point in the history
  9. chore(main): release 6.8.0 (#4804)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ##
    [6.8.0](v6.7.9...v6.8.0)
    (2025-10-03)
    
    
    ### Features
    
    * add cpu_options for EC2 launch template
    ([#4789](#4789))
    ([20eeead](20eeead))
    @kirschem-fernride
    
    
    ### Bug Fixes
    
    * **lambda:** bump the aws group across 1 directory with 7 updates
    ([#4805](#4805))
    ([3025930](3025930))
    * **lambda:** bump the octokit group in /lambdas with 3 updates
    ([#4794](#4794))
    ([73cf01e](73cf01e))
    
    ---
    This PR was generated with [Release
    Please](https://github.com/googleapis/release-please). See
    [documentation](https://github.com/googleapis/release-please#release-please).
    
    ---------
    
    Co-authored-by: runners-releaser[bot] <194412594+runners-releaser[bot]@users.noreply.github.com>
    Co-authored-by: github-aws-runners-pr|bot <github-aws-runners-pr[bot]@users.noreply.github.com>
    Co-authored-by: Niek Palm <[email protected]>
    3 people authored Oct 3, 2025
    Configuration menu
    Copy the full SHA
    3f115cd View commit details
    Browse the repository at this point in the history
Loading