-
Notifications
You must be signed in to change notification settings - Fork 694
Comparing changes
Open a pull request
base repository: github-aws-runners/terraform-aws-github-runner
base: v6.8.5
head repository: github-aws-runners/terraform-aws-github-runner
compare: v6.9.0
- 20 commits
- 43 files changed
- 9 contributors
Commits on Nov 3, 2025
-
chore: add concurrent workflow rules (#4855)
This pull request updates several GitHub Actions workflow files to add concurrency controls. The main goal is to prevent multiple runs of the same workflow from executing simultaneously on the same branch or ref, which helps reduce unnecessary resource usage and ensures that only the latest workflow run is active. Most workflows now use a concurrency group based on the workflow name and branch/ref, with `cancel-in-progress` set to `true` so that in-progress runs are canceled when a new run is triggered. Two workflows (`release.yml` and `stale.yml`) use a different concurrency configuration. Concurrency configuration added to workflows: **General concurrency improvements** * Added `concurrency` blocks to `.github/workflows/codeql.yml`, `.github/workflows/dependency-review.yml`, `.github/workflows/lambda.yml`, `.github/workflows/ossf-scorecard.yml`, `.github/workflows/ovs.yml`, `.github/workflows/packer-build.yml`, `.github/workflows/semantic-check.yml`, `.github/workflows/terraform.yml`, `.github/workflows/update-docs.yml`, and `.github/workflows/zizmor.yml` to group runs by workflow name and branch/ref and cancel in-progress runs (`cancel-in-progress: true`). [[1]](diffhunk://#diff-12783128521e452af0cfac94b99b8d250413c516ec71fe6d97dbea666ff7ba27R13-R16) [[2]](diffhunk://#diff-7cdd3ccec44c8ba176bdc3b9ef54c3f56aa210a1a4e2bb5f79d87b1e50314a18R12-R15) [[3]](diffhunk://#diff-b0732b88b9e5a3df48561602571a10179d2b28cbb21ba8032025932bc9606426R11-R14) [[4]](diffhunk://#diff-0f32dffa00fbb4b53f979f3524fd4f69451050cda001ae563ed49e27e702da7bR10-R13) [[5]](diffhunk://#diff-0efa76244190040e37ac26bd58a2e1c1155c0de92da9ddf72276d5354c5c0bf8R8-R11) [[6]](diffhunk://#diff-7d0fae1f42bb015ceff53b783c22a632e3c0aa2a62f4bf6cf3b71cf5c8d8cda1R11-R15) [[7]](diffhunk://#diff-9d577d2550fe414a048906bc0af8ff9188d21f432e41be311e49b3a910fe9ac4R8-R12) [[8]](diffhunk://#diff-10eac00f40a120814e0c56ca5bf5a61c8b335acbdeb977b72207606aa3daea4dR9-R12) [[9]](diffhunk://#diff-6cb924cb587613a1d83384b44ca0c806ccf512202b3f29f529fc6825cef21de2R9-R12) [[10]](diffhunk://#diff-8e6408444d2bf2bed6f02c5dc62a7f1f6ab7337eae098d332986e6a81411aeb7R13-R16) **Special concurrency configuration** * For `.github/workflows/release.yml`, added a concurrency group by workflow name and branch/ref, but set `cancel-in-progress: false` to allow multiple runs to proceed. * For `.github/workflows/stale.yml`, added a concurrency group by workflow name only, with `cancel-in-progress: false`. --------- Co-authored-by: Copilot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for be9572a - Browse repository at this point
Copy the full SHA be9572aView commit details -
chore: Configure Dependabot to ignore Node.js major version updates (#…
…4821) - [x] Explore repository structure and identify Node.js version usage - [x] Identify Dependabot configuration location - [x] Identify files using Node.js version (Lambda runtime is nodejs22.x) - [x] Update Dependabot configuration to ignore Node.js major version updates - [x] Add ignore rules for Docker images using Node.js (only in docker ecosystems) - [x] Remove incorrect ignore rule from github-actions ecosystem - [x] Add ignore rule for @types/node in npm ecosystem - [x] Update comments to reference Lambda runtime as configured via Terraform - [x] Test the configuration (YAML syntax validated) ## Summary Configured Dependabot to ignore major version updates for Node.js to keep aligned with Lambda runtime as configured via Terraform. ### Changes: 1. Added ignore rule for `@types/node` in npm ecosystem to prevent TypeScript type definitions from updating to incompatible major versions 2. Added ignore rule for `node` Docker image in `.ci/Dockerfile` updates 3. Added ignore rule for `mcr.microsoft.com/vscode/devcontainers/typescript-node` in `.devcontainer/Dockerfile` updates All ignore rules are configured to block `version-update:semver-major` updates only, allowing minor and patch updates to continue. <!-- START COPILOT CODING AGENT SUFFIX --> <details> <summary>Original prompt</summary> > Can you make a pr to avoid deprndabot is updating the major node version since we would like to keep it the same as the runtime used for lamda </details> <!-- START COPILOT CODING AGENT TIPS --> --- 💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click [here](https://survey3.medallia.com/?EAHeSx-AP01bZqG0Ld9QLQ) to start the survey. --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: npalm <[email protected]> Co-authored-by: Niek Palm <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 43ffcce - Browse repository at this point
Copy the full SHA 43ffcceView commit details -
chore: add cooldown interval to dependabot configuration (#4854)
This pull request updates the Dependabot configuration to introduce a cooldown period for experimental branches across multiple update directories. This change helps prevent Dependabot from creating experimental branches too frequently, reducing noise and potential merge conflicts. Dependabot configuration enhancements: * Added the `experimental-branch-cooldown` setting with `default-days: 5` to the root `/`, `/lambdas`, `/.ci/Dockerfile`, `/.devcontainer/Dockerfile`, and `/.github/workflows/mkdocs` update directories in `.github/dependabot.yml`. [[1]](diffhunk://#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28R18-R19) [[2]](diffhunk://#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28R30-R31) [[3]](diffhunk://#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28R63-R64) [[4]](diffhunk://#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28R75-R76) [[5]](diffhunk://#diff-dd4fbda47e51f1e35defb9275a9cd9c212ecde0b870cba89ddaaae65c5f3cd28R87-R88)
Configuration menu - View commit details
-
Copy full SHA for d6c99ce - Browse repository at this point
Copy the full SHA d6c99ceView commit details
Commits on Nov 4, 2025
-
chore(lambda): bump vitest from 3.2.4 to 4.0.5 in /lambdas in the vit…
…e group across 1 directory (#4853) Bumps the vite group with 1 update in the /lambdas directory: [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). Updates `vitest` from 3.2.4 to 4.0.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitest-dev/vitest/releases">vitest's releases</a>.</em></p> <blockquote> <h2>v4.0.5</h2> <h3> 🐞 Bug Fixes</h3> <ul> <li>Respect <code>ssr.noExternal</code> when externalizing dependencies, fix Svelte and Astro - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8862">vitest-dev/vitest#8862</a> <a href="https://github.com/vitest-dev/vitest/commit/a4f86f1ba"><!-- raw HTML omitted -->(a4f86)<!-- raw HTML omitted --></a></li> <li>Allow module in --config - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8864">vitest-dev/vitest#8864</a> <a href="https://github.com/vitest-dev/vitest/commit/b9521e0c2"><!-- raw HTML omitted -->(b9521)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: Allow <code>Locator</code> type in selectOptions element parameter - by <a href="https://github.com/rzzf"><code>@rzzf</code></a> and <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8848">vitest-dev/vitest#8848</a> <a href="https://github.com/vitest-dev/vitest/commit/7ee283c96"><!-- raw HTML omitted -->(7ee28)<!-- raw HTML omitted --></a></li> <li><strong>module-runner</strong>: Don't return node builtins for <code>getBuiltins</code> unconditionally - by <a href="https://github.com/sapphi-red"><code>@sapphi-red</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8863">vitest-dev/vitest#8863</a> <a href="https://github.com/vitest-dev/vitest/commit/0e858bab4"><!-- raw HTML omitted -->(0e858)<!-- raw HTML omitted --></a></li> <li><strong>pool</strong>: Rename <code>groupId</code> to <code>groupOrder</code> in error message - by <a href="https://github.com/Yohannfra"><code>@Yohannfra</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8856">vitest-dev/vitest#8856</a> <a href="https://github.com/vitest-dev/vitest/commit/b9aabf4e6"><!-- raw HTML omitted -->(b9aab)<!-- raw HTML omitted --></a></li> </ul> <h3> 🏎 Performance</h3> <ul> <li>Pass testfiles at once when <code>--no-isolate --maxWorkers=1</code> - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8835">vitest-dev/vitest#8835</a> <a href="https://github.com/vitest-dev/vitest/commit/584aa7148"><!-- raw HTML omitted -->(584aa)<!-- raw HTML omitted --></a></li> <li><strong>expect</strong>: Optimize checking the input type - by <a href="https://github.com/Connormiha"><code>@Connormiha</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8840">vitest-dev/vitest#8840</a> <a href="https://github.com/vitest-dev/vitest/commit/0696898b4"><!-- raw HTML omitted -->(06968)<!-- raw HTML omitted --></a></li> </ul> <h5> <a href="https://github.com/vitest-dev/vitest/compare/v4.0.4...v4.0.5">View changes on GitHub</a></h5> <h2>v4.0.4</h2> <h3> 🐞 Bug Fixes</h3> <ul> <li><strong>browser</strong>: <ul> <li>Correct typo - by <a href="https://github.com/benmccann"><code>@benmccann</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8796">vitest-dev/vitest#8796</a> <a href="https://github.com/vitest-dev/vitest/commit/ede1f39d6"><!-- raw HTML omitted -->(ede1f)<!-- raw HTML omitted --></a></li> <li>Publish a missing context file for webdriverio - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8824">vitest-dev/vitest#8824</a> <a href="https://github.com/vitest-dev/vitest/commit/7c7b6f0b1"><!-- raw HTML omitted -->(7c7b6)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>mocker</strong>: <ul> <li>Support mocking builtins without <code>node:</code> prefix - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8829">vitest-dev/vitest#8829</a> <a href="https://github.com/vitest-dev/vitest/commit/06208d30b"><!-- raw HTML omitted -->(06208)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>pool</strong>: <ul> <li>Runner's error listener causing <code>MaxListenersExceededWarning</code> - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8820">vitest-dev/vitest#8820</a> <a href="https://github.com/vitest-dev/vitest/commit/d1bff3bb3"><!-- raw HTML omitted -->(d1bff)<!-- raw HTML omitted --></a></li> <li>Capture workers <code>stdio</code> to logger - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8809">vitest-dev/vitest#8809</a> <a href="https://github.com/vitest-dev/vitest/commit/fb95fc736"><!-- raw HTML omitted -->(fb95f)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>spy</strong>: <ul> <li>Allow classes in <code>vi.mocked</code> utility - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8839">vitest-dev/vitest#8839</a> <a href="https://github.com/vitest-dev/vitest/commit/f87568d64"><!-- raw HTML omitted -->(f8756)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>worker</strong>: <ul> <li>Rpc listener leak when <code>isolate: false</code> - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8821">vitest-dev/vitest#8821</a> <a href="https://github.com/vitest-dev/vitest/commit/573dc06fe"><!-- raw HTML omitted -->(573dc)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h3> 🏎 Performance</h3> <ul> <li><strong>utils</strong>: Optimized reducer to avoid creating new objects - by <a href="https://github.com/Connormiha"><code>@Connormiha</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8818">vitest-dev/vitest#8818</a> <a href="https://github.com/vitest-dev/vitest/commit/d19cece3a"><!-- raw HTML omitted -->(d19ce)<!-- raw HTML omitted --></a></li> </ul> <h5> <a href="https://github.com/vitest-dev/vitest/compare/v4.0.3...v4.0.4">View changes on GitHub</a></h5> <h2>v4.0.3</h2> <h3> 🐞 Bug Fixes</h3> <ul> <li>Preserve reporter options from config when CLI reporters override them - by <a href="https://github.com/Copilot"><code>@Copilot</code></a> and <strong>sheremet-va</strong> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8794">vitest-dev/vitest#8794</a> <a href="https://github.com/vitest-dev/vitest/commit/155521a85"><!-- raw HTML omitted -->(15552)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: More stable in-source testing validation - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8793">vitest-dev/vitest#8793</a> <a href="https://github.com/vitest-dev/vitest/commit/622977e61"><!-- raw HTML omitted -->(62297)<!-- raw HTML omitted --></a></li> <li><strong>happy-dom</strong>: Support fetch globals - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8791">vitest-dev/vitest#8791</a> <a href="https://github.com/vitest-dev/vitest/commit/0fb74bd3b"><!-- raw HTML omitted -->(0fb74)<!-- raw HTML omitted --></a></li> <li><strong>init</strong>: Use correct jsx/tsx extension - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8792">vitest-dev/vitest#8792</a> <a href="https://github.com/vitest-dev/vitest/commit/abc046f95"><!-- raw HTML omitted -->(abc04)<!-- raw HTML omitted --></a></li> </ul> <h5> <a href="https://github.com/vitest-dev/vitest/compare/v4.0.2...v4.0.3">View changes on GitHub</a></h5> <h2>v4.0.2</h2> <h3> 🐞 Bug Fixes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/ed9fc71076f94f23320922f115e37bc9a84b6dbb"><code>ed9fc71</code></a> chore: release v4.0.5</li> <li><a href="https://github.com/vitest-dev/vitest/commit/b9521e0c2dfa30860d96ffb694a1b7d4214deb57"><code>b9521e0</code></a> fix: allow module in --config (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8864">#8864</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/0e858bab4317a76b7366618320301920fffdf60a"><code>0e858ba</code></a> fix(module-runner): don't return node builtins for <code>getBuiltins</code> unconditiona...</li> <li><a href="https://github.com/vitest-dev/vitest/commit/a4f86f1ba44141d3256e2563a47b0b4dedd462e4"><code>a4f86f1</code></a> fix: respect <code>ssr.noExternal</code> when externalizing dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8862">#8862</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/b9aabf4e6664f6d6a8b4332833cb111b38536049"><code>b9aabf4</code></a> fix(pool): rename <code>groupId</code> to <code>groupOrder</code> in error message (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8856">#8856</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/584aa7148dedf157684377a3af8aea86eb179603"><code>584aa71</code></a> perf: pass testfiles at once when <code>--no-isolate --maxWorkers=1</code> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8835">#8835</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/9b75ec5f2fa46daaaa649493eb7f643a1cc9f51a"><code>9b75ec5</code></a> chore: release v4.0.4</li> <li><a href="https://github.com/vitest-dev/vitest/commit/fb95fc7360de6cc69c7d7cfe88b4c1c1dbc28338"><code>fb95fc7</code></a> fix(pool): capture workers <code>stdio</code> to logger (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8809">#8809</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/06208d30bb03d5bb49b88789cef892616f7e6591"><code>06208d3</code></a> fix(mocker): support mocking builtins without <code>node:</code> prefix (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8829">#8829</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/573dc06fec6a5753571866984771f9c32b80da3a"><code>573dc06</code></a> fix(worker): rpc listener leak when <code>isolate: false</code> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8821">#8821</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitest-dev/vitest/commits/v4.0.5/packages/vitest">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for vitest since your current version.</p> </details> <br /> [](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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Niek Palm <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8cd3a04 - Browse repository at this point
Copy the full SHA 8cd3a04View commit details
Commits on Nov 5, 2025
-
fix(lambda): bump the aws group across 1 directory with 7 updates (#4871
) 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.917.0` | `3.921.0` | | [@aws-sdk/client-ssm](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm) | `3.917.0` | `3.921.0` | | [@aws-sdk/types](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/types) | `3.914.0` | `3.921.0` | | [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.917.0` | `3.921.0` | | [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.917.0` | `3.921.0` | | [@aws-sdk/lib-storage](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage) | `3.917.0` | `3.921.0` | | [@aws-sdk/client-eventbridge](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-eventbridge) | `3.917.0` | `3.921.0` | Updates `@aws-sdk/client-ec2` from 3.917.0 to 3.921.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.921.0</h2> <h4>3.921.0(2025-10-30)</h4> <h5>Chores</h5> <ul> <li><strong>codegen:</strong> sync for waiter and proxy fixes (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7467">#7467</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76">da06f0ed</a>)</li> </ul> <h5>Documentation Changes</h5> <ul> <li><strong>client-rtbfabric:</strong> RTB Fabric documentation update. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f2bd79ec6b3d14d104b06e64ad69351f21a4f08a">f2bd79ec</a>)</li> </ul> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2025-10-30 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/ece610b54c0d91ff3751bb179da39fb1d77b336f">ece610b5</a>)</li> <li><strong>client-codedeploy:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0bff015dfbb4aa74626b55d2b52792f5170ccc91">0bff015d</a>)</li> <li><strong>client-docdb:</strong> Adding FailoverState and TagList to GlobalCluster and SynchronizationStatus to GlobalClusterMember. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a3b8e0761e7ea80b727c76fe3fd9efb608bc8211">a3b8e076</a>)</li> <li><strong>client-cloudwatch:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fe5a3c2be9f758f81afdb353ee3bc6a982e10946">fe5a3c2b</a>)</li> <li><strong>client-sso:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/721f9c6aed07a206ec60e1c70d187c2b1ba56b4a">721f9c6a</a>)</li> <li><strong>client-sagemaker-runtime:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/276aba70b1f9ef41db89b14e93a0460619de97a8">276aba70</a>)</li> <li><strong>client-cognito-sync:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/090d34995b600367b6fba1d073f7a4d8cb6b6008">090d3499</a>)</li> <li><strong>client-serverlessapplicationrepository:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/2cbb7e03a5910ed6e351a9f21c2529cad1be452e">2cbb7e03</a>)</li> <li><strong>client-keyspacesstreams:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4804c33bce6e4d9b4d9166b2e7e800d9235cc670">4804c33b</a>)</li> <li><strong>client-cloudcontrol:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0a935c4e14b6edd53be89a59b7fe160f964c7739">0a935c4e</a>)</li> <li><strong>client-service-catalog:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/198eae4fdde87e39483ea67a0a84502c91e98e9a">198eae4f</a>)</li> <li><strong>client-s3outposts:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1cfb788dab69db48f3f9a141f998507cf77c69b0">1cfb788d</a>)</li> <li><strong>client-cloudsearch:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/55f2a87f43c1220660b0fd20b181a01baeffea89">55f2a87f</a>)</li> <li><strong>client-codecatalyst:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/85d8fb01befe9f2588eab37e6dd1815c056f0708">85d8fb01</a>)</li> <li><strong>client-greengrassv2:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d0bf5286ad346c9817347a62de558c85b30c0145">d0bf5286</a>)</li> <li><strong>client-sts:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d28da8b2ff8ed72e6252d49d7a82a0997acd23a7">d28da8b2</a>)</li> <li><strong>client-appflow:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4ff8a02ac32c7f83c15c88c32e998cfe045ab0f8">4ff8a02a</a>)</li> <li><strong>client-marketplace-reporting:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/789eb5a816f6de562f7e262f4bc553533d69e9e9">789eb5a8</a>)</li> <li><strong>client-artifact:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/125f2b1b1ab08a57f063288d54efbfaf1bf839df">125f2b1b</a>)</li> <li><strong>client-ecs:</strong> Amazon ECS Service Connect now supports Envoy access logs, providing deeper observability into request-level traffic patterns and service interactions. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/338ac6df63c545c9724b3d9f0fec7731c88ad811">338ac6df</a>)</li> <li><strong>client-kms:</strong> Add cross account VPC endpoint service connectivity support to CustomKeyStore. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/08c922421602603f9cd59ba3498d1d7079bc324c">08c92242</a>)</li> <li><strong>client-api-gateway:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6c5be10c2b23491bbcd267bfbd64789877ff6fc2">6c5be10c</a>)</li> <li><strong>client-iot-events-data:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0f984e146c6944ecd2f4f37a47f75e570c22dfe3">0f984e14</a>)</li> <li><strong>client-iot-managed-integrations:</strong> Add a new GetManagedThingCertificate API to expose Iot ManagedIntegrations (MI) device certificate, and add "-" support for name, properties, actions and events in the CapabilityReportCapability object. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/778f85959ff75523cc88e67b1c2ee65d8a6a3b23">778f8595</a>)</li> <li><strong>client-license-manager-linux-subscriptions:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/dae81b8212f5fa8a7b11784557e353a97c47fd70">dae81b82</a>)</li> <li><strong>client-app-mesh:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/90fe8ed13474e23096e12d2fb4fe7ed413b359d4">90fe8ed1</a>)</li> <li><strong>client-chime:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fee835cdb820b4c117e3b9f6c84ebad518205229">fee835cd</a>)</li> <li><strong>client-bedrock-agent:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c1f73ec703e69f17f7e72f1b5d40a65826c22cc3">c1f73ec7</a>)</li> <li><strong>client-schemas:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a5126a1722458d26377fc7029dd28e3f02beb951">a5126a17</a>)</li> <li><strong>client-emr-serverless:</strong> This release adds the capability to enable User Background Sessions for customers running Trusted Identity Propagation enabled Interactive Sessions on EMR Serverless Applications. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1d1bbee7c1da5b286e33396983851381840a003c">1d1bbee7</a>)</li> <li><strong>client-bedrock-agentcore-control:</strong> Web-Bot-Auth support for AgentCore Browser tool to help reduce captcha challenges. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0f63bb3db83b0666c199e6eb6524fa24164f6e51">0f63bb3d</a>)</li> <li><strong>client-eks-auth:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a3ff8256ffc912ba75e28c11785f1cd02d4a5118">a3ff8256</a>)</li> <li><strong>client-codecommit:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fa935c619eb085fa9af0ab61ea087a837c4536f4">fa935c61</a>)</li> <li><strong>client-elasticache:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f8e22620a82188d831dea514bcad395dd398cc7c">f8e22620</a>)</li> <li><strong>client-frauddetector:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/eb69bf530e87e05f7d4161c513bbb20a37addcb1">eb69bf53</a>)</li> <li><strong>client-firehose:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a12a2a0a8162b176f67d06ac8ff83d5bd52710eb">a12a2a0a</a>)</li> <li><strong>client-geo-places:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0223dac09ecadf083fceab7224db40caa71cc92f">0223dac0</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.920.0...v3.921.0">3.921.0</a> (2025-10-30)</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.919.0...v3.920.0">3.920.0</a> (2025-10-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.918.0...v3.919.0">3.919.0</a> (2025-10-28)</h1> <h3>Features</h3> <ul> <li><strong>client-ec2:</strong> This released the DescribeCapacityReservationTopology API. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/245f5dabc412ae36c47e54de61e931b20fd4c381">245f5da</a>)</li> </ul> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.917.0...v3.918.0">3.918.0</a> (2025-10-27)</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/e8b9fd86d8f50c31a2ddd6fedd118fa179165961"><code>e8b9fd8</code></a> Publish v3.921.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76"><code>da06f0e</code></a> chore(codegen): sync for waiter and proxy fixes (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ec2/issues/7467">#7467</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/1d4bdbfbbbb7ba200d8cf540bd18504fb377767b"><code>1d4bdbf</code></a> Publish v3.920.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/6865eb62a2209ff8eed389e5091cc546548af983"><code>6865eb6</code></a> Publish v3.919.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/245f5dabc412ae36c47e54de61e931b20fd4c381"><code>245f5da</code></a> feat(client-ec2): This released the DescribeCapacityReservationTopology API.</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/58bb924b940193884d40c1d6f794e829b1e3982a"><code>58bb924</code></a> Publish v3.918.0</li> <li>See full diff in <a href="https://github.com/aws/aws-sdk-js-v3/commits/v3.921.0/clients/client-ec2">compare view</a></li> </ul> </details> <br /> Updates `@aws-sdk/client-ssm` from 3.917.0 to 3.921.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.921.0</h2> <h4>3.921.0(2025-10-30)</h4> <h5>Chores</h5> <ul> <li><strong>codegen:</strong> sync for waiter and proxy fixes (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7467">#7467</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76">da06f0ed</a>)</li> </ul> <h5>Documentation Changes</h5> <ul> <li><strong>client-rtbfabric:</strong> RTB Fabric documentation update. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f2bd79ec6b3d14d104b06e64ad69351f21a4f08a">f2bd79ec</a>)</li> </ul> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2025-10-30 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/ece610b54c0d91ff3751bb179da39fb1d77b336f">ece610b5</a>)</li> <li><strong>client-codedeploy:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0bff015dfbb4aa74626b55d2b52792f5170ccc91">0bff015d</a>)</li> <li><strong>client-docdb:</strong> Adding FailoverState and TagList to GlobalCluster and SynchronizationStatus to GlobalClusterMember. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a3b8e0761e7ea80b727c76fe3fd9efb608bc8211">a3b8e076</a>)</li> <li><strong>client-cloudwatch:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fe5a3c2be9f758f81afdb353ee3bc6a982e10946">fe5a3c2b</a>)</li> <li><strong>client-sso:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/721f9c6aed07a206ec60e1c70d187c2b1ba56b4a">721f9c6a</a>)</li> <li><strong>client-sagemaker-runtime:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/276aba70b1f9ef41db89b14e93a0460619de97a8">276aba70</a>)</li> <li><strong>client-cognito-sync:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/090d34995b600367b6fba1d073f7a4d8cb6b6008">090d3499</a>)</li> <li><strong>client-serverlessapplicationrepository:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/2cbb7e03a5910ed6e351a9f21c2529cad1be452e">2cbb7e03</a>)</li> <li><strong>client-keyspacesstreams:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4804c33bce6e4d9b4d9166b2e7e800d9235cc670">4804c33b</a>)</li> <li><strong>client-cloudcontrol:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0a935c4e14b6edd53be89a59b7fe160f964c7739">0a935c4e</a>)</li> <li><strong>client-service-catalog:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/198eae4fdde87e39483ea67a0a84502c91e98e9a">198eae4f</a>)</li> <li><strong>client-s3outposts:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1cfb788dab69db48f3f9a141f998507cf77c69b0">1cfb788d</a>)</li> <li><strong>client-cloudsearch:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/55f2a87f43c1220660b0fd20b181a01baeffea89">55f2a87f</a>)</li> <li><strong>client-codecatalyst:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/85d8fb01befe9f2588eab37e6dd1815c056f0708">85d8fb01</a>)</li> <li><strong>client-greengrassv2:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d0bf5286ad346c9817347a62de558c85b30c0145">d0bf5286</a>)</li> <li><strong>client-sts:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d28da8b2ff8ed72e6252d49d7a82a0997acd23a7">d28da8b2</a>)</li> <li><strong>client-appflow:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4ff8a02ac32c7f83c15c88c32e998cfe045ab0f8">4ff8a02a</a>)</li> <li><strong>client-marketplace-reporting:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/789eb5a816f6de562f7e262f4bc553533d69e9e9">789eb5a8</a>)</li> <li><strong>client-artifact:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/125f2b1b1ab08a57f063288d54efbfaf1bf839df">125f2b1b</a>)</li> <li><strong>client-ecs:</strong> Amazon ECS Service Connect now supports Envoy access logs, providing deeper observability into request-level traffic patterns and service interactions. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/338ac6df63c545c9724b3d9f0fec7731c88ad811">338ac6df</a>)</li> <li><strong>client-kms:</strong> Add cross account VPC endpoint service connectivity support to CustomKeyStore. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/08c922421602603f9cd59ba3498d1d7079bc324c">08c92242</a>)</li> <li><strong>client-api-gateway:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6c5be10c2b23491bbcd267bfbd64789877ff6fc2">6c5be10c</a>)</li> <li><strong>client-iot-events-data:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0f984e146c6944ecd2f4f37a47f75e570c22dfe3">0f984e14</a>)</li> <li><strong>client-iot-managed-integrations:</strong> Add a new GetManagedThingCertificate API to expose Iot ManagedIntegrations (MI) device certificate, and add "-" support for name, properties, actions and events in the CapabilityReportCapability object. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/778f85959ff75523cc88e67b1c2ee65d8a6a3b23">778f8595</a>)</li> <li><strong>client-license-manager-linux-subscriptions:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/dae81b8212f5fa8a7b11784557e353a97c47fd70">dae81b82</a>)</li> <li><strong>client-app-mesh:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/90fe8ed13474e23096e12d2fb4fe7ed413b359d4">90fe8ed1</a>)</li> <li><strong>client-chime:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fee835cdb820b4c117e3b9f6c84ebad518205229">fee835cd</a>)</li> <li><strong>client-bedrock-agent:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c1f73ec703e69f17f7e72f1b5d40a65826c22cc3">c1f73ec7</a>)</li> <li><strong>client-schemas:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a5126a1722458d26377fc7029dd28e3f02beb951">a5126a17</a>)</li> <li><strong>client-emr-serverless:</strong> This release adds the capability to enable User Background Sessions for customers running Trusted Identity Propagation enabled Interactive Sessions on EMR Serverless Applications. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1d1bbee7c1da5b286e33396983851381840a003c">1d1bbee7</a>)</li> <li><strong>client-bedrock-agentcore-control:</strong> Web-Bot-Auth support for AgentCore Browser tool to help reduce captcha challenges. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0f63bb3db83b0666c199e6eb6524fa24164f6e51">0f63bb3d</a>)</li> <li><strong>client-eks-auth:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a3ff8256ffc912ba75e28c11785f1cd02d4a5118">a3ff8256</a>)</li> <li><strong>client-codecommit:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fa935c619eb085fa9af0ab61ea087a837c4536f4">fa935c61</a>)</li> <li><strong>client-elasticache:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f8e22620a82188d831dea514bcad395dd398cc7c">f8e22620</a>)</li> <li><strong>client-frauddetector:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/eb69bf530e87e05f7d4161c513bbb20a37addcb1">eb69bf53</a>)</li> <li><strong>client-firehose:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a12a2a0a8162b176f67d06ac8ff83d5bd52710eb">a12a2a0a</a>)</li> <li><strong>client-geo-places:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0223dac09ecadf083fceab7224db40caa71cc92f">0223dac0</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.920.0...v3.921.0">3.921.0</a> (2025-10-30)</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.919.0...v3.920.0">3.920.0</a> (2025-10-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.918.0...v3.919.0">3.919.0</a> (2025-10-28)</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.917.0...v3.918.0">3.918.0</a> (2025-10-27)</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/e8b9fd86d8f50c31a2ddd6fedd118fa179165961"><code>e8b9fd8</code></a> Publish v3.921.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76"><code>da06f0e</code></a> chore(codegen): sync for waiter and proxy fixes (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm/issues/7467">#7467</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/1d4bdbfbbbb7ba200d8cf540bd18504fb377767b"><code>1d4bdbf</code></a> Publish v3.920.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/6865eb62a2209ff8eed389e5091cc546548af983"><code>6865eb6</code></a> Publish v3.919.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/58bb924b940193884d40c1d6f794e829b1e3982a"><code>58bb924</code></a> Publish v3.918.0</li> <li>See full diff in <a href="https://github.com/aws/aws-sdk-js-v3/commits/v3.921.0/clients/client-ssm">compare view</a></li> </ul> </details> <br /> Updates `@aws-sdk/types` from 3.914.0 to 3.921.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.921.0</h2> <h4>3.921.0(2025-10-30)</h4> <h5>Chores</h5> <ul> <li><strong>codegen:</strong> sync for waiter and proxy fixes (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7467">#7467</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76">da06f0ed</a>)</li> </ul> <h5>Documentation Changes</h5> <ul> <li><strong>client-rtbfabric:</strong> RTB Fabric documentation update. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f2bd79ec6b3d14d104b06e64ad69351f21a4f08a">f2bd79ec</a>)</li> </ul> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2025-10-30 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/ece610b54c0d91ff3751bb179da39fb1d77b336f">ece610b5</a>)</li> <li><strong>client-codedeploy:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0bff015dfbb4aa74626b55d2b52792f5170ccc91">0bff015d</a>)</li> <li><strong>client-docdb:</strong> Adding FailoverState and TagList to GlobalCluster and SynchronizationStatus to GlobalClusterMember. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a3b8e0761e7ea80b727c76fe3fd9efb608bc8211">a3b8e076</a>)</li> <li><strong>client-cloudwatch:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fe5a3c2be9f758f81afdb353ee3bc6a982e10946">fe5a3c2b</a>)</li> <li><strong>client-sso:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/721f9c6aed07a206ec60e1c70d187c2b1ba56b4a">721f9c6a</a>)</li> <li><strong>client-sagemaker-runtime:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/276aba70b1f9ef41db89b14e93a0460619de97a8">276aba70</a>)</li> <li><strong>client-cognito-sync:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/090d34995b600367b6fba1d073f7a4d8cb6b6008">090d3499</a>)</li> <li><strong>client-serverlessapplicationrepository:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/2cbb7e03a5910ed6e351a9f21c2529cad1be452e">2cbb7e03</a>)</li> <li><strong>client-keyspacesstreams:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4804c33bce6e4d9b4d9166b2e7e800d9235cc670">4804c33b</a>)</li> <li><strong>client-cloudcontrol:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0a935c4e14b6edd53be89a59b7fe160f964c7739">0a935c4e</a>)</li> <li><strong>client-service-catalog:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/198eae4fdde87e39483ea67a0a84502c91e98e9a">198eae4f</a>)</li> <li><strong>client-s3outposts:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1cfb788dab69db48f3f9a141f998507cf77c69b0">1cfb788d</a>)</li> <li><strong>client-cloudsearch:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/55f2a87f43c1220660b0fd20b181a01baeffea89">55f2a87f</a>)</li> <li><strong>client-codecatalyst:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/85d8fb01befe9f2588eab37e6dd1815c056f0708">85d8fb01</a>)</li> <li><strong>client-greengrassv2:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d0bf5286ad346c9817347a62de558c85b30c0145">d0bf5286</a>)</li> <li><strong>client-sts:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d28da8b2ff8ed72e6252d49d7a82a0997acd23a7">d28da8b2</a>)</li> <li><strong>client-appflow:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4ff8a02ac32c7f83c15c88c32e998cfe045ab0f8">4ff8a02a</a>)</li> <li><strong>client-marketplace-reporting:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/789eb5a816f6de562f7e262f4bc553533d69e9e9">789eb5a8</a>)</li> <li><strong>client-artifact:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/125f2b1b1ab08a57f063288d54efbfaf1bf839df">125f2b1b</a>)</li> <li><strong>client-ecs:</strong> Amazon ECS Service Connect now supports Envoy access logs, providing deeper observability into request-level traffic patterns and service interactions. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/338ac6df63c545c9724b3d9f0fec7731c88ad811">338ac6df</a>)</li> <li><strong>client-kms:</strong> Add cross account VPC endpoint service connectivity support to CustomKeyStore. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/08c922421602603f9cd59ba3498d1d7079bc324c">08c92242</a>)</li> <li><strong>client-api-gateway:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6c5be10c2b23491bbcd267bfbd64789877ff6fc2">6c5be10c</a>)</li> <li><strong>client-iot-events-data:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0f984e146c6944ecd2f4f37a47f75e570c22dfe3">0f984e14</a>)</li> <li><strong>client-iot-managed-integrations:</strong> Add a new GetManagedThingCertificate API to expose Iot ManagedIntegrations (MI) device certificate, and add "-" support for name, properties, actions and events in the CapabilityReportCapability object. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/778f85959ff75523cc88e67b1c2ee65d8a6a3b23">778f8595</a>)</li> <li><strong>client-license-manager-linux-subscriptions:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/dae81b8212f5fa8a7b11784557e353a97c47fd70">dae81b82</a>)</li> <li><strong>client-app-mesh:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/90fe8ed13474e23096e12d2fb4fe7ed413b359d4">90fe8ed1</a>)</li> <li><strong>client-chime:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fee835cdb820b4c117e3b9f6c84ebad518205229">fee835cd</a>)</li> <li><strong>client-bedrock-agent:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c1f73ec703e69f17f7e72f1b5d40a65826c22cc3">c1f73ec7</a>)</li> <li><strong>client-schemas:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a5126a1722458d26377fc7029dd28e3f02beb951">a5126a17</a>)</li> <li><strong>client-emr-serverless:</strong> This release adds the capability to enable User Background Sessions for customers running Trusted Identity Propagation enabled Interactive Sessions on EMR Serverless Applications. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1d1bbee7c1da5b286e33396983851381840a003c">1d1bbee7</a>)</li> <li><strong>client-bedrock-agentcore-control:</strong> Web-Bot-Auth support for AgentCore Browser tool to help reduce captcha challenges. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0f63bb3db83b0666c199e6eb6524fa24164f6e51">0f63bb3d</a>)</li> <li><strong>client-eks-auth:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a3ff8256ffc912ba75e28c11785f1cd02d4a5118">a3ff8256</a>)</li> <li><strong>client-codecommit:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fa935c619eb085fa9af0ab61ea087a837c4536f4">fa935c61</a>)</li> <li><strong>client-elasticache:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f8e22620a82188d831dea514bcad395dd398cc7c">f8e22620</a>)</li> <li><strong>client-frauddetector:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/eb69bf530e87e05f7d4161c513bbb20a37addcb1">eb69bf53</a>)</li> <li><strong>client-firehose:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a12a2a0a8162b176f67d06ac8ff83d5bd52710eb">a12a2a0a</a>)</li> <li><strong>client-geo-places:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0223dac09ecadf083fceab7224db40caa71cc92f">0223dac0</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.920.0...v3.921.0">3.921.0</a> (2025-10-30)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/types</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.919.0...v3.920.0">3.920.0</a> (2025-10-29)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>credential-providers:</strong> use modified region resolver for inner STS clients (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/issues/7456">#7456</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4960a92de71dac8e61f22800a60b0969fa1e1eea">4960a92</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/e8b9fd86d8f50c31a2ddd6fedd118fa179165961"><code>e8b9fd8</code></a> Publish v3.921.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76"><code>da06f0e</code></a> chore(codegen): sync for waiter and proxy fixes (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/types/issues/7467">#7467</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/1d4bdbfbbbb7ba200d8cf540bd18504fb377767b"><code>1d4bdbf</code></a> Publish v3.920.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/4960a92de71dac8e61f22800a60b0969fa1e1eea"><code>4960a92</code></a> fix(credential-providers): use modified region resolver for inner STS clients...</li> <li>See full diff in <a href="https://github.com/aws/aws-sdk-js-v3/commits/v3.921.0/packages/types">compare view</a></li> </ul> </details> <br /> Updates `@aws-sdk/client-sqs` from 3.917.0 to 3.921.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.921.0</h2> <h4>3.921.0(2025-10-30)</h4> <h5>Chores</h5> <ul> <li><strong>codegen:</strong> sync for waiter and proxy fixes (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7467">#7467</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76">da06f0ed</a>)</li> </ul> <h5>Documentation Changes</h5> <ul> <li><strong>client-rtbfabric:</strong> RTB Fabric documentation update. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f2bd79ec6b3d14d104b06e64ad69351f21a4f08a">f2bd79ec</a>)</li> </ul> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2025-10-30 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/ece610b54c0d91ff3751bb179da39fb1d77b336f">ece610b5</a>)</li> <li><strong>client-codedeploy:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0bff015dfbb4aa74626b55d2b52792f5170ccc91">0bff015d</a>)</li> <li><strong>client-docdb:</strong> Adding FailoverState and TagList to GlobalCluster and SynchronizationStatus to GlobalClusterMember. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a3b8e0761e7ea80b727c76fe3fd9efb608bc8211">a3b8e076</a>)</li> <li><strong>client-cloudwatch:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fe5a3c2be9f758f81afdb353ee3bc6a982e10946">fe5a3c2b</a>)</li> <li><strong>client-sso:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/721f9c6aed07a206ec60e1c70d187c2b1ba56b4a">721f9c6a</a>)</li> <li><strong>client-sagemaker-runtime:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/276aba70b1f9ef41db89b14e93a0460619de97a8">276aba70</a>)</li> <li><strong>client-cognito-sync:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/090d34995b600367b6fba1d073f7a4d8cb6b6008">090d3499</a>)</li> <li><strong>client-serverlessapplicationrepository:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/2cbb7e03a5910ed6e351a9f21c2529cad1be452e">2cbb7e03</a>)</li> <li><strong>client-keyspacesstreams:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4804c33bce6e4d9b4d9166b2e7e800d9235cc670">4804c33b</a>)</li> <li><strong>client-cloudcontrol:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0a935c4e14b6edd53be89a59b7fe160f964c7739">0a935c4e</a>)</li> <li><strong>client-service-catalog:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/198eae4fdde87e39483ea67a0a84502c91e98e9a">198eae4f</a>)</li> <li><strong>client-s3outposts:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1cfb788dab69db48f3f9a141f998507cf77c69b0">1cfb788d</a>)</li> <li><strong>client-cloudsearch:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/55f2a87f43c1220660b0fd20b181a01baeffea89">55f2a87f</a>)</li> <li><strong>client-codecatalyst:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/85d8fb01befe9f2588eab37e6dd1815c056f0708">85d8fb01</a>)</li> <li><strong>client-greengrassv2:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d0bf5286ad346c9817347a62de558c85b30c0145">d0bf5286</a>)</li> <li><strong>client-sts:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d28da8b2ff8ed72e6252d49d7a82a0997acd23a7">d28da8b2</a>)</li> <li><strong>client-appflow:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4ff8a02ac32c7f83c15c88c32e998cfe045ab0f8">4ff8a02a</a>)</li> <li><strong>client-marketplace-reporting:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/789eb5a816f6de562f7e262f4bc553533d69e9e9">789eb5a8</a>)</li> <li><strong>client-artifact:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/125f2b1b1ab08a57f063288d54efbfaf1bf839df">125f2b1b</a>)</li> <li><strong>client-ecs:</strong> Amazon ECS Service Connect now supports Envoy access logs, providing deeper observability into request-level traffic patterns and service interactions. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/338ac6df63c545c9724b3d9f0fec7731c88ad811">338ac6df</a>)</li> <li><strong>client-kms:</strong> Add cross account VPC endpoint service connectivity support to CustomKeyStore. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/08c922421602603f9cd59ba3498d1d7079bc324c">08c92242</a>)</li> <li><strong>client-api-gateway:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6c5be10c2b23491bbcd267bfbd64789877ff6fc2">6c5be10c</a>)</li> <li><strong>client-iot-events-data:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0f984e146c6944ecd2f4f37a47f75e570c22dfe3">0f984e14</a>)</li> <li><strong>client-iot-managed-integrations:</strong> Add a new GetManagedThingCertificate API to expose Iot ManagedIntegrations (MI) device certificate, and add "-" support for name, properties, actions and events in the CapabilityReportCapability object. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/778f85959ff75523cc88e67b1c2ee65d8a6a3b23">778f8595</a>)</li> <li><strong>client-license-manager-linux-subscriptions:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/dae81b8212f5fa8a7b11784557e353a97c47fd70">dae81b82</a>)</li> <li><strong>client-app-mesh:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/90fe8ed13474e23096e12d2fb4fe7ed413b359d4">90fe8ed1</a>)</li> <li><strong>client-chime:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fee835cdb820b4c117e3b9f6c84ebad518205229">fee835cd</a>)</li> <li><strong>client-bedrock-agent:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c1f73ec703e69f17f7e72f1b5d40a65826c22cc3">c1f73ec7</a>)</li> <li><strong>client-schemas:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a5126a1722458d26377fc7029dd28e3f02beb951">a5126a17</a>)</li> <li><strong>client-emr-serverless:</strong> This release adds the capability to enable User Background Sessions for customers running Trusted Identity Propagation enabled Interactive Sessions on EMR Serverless Applications. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1d1bbee7c1da5b286e33396983851381840a003c">1d1bbee7</a>)</li> <li><strong>client-bedrock-agentcore-control:</strong> Web-Bot-Auth support for AgentCore Browser tool to help reduce captcha challenges. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0f63bb3db83b0666c199e6eb6524fa24164f6e51">0f63bb3d</a>)</li> <li><strong>client-eks-auth:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a3ff8256ffc912ba75e28c11785f1cd02d4a5118">a3ff8256</a>)</li> <li><strong>client-codecommit:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fa935c619eb085fa9af0ab61ea087a837c4536f4">fa935c61</a>)</li> <li><strong>client-elasticache:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f8e22620a82188d831dea514bcad395dd398cc7c">f8e22620</a>)</li> <li><strong>client-frauddetector:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/eb69bf530e87e05f7d4161c513bbb20a37addcb1">eb69bf53</a>)</li> <li><strong>client-firehose:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a12a2a0a8162b176f67d06ac8ff83d5bd52710eb">a12a2a0a</a>)</li> <li><strong>client-geo-places:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0223dac09ecadf083fceab7224db40caa71cc92f">0223dac0</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.920.0...v3.921.0">3.921.0</a> (2025-10-30)</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.919.0...v3.920.0">3.920.0</a> (2025-10-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.918.0...v3.919.0">3.919.0</a> (2025-10-28)</h1> <h3>Features</h3> <ul> <li><strong>client-sqs:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/250af94a93acc29ba382baf00cb74feb4d00de6a">250af94</a>)</li> </ul> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.917.0...v3.918.0">3.918.0</a> (2025-10-27)</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/e8b9fd86d8f50c31a2ddd6fedd118fa179165961"><code>e8b9fd8</code></a> Publish v3.921.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76"><code>da06f0e</code></a> chore(codegen): sync for waiter and proxy fixes (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs/issues/7467">#7467</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/1d4bdbfbbbb7ba200d8cf540bd18504fb377767b"><code>1d4bdbf</code></a> Publish v3.920.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/6865eb62a2209ff8eed389e5091cc546548af983"><code>6865eb6</code></a> Publish v3.919.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/250af94a93acc29ba382baf00cb74feb4d00de6a"><code>250af94</code></a> feat(client-sqs): Update endpoint ruleset parameters casing</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/58bb924b940193884d40c1d6f794e829b1e3982a"><code>58bb924</code></a> Publish v3.918.0</li> <li>See full diff in <a href="https://github.com/aws/aws-sdk-js-v3/commits/v3.921.0/clients/client-sqs">compare view</a></li> </ul> </details> <br /> Updates `@aws-sdk/client-s3` from 3.917.0 to 3.921.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.921.0</h2> <h4>3.921.0(2025-10-30)</h4> <h5>Chores</h5> <ul> <li><strong>codegen:</strong> sync for waiter and proxy fixes (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7467">#7467</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76">da06f0ed</a>)</li> </ul> <h5>Documentation Changes</h5> <ul> <li><strong>client-rtbfabric:</strong> RTB Fabric documentation update. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f2bd79ec6b3d14d104b06e64ad69351f21a4f08a">f2bd79ec</a>)</li> </ul> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2025-10-30 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/ece610b54c0d91ff3751bb179da39fb1d77b336f">ece610b5</a>)</li> <li><strong>client-codedeploy:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0bff015dfbb4aa74626b55d2b52792f5170ccc91">0bff015d</a>)</li> <li><strong>client-docdb:</strong> Adding FailoverState and TagList to GlobalCluster and SynchronizationStatus to GlobalClusterMember. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a3b8e0761e7ea80b727c76fe3fd9efb608bc8211">a3b8e076</a>)</li> <li><strong>client-cloudwatch:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fe5a3c2be9f758f81afdb353ee3bc6a982e10946">fe5a3c2b</a>)</li> <li><strong>client-sso:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/721f9c6aed07a206ec60e1c70d187c2b1ba56b4a">721f9c6a</a>)</li> <li><strong>client-sagemaker-runtime:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/276aba70b1f9ef41db89b14e93a0460619de97a8">276aba70</a>)</li> <li><strong>client-cognito-sync:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/090d34995b600367b6fba1d073f7a4d8cb6b6008">090d3499</a>)</li> <li><strong>client-serverlessapplicationrepository:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/2cbb7e03a5910ed6e351a9f21c2529cad1be452e">2cbb7e03</a>)</li> <li><strong>client-keyspacesstreams:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4804c33bce6e4d9b4d9166b2e7e800d9235cc670">4804c33b</a>)</li> <li><strong>client-cloudcontrol:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0a935c4e14b6edd53be89a59b7fe160f964c7739">0a935c4e</a>)</li> <li><strong>client-service-catalog:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/198eae4fdde87e39483ea67a0a84502c91e98e9a">198eae4f</a>)</li> <li><strong>client-s3outposts:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1cfb788dab69db48f3f9a141f998507cf77c69b0">1cfb788d</a>)</li> <li><strong>client-cloudsearch:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/55f2a87f43c1220660b0fd20b181a01baeffea89">55f2a87f</a>)</li> <li><strong>client-codecatalyst:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/85d8fb01befe9f2588eab37e6dd1815c056f0708">85d8fb01</a>)</li> <li><strong>client-greengrassv2:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d0bf5286ad346c9817347a62de558c85b30c0145">d0bf5286</a>)</li> <li><strong>client-sts:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d28da8b2ff8ed72e6252d49d7a82a0997acd23a7">d28da8b2</a>)</li> <li><strong>client-appflow:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4ff8a02ac32c7f83c15c88c32e998cfe045ab0f8">4ff8a02a</a>)</li> <li><strong>client-marketplace-reporting:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/789eb5a816f6de562f7e262f4bc553533d69e9e9">789eb5a8</a>)</li> <li><strong>client-artifact:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/125f2b1b1ab08a57f063288d54efbfaf1bf839df">125f2b1b</a>)</li> <li><strong>client-ecs:</strong> Amazon ECS Service Connect now supports Envoy access logs, providing deeper observability into request-level traffic patterns and service interactions. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/338ac6df63c545c9724b3d9f0fec7731c88ad811">338ac6df</a>)</li> <li><strong>client-kms:</strong> Add cross account VPC endpoint service connectivity support to CustomKeyStore. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/08c922421602603f9cd59ba3498d1d7079bc324c">08c92242</a>)</li> <li><strong>client-api-gateway:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6c5be10c2b23491bbcd267bfbd64789877ff6fc2">6c5be10c</a>)</li> <li><strong>client-iot-events-data:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0f984e146c6944ecd2f4f37a47f75e570c22dfe3">0f984e14</a>)</li> <li><strong>client-iot-managed-integrations:</strong> Add a new GetManagedThingCertificate API to expose Iot ManagedIntegrations (MI) device certificate, and add "-" support for name, properties, actions and events in the CapabilityReportCapability object. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/778f85959ff75523cc88e67b1c2ee65d8a6a3b23">778f8595</a>)</li> <li><strong>client-license-manager-linux-subscriptions:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/dae81b8212f5fa8a7b11784557e353a97c47fd70">dae81b82</a>)</li> <li><strong>client-app-mesh:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/90fe8ed13474e23096e12d2fb4fe7ed413b359d4">90fe8ed1</a>)</li> <li><strong>client-chime:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fee835cdb820b4c117e3b9f6c84ebad518205229">fee835cd</a>)</li> <li><strong>client-bedrock-agent:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c1f73ec703e69f17f7e72f1b5d40a65826c22cc3">c1f73ec7</a>)</li> <li><strong>client-schemas:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a5126a1722458d26377fc7029dd28e3f02beb951">a5126a17</a>)</li> <li><strong>client-emr-serverless:</strong> This release adds the capability to enable User Background Sessions for customers running Trusted Identity Propagation enabled Interactive Sessions on EMR Serverless Applications. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1d1bbee7c1da5b286e33396983851381840a003c">1d1bbee7</a>)</li> <li><strong>client-bedrock-agentcore-control:</strong> Web-Bot-Auth support for AgentCore Browser tool to help reduce captcha challenges. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0f63bb3db83b0666c199e6eb6524fa24164f6e51">0f63bb3d</a>)</li> <li><strong>client-eks-auth:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a3ff8256ffc912ba75e28c11785f1cd02d4a5118">a3ff8256</a>)</li> <li><strong>client-codecommit:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fa935c619eb085fa9af0ab61ea087a837c4536f4">fa935c61</a>)</li> <li><strong>client-elasticache:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f8e22620a82188d831dea514bcad395dd398cc7c">f8e22620</a>)</li> <li><strong>client-frauddetector:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/eb69bf530e87e05f7d4161c513bbb20a37addcb1">eb69bf53</a>)</li> <li><strong>client-firehose:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a12a2a0a8162b176f67d06ac8ff83d5bd52710eb">a12a2a0a</a>)</li> <li><strong>client-geo-places:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0223dac09ecadf083fceab7224db40caa71cc92f">0223dac0</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.920.0...v3.921.0">3.921.0</a> (2025-10-30)</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.919.0...v3.920.0">3.920.0</a> (2025-10-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.918.0...v3.919.0">3.919.0</a> (2025-10-28)</h1> <h3>Features</h3> <ul> <li><strong>client-s3:</strong> Amazon Simple Storage Service / Features: Add conditional writes in CopyObject on destination key to prevent unintended object modifications. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/2533edce830d1f5070a44d4b99135a2146c5d2a6">2533edc</a>)</li> </ul> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.917.0...v3.918.0">3.918.0</a> (2025-10-27)</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/e8b9fd86d8f50c31a2ddd6fedd118fa179165961"><code>e8b9fd8</code></a> Publish v3.921.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76"><code>da06f0e</code></a> chore(codegen): sync for waiter and proxy fixes (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3/issues/7467">#7467</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/1d4bdbfbbbb7ba200d8cf540bd18504fb377767b"><code>1d4bdbf</code></a> Publish v3.920.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/6865eb62a2209ff8eed389e5091cc546548af983"><code>6865eb6</code></a> Publish v3.919.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/2533edce830d1f5070a44d4b99135a2146c5d2a6"><code>2533edc</code></a> feat(client-s3): Amazon Simple Storage Service / Features: Add conditional wr...</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/58bb924b940193884d40c1d6f794e829b1e3982a"><code>58bb924</code></a> Publish v3.918.0</li> <li>See full diff in <a href="https://github.com/aws/aws-sdk-js-v3/commits/v3.921.0/clients/client-s3">compare view</a></li> </ul> </details> <br /> Updates `@aws-sdk/lib-storage` from 3.917.0 to 3.921.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.921.0</h2> <h4>3.921.0(2025-10-30)</h4> <h5>Chores</h5> <ul> <li><strong>codegen:</strong> sync for waiter and proxy fixes (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7467">#7467</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76">da06f0ed</a>)</li> </ul> <h5>Documentation Changes</h5> <ul> <li><strong>client-rtbfabric:</strong> RTB Fabric documentation update. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f2bd79ec6b3d14d104b06e64ad69351f21a4f08a">f2bd79ec</a>)</li> </ul> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2025-10-30 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/ece610b54c0d91ff3751bb179da39fb1d77b336f">ece610b5</a>)</li> <li><strong>client-codedeploy:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0bff015dfbb4aa74626b55d2b52792f5170ccc91">0bff015d</a>)</li> <li><strong>client-docdb:</strong> Adding FailoverState and TagList to GlobalCluster and SynchronizationStatus to GlobalClusterMember. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a3b8e0761e7ea80b727c76fe3fd9efb608bc8211">a3b8e076</a>)</li> <li><strong>client-cloudwatch:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fe5a3c2be9f758f81afdb353ee3bc6a982e10946">fe5a3c2b</a>)</li> <li><strong>client-sso:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/721f9c6aed07a206ec60e1c70d187c2b1ba56b4a">721f9c6a</a>)</li> <li><strong>client-sagemaker-runtime:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/276aba70b1f9ef41db89b14e93a0460619de97a8">276aba70</a>)</li> <li><strong>client-cognito-sync:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/090d34995b600367b6fba1d073f7a4d8cb6b6008">090d3499</a>)</li> <li><strong>client-serverlessapplicationrepository:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/2cbb7e03a5910ed6e351a9f21c2529cad1be452e">2cbb7e03</a>)</li> <li><strong>client-keyspacesstreams:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4804c33bce6e4d9b4d9166b2e7e800d9235cc670">4804c33b</a>)</li> <li><strong>client-cloudcontrol:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0a935c4e14b6edd53be89a59b7fe160f964c7739">0a935c4e</a>)</li> <li><strong>client-service-catalog:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/198eae4fdde87e39483ea67a0a84502c91e98e9a">198eae4f</a>)</li> <li><strong>client-s3outposts:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1cfb788dab69db48f3f9a141f998507cf77c69b0">1cfb788d</a>)</li> <li><strong>client-cloudsearch:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/55f2a87f43c1220660b0fd20b181a01baeffea89">55f2a87f</a>)</li> <li><strong>client-codecatalyst:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/85d8fb01befe9f2588eab37e6dd1815c056f0708">85d8fb01</a>)</li> <li><strong>client-greengrassv2:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d0bf5286ad346c9817347a62de558c85b30c0145">d0bf5286</a>)</li> <li><strong>client-sts:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d28da8b2ff8ed72e6252d49d7a82a0997acd23a7">d28da8b2</a>)</li> <li><strong>client-appflow:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/4ff8a02ac32c7f83c15c88c32e998cfe045ab0f8">4ff8a02a</a>)</li> <li><strong>client-marketplace-reporting:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/789eb5a816f6de562f7e262f4bc553533d69e9e9">789eb5a8</a>)</li> <li><strong>client-artifact:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/125f2b1b1ab08a57f063288d54efbfaf1bf839df">125f2b1b</a>)</li> <li><strong>client-ecs:</strong> Amazon ECS Service Connect now supports Envoy access logs, providing deeper observability into request-level traffic patterns and service interactions. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/338ac6df63c545c9724b3d9f0fec7731c88ad811">338ac6df</a>)</li> <li><strong>client-kms:</strong> Add cross account VPC endpoint service connectivity support to CustomKeyStore. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/08c922421602603f9cd59ba3498d1d7079bc324c">08c92242</a>)</li> <li><strong>client-api-gateway:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6c5be10c2b23491bbcd267bfbd64789877ff6fc2">6c5be10c</a>)</li> <li><strong>client-iot-events-data:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0f984e146c6944ecd2f4f37a47f75e570c22dfe3">0f984e14</a>)</li> <li><strong>client-iot-managed-integrations:</strong> Add a new GetManagedThingCertificate API to expose Iot ManagedIntegrations (MI) device certificate, and add "-" support for name, properties, actions and events in the CapabilityReportCapability object. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/778f85959ff75523cc88e67b1c2ee65d8a6a3b23">778f8595</a>)</li> <li><strong>client-license-manager-linux-subscriptions:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/dae81b8212f5fa8a7b11784557e353a97c47fd70">dae81b82</a>)</li> <li><strong>client-app-mesh:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/90fe8ed13474e23096e12d2fb4fe7ed413b359d4">90fe8ed1</a>)</li> <li><strong>client-chime:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fee835cdb820b4c117e3b9f6c84ebad518205229">fee835cd</a>)</li> <li><strong>client-bedrock-agent:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c1f73ec703e69f17f7e72f1b5d40a65826c22cc3">c1f73ec7</a>)</li> <li><strong>client-schemas:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a5126a1722458d26377fc7029dd28e3f02beb951">a5126a17</a>)</li> <li><strong>client-emr-serverless:</strong> This release adds the capability to enable User Background Sessions for customers running Trusted Identity Propagation enabled Interactive Sessions on EMR Serverless Applications. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1d1bbee7c1da5b286e33396983851381840a003c">1d1bbee7</a>)</li> <li><strong>client-bedrock-agentcore-control:</strong> Web-Bot-Auth support for AgentCore Browser tool to help reduce captcha challenges. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0f63bb3db83b0666c199e6eb6524fa24164f6e51">0f63bb3d</a>)</li> <li><strong>client-eks-auth:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a3ff8256ffc912ba75e28c11785f1cd02d4a5118">a3ff8256</a>)</li> <li><strong>client-codecommit:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/fa935c619eb085fa9af0ab61ea087a837c4536f4">fa935c61</a>)</li> <li><strong>client-elasticache:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f8e22620a82188d831dea514bcad395dd398cc7c">f8e22620</a>)</li> <li><strong>client-frauddetector:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/eb69bf530e87e05f7d4161c513bbb20a37addcb1">eb69bf53</a>)</li> <li><strong>client-firehose:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/a12a2a0a8162b176f67d06ac8ff83d5bd52710eb">a12a2a0a</a>)</li> <li><strong>client-geo-places:</strong> Update endpoint ruleset parameters casing (<a href="https://github.com/aws/aws-sdk-js-v3/commit/0223dac09ecadf083fceab7224db40caa71cc92f">0223dac0</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em... _Description has been truncated_ Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.nor…
Configuration menu - View commit details
-
Copy full SHA for 8737fe2 - Browse repository at this point
Copy the full SHA 8737fe2View commit details -
chore(deps): bump github/codeql-action from 4.31.0 to 4.31.2 (#4861)
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.31.0 to 4.31.2. <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>v4.31.2</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>4.31.2 - 30 Oct 2025</h2> <p>No user facing changes.</p> <p>See the full <a href="https://github.com/github/codeql-action/blob/v4.31.2/CHANGELOG.md">CHANGELOG.md</a> for more information.</p> <h2>v4.31.1</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>4.31.1 - 30 Oct 2025</h2> <ul> <li>The <code>add-snippets</code> input has been removed from the <code>analyze</code> action. This input has been deprecated since CodeQL Action 3.26.4 in August 2024 when this removal was announced.</li> </ul> <p>See the full <a href="https://github.com/github/codeql-action/blob/v4.31.1/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>4.31.2 - 30 Oct 2025</h2> <p>No user facing changes.</p> <h2>4.31.1 - 30 Oct 2025</h2> <ul> <li>The <code>add-snippets</code> input has been removed from the <code>analyze</code> action. This input has been deprecated since CodeQL Action 3.26.4 in August 2024 when this removal was announced.</li> </ul> <h2>4.31.0 - 24 Oct 2025</h2> <ul> <li>Bump minimum CodeQL bundle version to 2.17.6. <a href="https://redirect.github.com/github/codeql-action/pull/3223">#3223</a></li> <li>When SARIF files are uploaded by the <code>analyze</code> or <code>upload-sarif</code> actions, the CodeQL Action automatically performs post-processing steps to prepare the data for the upload. Previously, these post-processing steps were only performed before an upload took place. We are now changing this so that the post-processing steps will always be performed, even when the SARIF files are not uploaded. This does not change anything for the <code>upload-sarif</code> action. For <code>analyze</code>, this may affect Advanced Setup for CodeQL users who specify a value other than <code>always</code> for the <code>upload</code> input. <a href="https://redirect.github.com/github/codeql-action/pull/3222">#3222</a></li> </ul> <h2>4.30.9 - 17 Oct 2025</h2> <ul> <li>Update default CodeQL bundle version to 2.23.3. <a href="https://redirect.github.com/github/codeql-action/pull/3205">#3205</a></li> <li>Experimental: A new <code>setup-codeql</code> action has been added which is similar to <code>init</code>, except it only installs the CodeQL CLI and does not initialize a database. Do not use this in production as it is part of an internal experiment and subject to change at any time. <a href="https://redirect.github.com/github/codeql-action/pull/3204">#3204</a></li> </ul> <h2>4.30.8 - 10 Oct 2025</h2> <p>No user facing changes.</p> <h2>4.30.7 - 06 Oct 2025</h2> <ul> <li>[v4+ only] The CodeQL Action now runs on Node.js v24. <a href="https://redirect.github.com/github/codeql-action/pull/3169">#3169</a></li> </ul> <h2>3.30.6 - 02 Oct 2025</h2> <ul> <li>Update default CodeQL bundle version to 2.23.2. <a href="https://redirect.github.com/github/codeql-action/pull/3168">#3168</a></li> </ul> <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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/github/codeql-action/commit/0499de31b99561a6d14a36a5f662c2a54f91beee"><code>0499de3</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3261">#3261</a> from github/henrymercer/setup-python</li> <li><a href="https://github.com/github/codeql-action/commit/3b96745d2bb2af9f01a0c9a19f4ffd034ae37879"><code>3b96745</code></a> Set up Python in mergeback workflow</li> <li><a href="https://github.com/github/codeql-action/commit/8a06050a8c0348fb4738f28e0cfbb6727cf054ce"><code>8a06050</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3259">#3259</a> from github/update-v4.31.2-9576b5cbe</li> <li><a href="https://github.com/github/codeql-action/commit/752a642cb25304f2aaae33cfcc3911673bf65aca"><code>752a642</code></a> Update changelog for v4.31.2</li> <li><a href="https://github.com/github/codeql-action/commit/9576b5cbe818ddefe4e1b444017536fe40b9ab2d"><code>9576b5c</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3258">#3258</a> from github/mbg/enablement-errors/case-insensitive</li> <li><a href="https://github.com/github/codeql-action/commit/cc8843728c8296d35175b82c7f1bb3748290764a"><code>cc88437</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3257">#3257</a> from github/henrymercer/ubuntu-slim</li> <li><a href="https://github.com/github/codeql-action/commit/f0e9bf07f44488f7e3adf5ff01d04e6392b60b3b"><code>f0e9bf0</code></a> Make <code>isEnablementError</code> case-insensitive</li> <li><a href="https://github.com/github/codeql-action/commit/2a3599c52055e7a5443d3fef8981a4d543586dde"><code>2a3599c</code></a> Run lightweight workflows on <code>ubuntu-slim</code></li> <li><a href="https://github.com/github/codeql-action/commit/514ff4d116ef04d9ffc8adb3da5abb07961cb990"><code>514ff4d</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3256">#3256</a> from github/henrymercer/resolve-bad-merge</li> <li><a href="https://github.com/github/codeql-action/commit/aab1c2f9318aa4b88e7532de10fe02ac860d5ab8"><code>aab1c2f</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3253">#3253</a> from github/mergeback/v4.31.1-to-main-5fe9434c</li> <li>Additional commits viewable in <a href="https://github.com/github/codeql-action/compare/4e94bd11f71e507f7f87df81788dff88d1dacbfb...0499de31b99561a6d14a36a5f662c2a54f91beee">compare view</a></li> </ul> </details> <br /> [](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>
Configuration menu - View commit details
-
Copy full SHA for e3a0b96 - Browse repository at this point
Copy the full SHA e3a0b96View commit details -
chore(deps): bump google/osv-scanner-action from 2.2.3 to 2.2.4 (#4862)
Bumps [google/osv-scanner-action](https://github.com/google/osv-scanner-action) from 2.2.3 to 2.2.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/google/osv-scanner-action/releases">google/osv-scanner-action's releases</a>.</em></p> <blockquote> <h2>v2.2.4</h2> <h2>What's Changed</h2> <ul> <li>chore(deps): update github/codeql-action action to v4 by <a href="https://github.com/renovate-bot"><code>@renovate-bot</code></a> in <a href="https://redirect.github.com/google/osv-scanner-action/pull/102">google/osv-scanner-action#102</a></li> <li>Update to v2.2.4 by <a href="https://github.com/another-rex"><code>@another-rex</code></a> in <a href="https://redirect.github.com/google/osv-scanner-action/pull/103">google/osv-scanner-action#103</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/google/osv-scanner-action/compare/v2.2.3...v2.2.4">https://github.com/google/osv-scanner-action/compare/v2.2.3...v2.2.4</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/google/osv-scanner-action/commit/9bb69575e74019c2ad085a1860787043adf47ccb"><code>9bb6957</code></a> Merge pull request <a href="https://redirect.github.com/google/osv-scanner-action/issues/103">#103</a> from google/update-to-v2.2.4</li> <li><a href="https://github.com/google/osv-scanner-action/commit/74121ba1526587d465d2272f882c401985ff5eab"><code>74121ba</code></a> Update unified workflow example to point to v2.2.4 reusable workflows</li> <li><a href="https://github.com/google/osv-scanner-action/commit/ef6f278161933625ae65a409a858a83c4934e3f2"><code>ef6f278</code></a> Update reusable workflows to point to v2.2.4 actions</li> <li><a href="https://github.com/google/osv-scanner-action/commit/d510e7d909b203e4aa41380fa1e74c20cad9fadf"><code>d510e7d</code></a> "Update actions to use v2.2.4 osv-scanner image"</li> <li><a href="https://github.com/google/osv-scanner-action/commit/88da6c4b12e3962664704b4b3b82254df83919bc"><code>88da6c4</code></a> Merge pull request <a href="https://redirect.github.com/google/osv-scanner-action/issues/102">#102</a> from renovate-bot/renovate/major-workflows</li> <li><a href="https://github.com/google/osv-scanner-action/commit/bd508ad80a44ba40def38f0cb07ab8516f7f8752"><code>bd508ad</code></a> chore(deps): update github/codeql-action action to v4</li> <li>See full diff in <a href="https://github.com/google/osv-scanner-action/compare/e92b5d07338d4f0ba0981dffed17c48976ca4730...9bb69575e74019c2ad085a1860787043adf47ccb">compare view</a></li> </ul> </details> <br /> [](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>
Configuration menu - View commit details
-
Copy full SHA for 09d2be1 - Browse repository at this point
Copy the full SHA 09d2be1View commit details -
fix(lambda): bump the aws-powertools group in /lambdas with 4 updates (…
…#4865) 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.27.0 to 2.28.1 <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.28.1</h2> <h2>Summary</h2> <p>This patch release addresses an issue in the Commons package utility <a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/pull/4658">introduced</a> in v2.28.0 that caused a runtime error.</p> <p>This issue affects only those who have lambda code that depends directly or indirectly on the <code>getXrayTraceDataFromEnv</code> function in the Commons package and who are bundling that lambda with ESBuild to an ES module.</p> <p>We recommend updating to the latest version to avoid the issue.</p> <h2>Changes</h2> <h2>📜 Documentation updates</h2> <ul> <li>chore(ci): bumped the layer verison from 39 to 40 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4683">#4683</a>) by <a href="https://github.com/svozza"><code>@svozza</code></a></li> <li>chore(deps): bump <code>@types/node</code> from 24.8.1 to 24.9.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4673">#4673</a>) by @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> <li>chore(ci): bumped the layer verison from 38 to 39 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4671">#4671</a>) by <a href="https://github.com/sdangol"><code>@sdangol</code></a></li> </ul> <h2>🔧 Maintenance</h2> <ul> <li>fix(logger): fix esbuild ESM bundler error (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4678">#4678</a>) by <a href="https://github.com/svozza"><code>@svozza</code></a></li> <li>chore(deps): bump <code>@types/node</code> from 24.8.1 to 24.9.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4673">#4673</a>) by @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> <li>chore(deps-dev): bump lint-staged from 16.2.4 to 16.2.5 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4672">#4672</a>) by @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> </ul> <h2>This release was made possible by the following contributors:</h2> <p><a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot], <a href="https://github.com/github-actions"><code>@github-actions</code></a>[bot], <a href="https://github.com/sdangol"><code>@sdangol</code></a>, <a href="https://github.com/svozza"><code>@svozza</code></a>, <a href="https://github.com/apps/dependabot">dependabot[bot]</a> and <a href="https://github.com/apps/github-actions">github-actions[bot]</a></p> <h2>v2.28.0</h2> <h2>Summary</h2> <p>We are excited to announce that the REST API Event Handler now supports catch-all routes, allowing you to use regex patterns directly when defining route paths. We've also added the ability to split routers using <code>includeRouter</code> for both REST API and AppSync GraphQL Event Handlers.</p> <p>We’ve also reverted the <code>SQSRecordSchema</code> change that caused failed parsing of records when <code>md5OfMessageAttributes</code> was null.</p> <p>📜 Announcement: You can now find our documentation on the official AWS documentation domain at <a href="https://docs.aws.amazon.com/powertools/typescript/latest/">https://docs.aws.amazon.com/powertools/typescript/latest/</a></p> <p>⭐ Congratulations <a href="https://github.com/mdesousa"><code>@mdesousa</code></a>, <a href="https://github.com/thiagomeireless"><code>@thiagomeireless</code></a>, <a href="https://github.com/alex-karo"><code>@alex-karo</code></a> for their first PR merged in the project 🎉</p> <h3>Catch-all route</h3> <p>You can now use regex patterns in your routes to handle arbitrary or deeply nested paths.</p> <pre lang="typescript"><code>import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest'; <p>const app = new Router();</p> <p>// Instead of defining every possible path app.get('/files/:folder/:subfolder/:filename');</p> <p></tr></table> </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.28.0...v2.28.1">2.28.1</a> (2025-10-23)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>logger</strong> fix esbuild ESM bundler error (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4678">#4678</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8a13e8ee2b2c2715f584f762b63c495ac849979f">8a13e8e</a>)</li> </ul> <h2><a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.27.0...v2.28.0">2.28.0</a> (2025-10-21)</h2> <h3>Improvements</h3> <ul> <li><strong>commons</strong> Make X-rRay trace ID access more robust (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4658">#4658</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5199d3e3a5000d3b3b5f2906f3d62da5fc1c96ec">5199d3e</a>)</li> <li><strong>event-handler</strong> ended response stream when body is null (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4651">#4651</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a37a3173023439ee67cc328753cb2d292dc3854f">a37a317</a>)</li> <li><strong>event-handler</strong> rename ServiceError class to HttpError (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4610">#4610</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/33f733471a54d528514e7bebcd863edc4e3781a9">33f7334</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>logger</strong> correct persistentLogAttributes warning behavior (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4627">#4627</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5cb6797b66c18ddf8a266fce50b8c1dab4c25b29">5cb6797</a>)</li> <li><strong>idempotency</strong> add null check for idempotencyHandler before calling handleMiddyOnError (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4643">#4643</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5dab224fa5a341ff6e00b819690090594dbcd811">5dab224</a>)</li> <li><strong>parser</strong> updated the SQSRecordSchema to make the md5OfMessageAttributes nullable (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4632">#4632</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/adc8f60bf3ffedbbb502aaf90b44bec9bea310dd">adc8f60</a>)</li> <li><strong>event-handler</strong> allow http handlers to return duplex streams (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4629">#4629</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f46ae7c4b73a428b3a9aeb7e8858adede73637ed">f46ae7c</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>metrics</strong> use async local storage for metrics (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4663">#4663</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3886af3a275020ddae8d67cc9c5efaa74464db9c">3886af3</a>)</li> <li><strong>event-handler</strong> Add <code>includeRouter</code> support to AppSync GraphQL resolver (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4457">#4457</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ada48bbc20b61454586bbd853ee330800b6000d2">ada48bb</a>)</li> <li><strong>event-handler</strong> added support for catch all route (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4582">#4582</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/19786bf82019eaf29f35830c029f60f8c5e9573d">19786bf</a>)</li> <li><strong>event-handler</strong> add streaming functionality (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4586">#4586</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e3215263e369acb581e113f08aa3893a170d0cb9">e321526</a>)</li> <li><strong>event-handler</strong> added <code>includeRouter</code> method to split routes (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4573">#4573</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/38b6e82a0d9f4f46bb5253ba5157487bbbb884df">38b6e82</a>)</li> </ul> <h3>Maintenance</h3> <ul> <li><strong>tracer</strong> bump aws-xray-sdk-core from 3.10.3 to 3.11.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4656">#4656</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f00f7edcfd27788f8909d62a1519b317ee465a48">f00f7ed</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e2ce3250df328b61aede6b038ea90814044ea240"><code>e2ce325</code></a> chore(ci): bump version to 2.28.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4681">#4681</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8a13e8ee2b2c2715f584f762b63c495ac849979f"><code>8a13e8e</code></a> fix(logger): fix esbuild ESM bundler error (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4678">#4678</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/6c65c246fb4042939722c2f6a8ca46cfdda7d7c6"><code>6c65c24</code></a> chore(deps): bump <code>@types/node</code> from 24.8.1 to 24.9.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4673">#4673</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f3adc3e5f2c774ca97cbaa490b2169e2a8cd2b64"><code>f3adc3e</code></a> chore(deps-dev): bump lint-staged from 16.2.4 to 16.2.5 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4672">#4672</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/cb58f38ef4cbec1c7830fee4fbac767770c6f06c"><code>cb58f38</code></a> chore(ci): bumped the layer verison from 38 to 39 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4671">#4671</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5ea879976feafbc488e5ee7882548421387a4f0e"><code>5ea8799</code></a> chore(ci): bump version to 2.28.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4670">#4670</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/10511d9cf0d2cbe79cf6d787b425ccf847938dcb"><code>10511d9</code></a> chore(deps): bump aws-cdk-lib from 2.219.0 to 2.220.0 in the aws-cdk group ac...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8c664a31a8464f2ba2543c48b43098133588c8fc"><code>8c664a3</code></a> chore(deps): bump github/codeql-action from 4.30.8 to 4.30.9 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4666">#4666</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3886af3a275020ddae8d67cc9c5efaa74464db9c"><code>3886af3</code></a> feat(metrics): use async local storage for metrics (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4663">#4663</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a0be142c415522fec4f987b3c91b53706ba62f46"><code>a0be142</code></a> chore(deps): bump the aws-sdk-v3 group across 1 directory with 88 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4">#4</a>...</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.27.0...v2.28.1">compare view</a></li> </ul> </details> <br /> Updates `@aws-lambda-powertools/logger` from 2.27.0 to 2.28.1 <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.28.1</h2> <h2>Summary</h2> <p>This patch release addresses an issue in the Commons package utility <a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/pull/4658">introduced</a> in v2.28.0 that caused a runtime error.</p> <p>This issue affects only those who have lambda code that depends directly or indirectly on the <code>getXrayTraceDataFromEnv</code> function in the Commons package and who are bundling that lambda with ESBuild to an ES module.</p> <p>We recommend updating to the latest version to avoid the issue.</p> <h2>Changes</h2> <h2>📜 Documentation updates</h2> <ul> <li>chore(ci): bumped the layer verison from 39 to 40 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4683">#4683</a>) by <a href="https://github.com/svozza"><code>@svozza</code></a></li> <li>chore(deps): bump <code>@types/node</code> from 24.8.1 to 24.9.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4673">#4673</a>) by @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> <li>chore(ci): bumped the layer verison from 38 to 39 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4671">#4671</a>) by <a href="https://github.com/sdangol"><code>@sdangol</code></a></li> </ul> <h2>🔧 Maintenance</h2> <ul> <li>fix(logger): fix esbuild ESM bundler error (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4678">#4678</a>) by <a href="https://github.com/svozza"><code>@svozza</code></a></li> <li>chore(deps): bump <code>@types/node</code> from 24.8.1 to 24.9.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4673">#4673</a>) by @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> <li>chore(deps-dev): bump lint-staged from 16.2.4 to 16.2.5 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4672">#4672</a>) by @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> </ul> <h2>This release was made possible by the following contributors:</h2> <p><a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot], <a href="https://github.com/github-actions"><code>@github-actions</code></a>[bot], <a href="https://github.com/sdangol"><code>@sdangol</code></a>, <a href="https://github.com/svozza"><code>@svozza</code></a>, <a href="https://github.com/apps/dependabot">dependabot[bot]</a> and <a href="https://github.com/apps/github-actions">github-actions[bot]</a></p> <h2>v2.28.0</h2> <h2>Summary</h2> <p>We are excited to announce that the REST API Event Handler now supports catch-all routes, allowing you to use regex patterns directly when defining route paths. We've also added the ability to split routers using <code>includeRouter</code> for both REST API and AppSync GraphQL Event Handlers.</p> <p>We’ve also reverted the <code>SQSRecordSchema</code> change that caused failed parsing of records when <code>md5OfMessageAttributes</code> was null.</p> <p>📜 Announcement: You can now find our documentation on the official AWS documentation domain at <a href="https://docs.aws.amazon.com/powertools/typescript/latest/">https://docs.aws.amazon.com/powertools/typescript/latest/</a></p> <p>⭐ Congratulations <a href="https://github.com/mdesousa"><code>@mdesousa</code></a>, <a href="https://github.com/thiagomeireless"><code>@thiagomeireless</code></a>, <a href="https://github.com/alex-karo"><code>@alex-karo</code></a> for their first PR merged in the project 🎉</p> <h3>Catch-all route</h3> <p>You can now use regex patterns in your routes to handle arbitrary or deeply nested paths.</p> <pre lang="typescript"><code>import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest'; <p>const app = new Router();</p> <p>// Instead of defining every possible path app.get('/files/:folder/:subfolder/:filename');</p> <p></tr></table> </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.28.0...v2.28.1">2.28.1</a> (2025-10-23)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>logger</strong> fix esbuild ESM bundler error (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4678">#4678</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8a13e8ee2b2c2715f584f762b63c495ac849979f">8a13e8e</a>)</li> </ul> <h2><a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.27.0...v2.28.0">2.28.0</a> (2025-10-21)</h2> <h3>Improvements</h3> <ul> <li><strong>commons</strong> Make X-rRay trace ID access more robust (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4658">#4658</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5199d3e3a5000d3b3b5f2906f3d62da5fc1c96ec">5199d3e</a>)</li> <li><strong>event-handler</strong> ended response stream when body is null (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4651">#4651</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a37a3173023439ee67cc328753cb2d292dc3854f">a37a317</a>)</li> <li><strong>event-handler</strong> rename ServiceError class to HttpError (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4610">#4610</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/33f733471a54d528514e7bebcd863edc4e3781a9">33f7334</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>logger</strong> correct persistentLogAttributes warning behavior (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4627">#4627</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5cb6797b66c18ddf8a266fce50b8c1dab4c25b29">5cb6797</a>)</li> <li><strong>idempotency</strong> add null check for idempotencyHandler before calling handleMiddyOnError (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4643">#4643</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5dab224fa5a341ff6e00b819690090594dbcd811">5dab224</a>)</li> <li><strong>parser</strong> updated the SQSRecordSchema to make the md5OfMessageAttributes nullable (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4632">#4632</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/adc8f60bf3ffedbbb502aaf90b44bec9bea310dd">adc8f60</a>)</li> <li><strong>event-handler</strong> allow http handlers to return duplex streams (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4629">#4629</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f46ae7c4b73a428b3a9aeb7e8858adede73637ed">f46ae7c</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>metrics</strong> use async local storage for metrics (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4663">#4663</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3886af3a275020ddae8d67cc9c5efaa74464db9c">3886af3</a>)</li> <li><strong>event-handler</strong> Add <code>includeRouter</code> support to AppSync GraphQL resolver (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4457">#4457</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ada48bbc20b61454586bbd853ee330800b6000d2">ada48bb</a>)</li> <li><strong>event-handler</strong> added support for catch all route (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4582">#4582</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/19786bf82019eaf29f35830c029f60f8c5e9573d">19786bf</a>)</li> <li><strong>event-handler</strong> add streaming functionality (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4586">#4586</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e3215263e369acb581e113f08aa3893a170d0cb9">e321526</a>)</li> <li><strong>event-handler</strong> added <code>includeRouter</code> method to split routes (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4573">#4573</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/38b6e82a0d9f4f46bb5253ba5157487bbbb884df">38b6e82</a>)</li> </ul> <h3>Maintenance</h3> <ul> <li><strong>tracer</strong> bump aws-xray-sdk-core from 3.10.3 to 3.11.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4656">#4656</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f00f7edcfd27788f8909d62a1519b317ee465a48">f00f7ed</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e2ce3250df328b61aede6b038ea90814044ea240"><code>e2ce325</code></a> chore(ci): bump version to 2.28.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4681">#4681</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8a13e8ee2b2c2715f584f762b63c495ac849979f"><code>8a13e8e</code></a> fix(logger): fix esbuild ESM bundler error (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4678">#4678</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/6c65c246fb4042939722c2f6a8ca46cfdda7d7c6"><code>6c65c24</code></a> chore(deps): bump <code>@types/node</code> from 24.8.1 to 24.9.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4673">#4673</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f3adc3e5f2c774ca97cbaa490b2169e2a8cd2b64"><code>f3adc3e</code></a> chore(deps-dev): bump lint-staged from 16.2.4 to 16.2.5 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4672">#4672</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/cb58f38ef4cbec1c7830fee4fbac767770c6f06c"><code>cb58f38</code></a> chore(ci): bumped the layer verison from 38 to 39 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4671">#4671</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5ea879976feafbc488e5ee7882548421387a4f0e"><code>5ea8799</code></a> chore(ci): bump version to 2.28.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4670">#4670</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/10511d9cf0d2cbe79cf6d787b425ccf847938dcb"><code>10511d9</code></a> chore(deps): bump aws-cdk-lib from 2.219.0 to 2.220.0 in the aws-cdk group ac...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8c664a31a8464f2ba2543c48b43098133588c8fc"><code>8c664a3</code></a> chore(deps): bump github/codeql-action from 4.30.8 to 4.30.9 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4666">#4666</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3886af3a275020ddae8d67cc9c5efaa74464db9c"><code>3886af3</code></a> feat(metrics): use async local storage for metrics (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4663">#4663</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a0be142c415522fec4f987b3c91b53706ba62f46"><code>a0be142</code></a> chore(deps): bump the aws-sdk-v3 group across 1 directory with 88 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4">#4</a>...</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.27.0...v2.28.1">compare view</a></li> </ul> </details> <br /> Updates `@aws-lambda-powertools/metrics` from 2.27.0 to 2.28.1 <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.28.1</h2> <h2>Summary</h2> <p>This patch release addresses an issue in the Commons package utility <a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/pull/4658">introduced</a> in v2.28.0 that caused a runtime error.</p> <p>This issue affects only those who have lambda code that depends directly or indirectly on the <code>getXrayTraceDataFromEnv</code> function in the Commons package and who are bundling that lambda with ESBuild to an ES module.</p> <p>We recommend updating to the latest version to avoid the issue.</p> <h2>Changes</h2> <h2>📜 Documentation updates</h2> <ul> <li>chore(ci): bumped the layer verison from 39 to 40 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4683">#4683</a>) by <a href="https://github.com/svozza"><code>@svozza</code></a></li> <li>chore(deps): bump <code>@types/node</code> from 24.8.1 to 24.9.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4673">#4673</a>) by @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> <li>chore(ci): bumped the layer verison from 38 to 39 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4671">#4671</a>) by <a href="https://github.com/sdangol"><code>@sdangol</code></a></li> </ul> <h2>🔧 Maintenance</h2> <ul> <li>fix(logger): fix esbuild ESM bundler error (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4678">#4678</a>) by <a href="https://github.com/svozza"><code>@svozza</code></a></li> <li>chore(deps): bump <code>@types/node</code> from 24.8.1 to 24.9.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4673">#4673</a>) by @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> <li>chore(deps-dev): bump lint-staged from 16.2.4 to 16.2.5 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4672">#4672</a>) by @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> </ul> <h2>This release was made possible by the following contributors:</h2> <p><a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot], <a href="https://github.com/github-actions"><code>@github-actions</code></a>[bot], <a href="https://github.com/sdangol"><code>@sdangol</code></a>, <a href="https://github.com/svozza"><code>@svozza</code></a>, <a href="https://github.com/apps/dependabot">dependabot[bot]</a> and <a href="https://github.com/apps/github-actions">github-actions[bot]</a></p> <h2>v2.28.0</h2> <h2>Summary</h2> <p>We are excited to announce that the REST API Event Handler now supports catch-all routes, allowing you to use regex patterns directly when defining route paths. We've also added the ability to split routers using <code>includeRouter</code> for both REST API and AppSync GraphQL Event Handlers.</p> <p>We’ve also reverted the <code>SQSRecordSchema</code> change that caused failed parsing of records when <code>md5OfMessageAttributes</code> was null.</p> <p>📜 Announcement: You can now find our documentation on the official AWS documentation domain at <a href="https://docs.aws.amazon.com/powertools/typescript/latest/">https://docs.aws.amazon.com/powertools/typescript/latest/</a></p> <p>⭐ Congratulations <a href="https://github.com/mdesousa"><code>@mdesousa</code></a>, <a href="https://github.com/thiagomeireless"><code>@thiagomeireless</code></a>, <a href="https://github.com/alex-karo"><code>@alex-karo</code></a> for their first PR merged in the project 🎉</p> <h3>Catch-all route</h3> <p>You can now use regex patterns in your routes to handle arbitrary or deeply nested paths.</p> <pre lang="typescript"><code>import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest'; <p>const app = new Router();</p> <p>// Instead of defining every possible path app.get('/files/:folder/:subfolder/:filename');</p> <p></tr></table> </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.28.0...v2.28.1">2.28.1</a> (2025-10-23)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>logger</strong> fix esbuild ESM bundler error (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4678">#4678</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8a13e8ee2b2c2715f584f762b63c495ac849979f">8a13e8e</a>)</li> </ul> <h2><a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.27.0...v2.28.0">2.28.0</a> (2025-10-21)</h2> <h3>Improvements</h3> <ul> <li><strong>commons</strong> Make X-rRay trace ID access more robust (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4658">#4658</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5199d3e3a5000d3b3b5f2906f3d62da5fc1c96ec">5199d3e</a>)</li> <li><strong>event-handler</strong> ended response stream when body is null (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4651">#4651</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a37a3173023439ee67cc328753cb2d292dc3854f">a37a317</a>)</li> <li><strong>event-handler</strong> rename ServiceError class to HttpError (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4610">#4610</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/33f733471a54d528514e7bebcd863edc4e3781a9">33f7334</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>logger</strong> correct persistentLogAttributes warning behavior (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4627">#4627</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5cb6797b66c18ddf8a266fce50b8c1dab4c25b29">5cb6797</a>)</li> <li><strong>idempotency</strong> add null check for idempotencyHandler before calling handleMiddyOnError (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4643">#4643</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5dab224fa5a341ff6e00b819690090594dbcd811">5dab224</a>)</li> <li><strong>parser</strong> updated the SQSRecordSchema to make the md5OfMessageAttributes nullable (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4632">#4632</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/adc8f60bf3ffedbbb502aaf90b44bec9bea310dd">adc8f60</a>)</li> <li><strong>event-handler</strong> allow http handlers to return duplex streams (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4629">#4629</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f46ae7c4b73a428b3a9aeb7e8858adede73637ed">f46ae7c</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>metrics</strong> use async local storage for metrics (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4663">#4663</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3886af3a275020ddae8d67cc9c5efaa74464db9c">3886af3</a>)</li> <li><strong>event-handler</strong> Add <code>includeRouter</code> support to AppSync GraphQL resolver (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4457">#4457</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ada48bbc20b61454586bbd853ee330800b6000d2">ada48bb</a>)</li> <li><strong>event-handler</strong> added support for catch all route (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4582">#4582</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/19786bf82019eaf29f35830c029f60f8c5e9573d">19786bf</a>)</li> <li><strong>event-handler</strong> add streaming functionality (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4586">#4586</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e3215263e369acb581e113f08aa3893a170d0cb9">e321526</a>)</li> <li><strong>event-handler</strong> added <code>includeRouter</code> method to split routes (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4573">#4573</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/38b6e82a0d9f4f46bb5253ba5157487bbbb884df">38b6e82</a>)</li> </ul> <h3>Maintenance</h3> <ul> <li><strong>tracer</strong> bump aws-xray-sdk-core from 3.10.3 to 3.11.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4656">#4656</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f00f7edcfd27788f8909d62a1519b317ee465a48">f00f7ed</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e2ce3250df328b61aede6b038ea90814044ea240"><code>e2ce325</code></a> chore(ci): bump version to 2.28.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4681">#4681</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8a13e8ee2b2c2715f584f762b63c495ac849979f"><code>8a13e8e</code></a> fix(logger): fix esbuild ESM bundler error (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4678">#4678</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/6c65c246fb4042939722c2f6a8ca46cfdda7d7c6"><code>6c65c24</code></a> chore(deps): bump <code>@types/node</code> from 24.8.1 to 24.9.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4673">#4673</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f3adc3e5f2c774ca97cbaa490b2169e2a8cd2b64"><code>f3adc3e</code></a> chore(deps-dev): bump lint-staged from 16.2.4 to 16.2.5 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4672">#4672</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/cb58f38ef4cbec1c7830fee4fbac767770c6f06c"><code>cb58f38</code></a> chore(ci): bumped the layer verison from 38 to 39 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4671">#4671</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5ea879976feafbc488e5ee7882548421387a4f0e"><code>5ea8799</code></a> chore(ci): bump version to 2.28.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4670">#4670</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/10511d9cf0d2cbe79cf6d787b425ccf847938dcb"><code>10511d9</code></a> chore(deps): bump aws-cdk-lib from 2.219.0 to 2.220.0 in the aws-cdk group ac...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8c664a31a8464f2ba2543c48b43098133588c8fc"><code>8c664a3</code></a> chore(deps): bump github/codeql-action from 4.30.8 to 4.30.9 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4666">#4666</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3886af3a275020ddae8d67cc9c5efaa74464db9c"><code>3886af3</code></a> feat(metrics): use async local storage for metrics (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4663">#4663</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a0be142c415522fec4f987b3c91b53706ba62f46"><code>a0be142</code></a> chore(deps): bump the aws-sdk-v3 group across 1 directory with 88 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4">#4</a>...</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.27.0...v2.28.1">compare view</a></li> </ul> </details> <br /> Updates `@aws-lambda-powertools/tracer` from 2.27.0 to 2.28.1 <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.28.1</h2> <h2>Summary</h2> <p>This patch release addresses an issue in the Commons package utility <a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/pull/4658">introduced</a> in v2.28.0 that caused a runtime error.</p> <p>This issue affects only those who have lambda code that depends directly or indirectly on the <code>getXrayTraceDataFromEnv</code> function in the Commons package and who are bundling that lambda with ESBuild to an ES module.</p> <p>We recommend updating to the latest version to avoid the issue.</p> <h2>Changes</h2> <h2>📜 Documentation updates</h2> <ul> <li>chore(ci): bumped the layer verison from 39 to 40 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4683">#4683</a>) by <a href="https://github.com/svozza"><code>@svozza</code></a></li> <li>chore(deps): bump <code>@types/node</code> from 24.8.1 to 24.9.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4673">#4673</a>) by @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> <li>chore(ci): bumped the layer verison from 38 to 39 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4671">#4671</a>) by <a href="https://github.com/sdangol"><code>@sdangol</code></a></li> </ul> <h2>🔧 Maintenance</h2> <ul> <li>fix(logger): fix esbuild ESM bundler error (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4678">#4678</a>) by <a href="https://github.com/svozza"><code>@svozza</code></a></li> <li>chore(deps): bump <code>@types/node</code> from 24.8.1 to 24.9.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4673">#4673</a>) by @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> <li>chore(deps-dev): bump lint-staged from 16.2.4 to 16.2.5 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4672">#4672</a>) by @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> </ul> <h2>This release was made possible by the following contributors:</h2> <p><a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot], <a href="https://github.com/github-actions"><code>@github-actions</code></a>[bot], <a href="https://github.com/sdangol"><code>@sdangol</code></a>, <a href="https://github.com/svozza"><code>@svozza</code></a>, <a href="https://github.com/apps/dependabot">dependabot[bot]</a> and <a href="https://github.com/apps/github-actions">github-actions[bot]</a></p> <h2>v2.28.0</h2> <h2>Summary</h2> <p>We are excited to announce that the REST API Event Handler now supports catch-all routes, allowing you to use regex patterns directly when defining route paths. We've also added the ability to split routers using <code>includeRouter</code> for both REST API and AppSync GraphQL Event Handlers.</p> <p>We’ve also reverted the <code>SQSRecordSchema</code> change that caused failed parsing of records when <code>md5OfMessageAttributes</code> was null.</p> <p>📜 Announcement: You can now find our documentation on the official AWS documentation domain at <a href="https://docs.aws.amazon.com/powertools/typescript/latest/">https://docs.aws.amazon.com/powertools/typescript/latest/</a></p> <p>⭐ Congratulations <a href="https://github.com/mdesousa"><code>@mdesousa</code></a>, <a href="https://github.com/thiagomeireless"><code>@thiagomeireless</code></a>, <a href="https://github.com/alex-karo"><code>@alex-karo</code></a> for their first PR merged in the project 🎉</p> <h3>Catch-all route</h3> <p>You can now use regex patterns in your routes to handle arbitrary or deeply nested paths.</p> <pre lang="typescript"><code>import { Router } from '@aws-lambda-powertools/event-handler/experimental-rest'; <p>const app = new Router();</p> <p>// Instead of defining every possible path app.get('/files/:folder/:subfolder/:filename');</p> <p></tr></table> </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.28.0...v2.28.1">2.28.1</a> (2025-10-23)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>logger</strong> fix esbuild ESM bundler error (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4678">#4678</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8a13e8ee2b2c2715f584f762b63c495ac849979f">8a13e8e</a>)</li> </ul> <h2><a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.27.0...v2.28.0">2.28.0</a> (2025-10-21)</h2> <h3>Improvements</h3> <ul> <li><strong>commons</strong> Make X-rRay trace ID access more robust (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4658">#4658</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5199d3e3a5000d3b3b5f2906f3d62da5fc1c96ec">5199d3e</a>)</li> <li><strong>event-handler</strong> ended response stream when body is null (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4651">#4651</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a37a3173023439ee67cc328753cb2d292dc3854f">a37a317</a>)</li> <li><strong>event-handler</strong> rename ServiceError class to HttpError (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4610">#4610</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/33f733471a54d528514e7bebcd863edc4e3781a9">33f7334</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>logger</strong> correct persistentLogAttributes warning behavior (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4627">#4627</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5cb6797b66c18ddf8a266fce50b8c1dab4c25b29">5cb6797</a>)</li> <li><strong>idempotency</strong> add null check for idempotencyHandler before calling handleMiddyOnError (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4643">#4643</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5dab224fa5a341ff6e00b819690090594dbcd811">5dab224</a>)</li> <li><strong>parser</strong> updated the SQSRecordSchema to make the md5OfMessageAttributes nullable (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4632">#4632</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/adc8f60bf3ffedbbb502aaf90b44bec9bea310dd">adc8f60</a>)</li> <li><strong>event-handler</strong> allow http handlers to return duplex streams (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4629">#4629</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f46ae7c4b73a428b3a9aeb7e8858adede73637ed">f46ae7c</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>metrics</strong> use async local storage for metrics (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4663">#4663</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3886af3a275020ddae8d67cc9c5efaa74464db9c">3886af3</a>)</li> <li><strong>event-handler</strong> Add <code>includeRouter</code> support to AppSync GraphQL resolver (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4457">#4457</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/ada48bbc20b61454586bbd853ee330800b6000d2">ada48bb</a>)</li> <li><strong>event-handler</strong> added support for catch all route (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4582">#4582</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/19786bf82019eaf29f35830c029f60f8c5e9573d">19786bf</a>)</li> <li><strong>event-handler</strong> add streaming functionality (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4586">#4586</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e3215263e369acb581e113f08aa3893a170d0cb9">e321526</a>)</li> <li><strong>event-handler</strong> added <code>includeRouter</code> method to split routes (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4573">#4573</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/38b6e82a0d9f4f46bb5253ba5157487bbbb884df">38b6e82</a>)</li> </ul> <h3>Maintenance</h3> <ul> <li><strong>tracer</strong> bump aws-xray-sdk-core from 3.10.3 to 3.11.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4656">#4656</a>) (<a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f00f7edcfd27788f8909d62a1519b317ee465a48">f00f7ed</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/e2ce3250df328b61aede6b038ea90814044ea240"><code>e2ce325</code></a> chore(ci): bump version to 2.28.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4681">#4681</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8a13e8ee2b2c2715f584f762b63c495ac849979f"><code>8a13e8e</code></a> fix(logger): fix esbuild ESM bundler error (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4678">#4678</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/6c65c246fb4042939722c2f6a8ca46cfdda7d7c6"><code>6c65c24</code></a> chore(deps): bump <code>@types/node</code> from 24.8.1 to 24.9.1 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4673">#4673</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/f3adc3e5f2c774ca97cbaa490b2169e2a8cd2b64"><code>f3adc3e</code></a> chore(deps-dev): bump lint-staged from 16.2.4 to 16.2.5 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4672">#4672</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/cb58f38ef4cbec1c7830fee4fbac767770c6f06c"><code>cb58f38</code></a> chore(ci): bumped the layer verison from 38 to 39 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4671">#4671</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/5ea879976feafbc488e5ee7882548421387a4f0e"><code>5ea8799</code></a> chore(ci): bump version to 2.28.0 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4670">#4670</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/10511d9cf0d2cbe79cf6d787b425ccf847938dcb"><code>10511d9</code></a> chore(deps): bump aws-cdk-lib from 2.219.0 to 2.220.0 in the aws-cdk group ac...</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/8c664a31a8464f2ba2543c48b43098133588c8fc"><code>8c664a3</code></a> chore(deps): bump github/codeql-action from 4.30.8 to 4.30.9 (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4666">#4666</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/3886af3a275020ddae8d67cc9c5efaa74464db9c"><code>3886af3</code></a> feat(metrics): use async local storage for metrics (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4663">#4663</a>)</li> <li><a href="https://github.com/aws-powertools/powertools-lambda-typescript/commit/a0be142c415522fec4f987b3c91b53706ba62f46"><code>a0be142</code></a> chore(deps): bump the aws-sdk-v3 group across 1 directory with 88 updates (<a href="https://redirect.github.com/aws-powertools/powertools-lambda-typescript/issues/4">#4</a>...</li> <li>Additional commits viewable in <a href="https://github.com/aws-powertools/powertools-lambda-typescript/compare/v2.27.0...v2.28.1">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>
Configuration menu - View commit details
-
Copy full SHA for 8c76e12 - Browse repository at this point
Copy the full SHA 8c76e12View commit details -
fix(lambda): bump the octokit group across 1 directory with 4 updates (…
…#4873) Bumps the octokit group with 4 updates in the /lambdas directory: [@octokit/auth-app](https://github.com/octokit/auth-app.js), [@octokit/core](https://github.com/octokit/core.js), [@octokit/plugin-throttling](https://github.com/octokit/plugin-throttling.js) and [@octokit/types](https://github.com/octokit/types.ts). Updates `@octokit/auth-app` from 8.1.1 to 8.1.2 <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.2</h2> <h2><a href="https://github.com/octokit/auth-app.js/compare/v8.1.1...v8.1.2">8.1.2</a> (2025-10-31)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>deps:</strong> update dependency <code>@octokit/types</code> to v16 (<a href="https://redirect.github.com/octokit/auth-app.js/issues/731">#731</a>) (<a href="https://github.com/octokit/auth-app.js/commit/016958a122fcd868c36f5c82200e5dfd14a90266">016958a</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/octokit/auth-app.js/commit/016958a122fcd868c36f5c82200e5dfd14a90266"><code>016958a</code></a> fix(deps): update dependency <code>@octokit/types</code> to v16 (<a href="https://redirect.github.com/octokit/auth-app.js/issues/731">#731</a>)</li> <li><a href="https://github.com/octokit/auth-app.js/commit/6290a83e69d4b9912abe90e6a67108eb38e396df"><code>6290a83</code></a> ci(action): update peter-evans/create-or-update-comment action to v5 (<a href="https://redirect.github.com/octokit/auth-app.js/issues/723">#723</a>)</li> <li><a href="https://github.com/octokit/auth-app.js/commit/767ba94f5008c636b227cc429e8fad3fd9c81262"><code>767ba94</code></a> ci(action): update actions/setup-node action to v6 (<a href="https://redirect.github.com/octokit/auth-app.js/issues/727">#727</a>)</li> <li><a href="https://github.com/octokit/auth-app.js/commit/a6b03f2d5fd57f6d4dda580ce04ac39c5db2e95f"><code>a6b03f2</code></a> ci(action): update github/codeql-action action to v4 (<a href="https://redirect.github.com/octokit/auth-app.js/issues/726">#726</a>)</li> <li><a href="https://github.com/octokit/auth-app.js/commit/f6eb9c8e3403c385cc6a7494373b93eb5e1873c0"><code>f6eb9c8</code></a> chore(deps): update dependency node to v24 (<a href="https://redirect.github.com/octokit/auth-app.js/issues/730">#730</a>)</li> <li><a href="https://github.com/octokit/auth-app.js/commit/f50e21a0a071d4780e84bdf080396bde66268a74"><code>f50e21a</code></a> ci(action): update actions/setup-node action to v5 (<a href="https://redirect.github.com/octokit/auth-app.js/issues/718">#718</a>)</li> <li><a href="https://github.com/octokit/auth-app.js/commit/7f24cee3c5d05a614b89b87c84ccdd5d4aea37b1"><code>7f24cee</code></a> build(deps): lock file maintenance (<a href="https://redirect.github.com/octokit/auth-app.js/issues/719">#719</a>)</li> <li>See full diff in <a href="https://github.com/octokit/auth-app.js/compare/v8.1.1...v8.1.2">compare view</a></li> </ul> </details> <br /> Updates `@octokit/core` from 7.0.5 to 7.0.6 <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.6</h2> <h2><a href="https://github.com/octokit/core.js/compare/v7.0.5...v7.0.6">7.0.6</a> (2025-10-31)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>deps:</strong> update dependency <code>@octokit/types</code> to v16 (<a href="https://redirect.github.com/octokit/core.js/issues/759">#759</a>) (<a href="https://github.com/octokit/core.js/commit/951bd353a4e31f7b8bf56245dcdd6631634b4765">951bd35</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/octokit/core.js/commit/951bd353a4e31f7b8bf56245dcdd6631634b4765"><code>951bd35</code></a> fix(deps): update dependency <code>@octokit/types</code> to v16 (<a href="https://redirect.github.com/octokit/core.js/issues/759">#759</a>)</li> <li><a href="https://github.com/octokit/core.js/commit/48961f8a5bbffd1ea7739a6efcc2376fcdbc2902"><code>48961f8</code></a> ci(action): update peter-evans/create-or-update-comment action to v5 (<a href="https://redirect.github.com/octokit/core.js/issues/751">#751</a>)</li> <li><a href="https://github.com/octokit/core.js/commit/f65e54610380b27058d67f6b0d32508035117853"><code>f65e546</code></a> ci(action): update github/codeql-action action to v4 (<a href="https://redirect.github.com/octokit/core.js/issues/753">#753</a>)</li> <li><a href="https://github.com/octokit/core.js/commit/c95a0d6975231e4dc8b900134d58517e9d99041b"><code>c95a0d6</code></a> chore(deps): update dependency <code>@types/sinonjs</code>__fake-timers to v15 (<a href="https://redirect.github.com/octokit/core.js/issues/756">#756</a>)</li> <li><a href="https://github.com/octokit/core.js/commit/e0fcb164e601194f519350c1a9f5b1512ea4118f"><code>e0fcb16</code></a> ci(action): update actions/setup-node action to v6 (<a href="https://redirect.github.com/octokit/core.js/issues/754">#754</a>)</li> <li>See full diff in <a href="https://github.com/octokit/core.js/compare/v7.0.5...v7.0.6">compare view</a></li> </ul> </details> <br /> Updates `@octokit/plugin-throttling` from 11.0.2 to 11.0.3 <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.3</h2> <h2><a href="https://github.com/octokit/plugin-throttling.js/compare/v11.0.2...v11.0.3">11.0.3</a> (2025-10-31)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>deps:</strong> update dependency <code>@octokit/types</code> to v16 (<a href="https://redirect.github.com/octokit/plugin-throttling.js/issues/811">#811</a>) (<a href="https://github.com/octokit/plugin-throttling.js/commit/d87092d13201b87dd529c7f78f86ca585597a561">d87092d</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/octokit/plugin-throttling.js/commit/c253528cf575a81b3bb37a68c7856f81c4cbdb20"><code>c253528</code></a> chore(deps): update dependency node to v24 (<a href="https://redirect.github.com/octokit/plugin-throttling.js/issues/809">#809</a>)</li> <li><a href="https://github.com/octokit/plugin-throttling.js/commit/d87092d13201b87dd529c7f78f86ca585597a561"><code>d87092d</code></a> fix(deps): update dependency <code>@octokit/types</code> to v16 (<a href="https://redirect.github.com/octokit/plugin-throttling.js/issues/811">#811</a>)</li> <li><a href="https://github.com/octokit/plugin-throttling.js/commit/e3de64b5205dd1c4e4ef36e51cc0892c44b17087"><code>e3de64b</code></a> ci(action): update github/codeql-action action to v4 (<a href="https://redirect.github.com/octokit/plugin-throttling.js/issues/805">#805</a>)</li> <li><a href="https://github.com/octokit/plugin-throttling.js/commit/0673f3e5aa8fc78e36b89d7459d1faed44eb1408"><code>0673f3e</code></a> ci(action): update actions/setup-node action to v6 (<a href="https://redirect.github.com/octokit/plugin-throttling.js/issues/806">#806</a>)</li> <li>See full diff in <a href="https://github.com/octokit/plugin-throttling.js/compare/v11.0.2...v11.0.3">compare view</a></li> </ul> </details> <br /> Updates `@octokit/types` from 13.10.0 to 16.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/octokit/types.ts/releases"><code>@octokit/types</code>'s releases</a>.</em></p> <blockquote> <h2>v16.0.0</h2> <h1><a href="https://github.com/octokit/types.ts/compare/v15.0.2...v16.0.0">16.0.0</a> (2025-10-30)</h1> <h3>Features</h3> <ul> <li>add immutable releases, enterprise team membership, enterprise team organization, custom runner images, many type additions and improvements (<a href="https://redirect.github.com/octokit/types.ts/issues/693">#693</a>) (<a href="https://github.com/octokit/types.ts/commit/dc1ceebbe09c6626911e614e60b9bfb928fd1f28">dc1ceeb</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>Removed endpoints</li> </ul> <h2>v15.0.2</h2> <h2><a href="https://github.com/octokit/types.ts/compare/v15.0.1...v15.0.2">15.0.2</a> (2025-10-29)</h2> <h3>Bug Fixes</h3> <ul> <li>update generated file & update dependency node to v24 (<a href="https://redirect.github.com/octokit/types.ts/issues/691">#691</a>) (<a href="https://github.com/octokit/types.ts/commit/f5f57435769854f34bf707e81769dc94624cb423">f5f5743</a>)</li> </ul> <h2>v15.0.1</h2> <h2><a href="https://github.com/octokit/types.ts/compare/v15.0.0...v15.0.1">15.0.1</a> (2025-10-20)</h2> <h3>Bug Fixes</h3> <ul> <li>reduce complexity (<a href="https://redirect.github.com/octokit/types.ts/issues/687">#687</a>) (<a href="https://github.com/octokit/types.ts/commit/a0529c11500bdaeee7f925cc40f24e215f5280f3">a0529c1</a>)</li> </ul> <h2>v15.0.0</h2> <h1><a href="https://github.com/octokit/types.ts/compare/v14.1.0...v15.0.0">15.0.0</a> (2025-09-16)</h1> <h3>Features</h3> <ul> <li>new Projects v2 endpoints, new code scanning dismissal endpoints, many other endpoints (<a href="https://redirect.github.com/octokit/types.ts/issues/683">#683</a>) (<a href="https://github.com/octokit/types.ts/commit/56ff680df980569c2e9d759dd1223b82d7370f6c">56ff680</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>remove project card endpoints for classic projects</li> </ul> <h2>v14.1.0</h2> <h1><a href="https://github.com/octokit/types.ts/compare/v14.0.0...v14.1.0">14.1.0</a> (2025-05-25)</h1> <h3>Features</h3> <ul> <li>new <code>GET /users/{username}/settings/billing/usage</code>, <code>POST /credentials/revoke</code> endpoints, endpoint type updates, type performance fixes (<a href="https://redirect.github.com/octokit/types.ts/issues/675">#675</a>) (<a href="https://github.com/octokit/types.ts/commit/a7ec8303ea2c1d3aa3fa72a6c592857edfb76f45">a7ec830</a>), closes <a href="https://redirect.github.com/octokit/types.ts/issues/667">#667</a> <a href="https://redirect.github.com/octokit/types.ts/issues/666">#666</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/octokit/types.ts/commit/dc1ceebbe09c6626911e614e60b9bfb928fd1f28"><code>dc1ceeb</code></a> feat: add immutable releases, enterprise team membership, enterprise team org...</li> <li><a href="https://github.com/octokit/types.ts/commit/f5f57435769854f34bf707e81769dc94624cb423"><code>f5f5743</code></a> fix: update generated file & update dependency node to v24 (<a href="https://redirect.github.com/octokit/types.ts/issues/691">#691</a>)</li> <li><a href="https://github.com/octokit/types.ts/commit/a0529c11500bdaeee7f925cc40f24e215f5280f3"><code>a0529c1</code></a> fix: reduce complexity (<a href="https://redirect.github.com/octokit/types.ts/issues/687">#687</a>)</li> <li><a href="https://github.com/octokit/types.ts/commit/435bdccf6d96db80c6a913e769d080702fcfb1ee"><code>435bdcc</code></a> ci(action): update peter-evans/create-or-update-comment action to v5 (<a href="https://redirect.github.com/octokit/types.ts/issues/684">#684</a>)</li> <li><a href="https://github.com/octokit/types.ts/commit/52ffdca89204701d157ef1e41cc96b3eead44821"><code>52ffdca</code></a> ci(action): update actions/setup-node action to v6 (<a href="https://redirect.github.com/octokit/types.ts/issues/689">#689</a>)</li> <li><a href="https://github.com/octokit/types.ts/commit/aaf87a2cd0a562c2fa32f2cbfba3716e93e09f16"><code>aaf87a2</code></a> ci(action): update github/codeql-action action to v4 (<a href="https://redirect.github.com/octokit/types.ts/issues/688">#688</a>)</li> <li><a href="https://github.com/octokit/types.ts/commit/db7d9bcf7747c13e7b28360d3c7d538ce757bb53"><code>db7d9bc</code></a> chore(deps): update dependency semantic-release to v25 (<a href="https://redirect.github.com/octokit/types.ts/issues/690">#690</a>)</li> <li><a href="https://github.com/octokit/types.ts/commit/56ff680df980569c2e9d759dd1223b82d7370f6c"><code>56ff680</code></a> feat: new Projects v2 endpoints, new code scanning dismissal endpoints, many ...</li> <li><a href="https://github.com/octokit/types.ts/commit/7ef763eff5cb9bdf2001e6fc6183534f83e446e8"><code>7ef763e</code></a> ci(action): update actions/checkout action to v5 (<a href="https://redirect.github.com/octokit/types.ts/issues/679">#679</a>)</li> <li><a href="https://github.com/octokit/types.ts/commit/1ce7ba26d458c1776299e886f6682dd5e2094242"><code>1ce7ba2</code></a> chore(deps): update dependency node to v22 (<a href="https://redirect.github.com/octokit/types.ts/issues/677">#677</a>)</li> <li>Additional commits viewable in <a href="https://github.com/octokit/types.ts/compare/v13.10.0...v16.0.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>
Configuration menu - View commit details
-
Copy full SHA for 39fc3cf - Browse repository at this point
Copy the full SHA 39fc3cfView commit details -
chore(deps): bump terraform-linters/setup-tflint from 6.2.0 to 6.2.1 (#…
…4860) Bumps [terraform-linters/setup-tflint](https://github.com/terraform-linters/setup-tflint) from 6.2.0 to 6.2.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/terraform-linters/setup-tflint/releases">terraform-linters/setup-tflint's releases</a>.</em></p> <blockquote> <h2>v6.2.1</h2> <!-- raw HTML omitted --> <h2>What's Changed</h2> <h3>Features</h3> <ul> <li>fix: install wrapper after version/cache steps by <a href="https://github.com/bendrucker"><code>@bendrucker</code></a> in <a href="https://redirect.github.com/terraform-linters/setup-tflint/pull/357">terraform-linters/setup-tflint#357</a></li> </ul> <h3>Dependencies</h3> <ul> <li>build(deps): Bump brace-expansion by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/terraform-linters/setup-tflint/pull/348">terraform-linters/setup-tflint#348</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/terraform-linters/setup-tflint/compare/v6...v6.2.1">https://github.com/terraform-linters/setup-tflint/compare/v6...v6.2.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/terraform-linters/setup-tflint/commit/4cb9feea73331a35b422df102992a03a44a3bb33"><code>4cb9fee</code></a> build(deps): Bump brace-expansion (<a href="https://redirect.github.com/terraform-linters/setup-tflint/issues/348">#348</a>)</li> <li><a href="https://github.com/terraform-linters/setup-tflint/commit/481814e6e6fd6f4bbc7ebde5aaf9cef5372deaa5"><code>481814e</code></a> fix: install wrapper after version/cache steps (<a href="https://redirect.github.com/terraform-linters/setup-tflint/issues/357">#357</a>)</li> <li>See full diff in <a href="https://github.com/terraform-linters/setup-tflint/compare/acd1575d3c037258ce5b2dd01379dc49ce24c6b7...4cb9feea73331a35b422df102992a03a44a3bb33">compare view</a></li> </ul> </details> <br /> [](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>
Configuration menu - View commit details
-
Copy full SHA for 52de7e6 - Browse repository at this point
Copy the full SHA 52de7e6View commit details -
chore(lambda): bump @typescript-eslint/parser from 8.46.1 to 8.46.2 i…
…n /lambdas (#4869) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 8.46.1 to 8.46.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@typescript-eslint/parser</code>'s releases</a>.</em></p> <blockquote> <h2>v8.46.2</h2> <h2>8.46.2 (2025-10-20)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [prefer-optional-chain] skip optional chaining when it could change the result (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11702">#11702</a>)</li> <li><strong>typescript-estree:</strong> forbid invalid modifiers in object methods (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11689">#11689</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>fisker Cheung <a href="https://github.com/fisker"><code>@fisker</code></a></li> <li>mdm317</li> </ul> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md"><code>@typescript-eslint/parser</code>'s changelog</a>.</em></p> <blockquote> <h2>8.46.2 (2025-10-20)</h2> <p>This was a version bump only for parser to align it with other projects, there were no code changes.</p> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/55ca033ee88cc95cfac4ad6dea2257fbeb1d4657"><code>55ca033</code></a> chore(release): publish 8.46.2</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.2/packages/parser">compare view</a></li> </ul> </details> <br /> [](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>
Configuration menu - View commit details
-
Copy full SHA for a8158d4 - Browse repository at this point
Copy the full SHA a8158d4View commit details
Commits on Nov 13, 2025
-
fix(lambda): bump @octokit/rest from 22.0.0 to 22.0.1 in /lambdas in …
…the octokit group (#4876) Bumps the octokit group in /lambdas with 1 update: [@octokit/rest](https://github.com/octokit/rest.js). Updates `@octokit/rest` from 22.0.0 to 22.0.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/octokit/rest.js/releases"><code>@octokit/rest</code>'s releases</a>.</em></p> <blockquote> <h2>v22.0.1</h2> <h2><a href="https://github.com/octokit/rest.js/compare/v22.0.0...v22.0.1">22.0.1</a> (2025-10-31)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>deps:</strong> update octokit monorepo (major) (<a href="https://redirect.github.com/octokit/rest.js/issues/538">#538</a>) (<a href="https://github.com/octokit/rest.js/commit/ded2f177625fc1ac6b42a85b36930b46f47012ee">ded2f17</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/octokit/rest.js/commit/daa3ec945e9f1bb77e7ee14ea80d3e823b6d31ca"><code>daa3ec9</code></a> ci(action): update actions/setup-node action to v6 (<a href="https://redirect.github.com/octokit/rest.js/issues/534">#534</a>)</li> <li><a href="https://github.com/octokit/rest.js/commit/1dec0c790a4fd2906fb8b52d6eed1be497de1783"><code>1dec0c7</code></a> ci(action): update peter-evans/create-or-update-comment action to v5 (<a href="https://redirect.github.com/octokit/rest.js/issues/531">#531</a>)</li> <li><a href="https://github.com/octokit/rest.js/commit/ded2f177625fc1ac6b42a85b36930b46f47012ee"><code>ded2f17</code></a> fix(deps): update octokit monorepo (major) (<a href="https://redirect.github.com/octokit/rest.js/issues/538">#538</a>)</li> <li><a href="https://github.com/octokit/rest.js/commit/0e0eaea0f259a9b9b5145457f7f8457dae08521b"><code>0e0eaea</code></a> chore(deps): update dependency <code>@types/node</code> to v24 (<a href="https://redirect.github.com/octokit/rest.js/issues/537">#537</a>)</li> <li><a href="https://github.com/octokit/rest.js/commit/c04acc897f017c2a37ee75f1a193c35903b465f1"><code>c04acc8</code></a> chore(deps): update vitest monorepo to v4 (major) (<a href="https://redirect.github.com/octokit/rest.js/issues/536">#536</a>)</li> <li><a href="https://github.com/octokit/rest.js/commit/e6dd3063e552cd884b0c86e40ba6cfdc374304e7"><code>e6dd306</code></a> chore(deps): update dependency undici to v7 (<a href="https://redirect.github.com/octokit/rest.js/issues/474">#474</a>)</li> <li><a href="https://github.com/octokit/rest.js/commit/5f380d04bbb71a9c2d3d241438378e6ebffe2597"><code>5f380d0</code></a> build(deps-dev): Bump form-data from 4.0.2 to 4.0.4 in /docs (<a href="https://redirect.github.com/octokit/rest.js/issues/520">#520</a>)</li> <li><a href="https://github.com/octokit/rest.js/commit/dc6827d06231ae01ba85608b64d0c7e4b9bd6e04"><code>dc6827d</code></a> build(deps-dev): Bump tar-fs from 2.1.2 to 2.1.3 in /docs (<a href="https://redirect.github.com/octokit/rest.js/issues/516">#516</a>)</li> <li>See full diff in <a href="https://github.com/octokit/rest.js/compare/v22.0.0...v22.0.1">compare view</a></li> </ul> </details> <br /> [](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 <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>
Configuration menu - View commit details
-
Copy full SHA for 807aeef - Browse repository at this point
Copy the full SHA 807aeefView commit details -
chore(docs): bump mkdocs-material from 9.6.22 to 9.6.23 in /.github/w…
…orkflows/mkdocs in the python-deps group (#4882) Bumps the python-deps group in /.github/workflows/mkdocs with 1 update: [mkdocs-material](https://github.com/squidfunk/mkdocs-material). Updates `mkdocs-material` from 9.6.22 to 9.6.23 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/squidfunk/mkdocs-material/releases">mkdocs-material's releases</a>.</em></p> <blockquote> <h2>mkdocs-material-9.6.23</h2> <ul> <li>Updated Burmese translation</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG">mkdocs-material's changelog</a>.</em></p> <blockquote> <p>mkdocs-material-9.6.23 (2025-11-01)</p> <ul> <li>Updated Burmese translation</li> </ul> <p>mkdocs-material-9.6.22 (2025-10-15)</p> <ul> <li>Updated Georgian translation</li> </ul> <p>mkdocs-material-9.6.21 (2025-09-30)</p> <ul> <li>Updated Serbian translations</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8458">#8458</a>: Temporary pin of click dependency</li> </ul> <p>mkdocs-material-9.6.20 (2025-09-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8446">#8446</a>: Deprecation warning as of Python 3.14 in Emoji extension</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8440">#8440</a>: <code>&</code> character not escaped in search highlighting</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8439">#8439</a>: FontAwesome icons color not set in social cards (regression)</li> </ul> <p>mkdocs-material-9.6.19 (2025-09-07)</p> <ul> <li>Added support for Python 3.14</li> <li>Updated Bahasa Malaysia translations</li> </ul> <p>mkdocs-material-9.6.18 (2025-08-22)</p> <ul> <li>Updated Azerbaijani translations</li> <li>Fixed last compat issues with [minijinja], now 100% compatible</li> </ul> <p>mkdocs-material-9.6.17 (2025-08-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8396">#8396</a>: Videos do not autoplay when inside a content tab</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8394">#8394</a>: Stroke width not effective in Mermaid.js diagrams</li> <li>Fixed disappearing version selector when hiding page title</li> </ul> <p>mkdocs-material-9.6.16 (2025-07-26)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8349">#8349</a>: Info plugin doesn't correctly detect virtualenv in some cases</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8334">#8334</a>: Find-in-page detects matches in hidden search result list</li> </ul> <p>mkdocs-material-9.6.15 (2025-07-01)</p> <ul> <li>Updated Mongolian translations</li> <li>Improved semantic markup of "edit this page" button</li> <li>Improved info plugin virtual environment resolution</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8291">#8291</a>: Large font size setting throws of breakpoints in JavaScript</li> </ul> <p>mkdocs-material-9.6.14 (2025-05-13)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8215">#8215</a>: Social plugin crashes when CairoSVG is updated to 2.8</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/54c7b79315b5ef5620efe16a1473d3368c8b8f52"><code>54c7b79</code></a> Prepare 9.6.23 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/f0dbcb5b66aa5060eef3ebce04d241686505887c"><code>f0dbcb5</code></a> Disabled dependabot</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/53d15f854d0479f01378023926e06a5cc857e28f"><code>53d15f8</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/d9e4f7139274bb70743a076da8b80a898b1a1c14"><code>d9e4f71</code></a> Updated Burmese translations</li> <li>See full diff in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.6.22...9.6.23">compare view</a></li> </ul> </details> <br /> [](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 <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>
Configuration menu - View commit details
-
Copy full SHA for 16f440c - Browse repository at this point
Copy the full SHA 16f440cView commit details -
chore(deps): bump step-security/harden-runner from 2.13.1 to 2.13.2 (#…
…4881) Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.13.1 to 2.13.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/step-security/harden-runner/releases">step-security/harden-runner's releases</a>.</em></p> <blockquote> <h2>v2.13.2</h2> <h2>What's Changed</h2> <ul> <li>Fixed an issue where there was a limit of 512 allowed endpoints when using block egress policy. This restriction has been removed, allowing for an unlimited number of endpoints to be configured.</li> <li>Harden Runner now automatically detects if the agent is already pre-installed on a custom VM image used by a GitHub-hosted runner. When detected, the action will skip reinstallation and use the existing agent.</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/step-security/harden-runner/compare/v2.13.1...v2.13.2">https://github.com/step-security/harden-runner/compare/v2.13.1...v2.13.2</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/step-security/harden-runner/commit/95d9a5deda9de15063e7595e9719c11c38c90ae2"><code>95d9a5d</code></a> Merge pull request <a href="https://redirect.github.com/step-security/harden-runner/issues/606">#606</a> from step-security/rc-28</li> <li><a href="https://github.com/step-security/harden-runner/commit/87e429d3fb470bcc827f338e5cce1155ff99c6eb"><code>87e429d</code></a> Update limitations.md</li> <li><a href="https://github.com/step-security/harden-runner/commit/ef891c3a30c3c15c2287ce04b33ec28b6d90a447"><code>ef891c3</code></a> feat: add support for custom vm image</li> <li><a href="https://github.com/step-security/harden-runner/commit/1fa8c8a8b1b523829fe596bfc665d2bc4c0ef835"><code>1fa8c8a</code></a> update agent</li> <li><a href="https://github.com/step-security/harden-runner/commit/92c522aaa6f53af082553dedc1596c80b71aba33"><code>92c522a</code></a> Merge pull request <a href="https://redirect.github.com/step-security/harden-runner/issues/593">#593</a> from step-security/ak-readme-updates</li> <li><a href="https://github.com/step-security/harden-runner/commit/4719ad5578c61961f4f70f833580278dea5544de"><code>4719ad5</code></a> README updates</li> <li><a href="https://github.com/step-security/harden-runner/commit/4fde639ab437b75bf4ecb52bbddb23ab0ac00259"><code>4fde639</code></a> Merge pull request <a href="https://redirect.github.com/step-security/harden-runner/issues/591">#591</a> from eromosele-stepsecurity/Upd</li> <li><a href="https://github.com/step-security/harden-runner/commit/f682f2f2d06275b6ab30c2a973c1de2fa120e134"><code>f682f2f</code></a> Update README.md</li> <li>See full diff in <a href="https://github.com/step-security/harden-runner/compare/f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a...95d9a5deda9de15063e7595e9719c11c38c90ae2">compare view</a></li> </ul> </details> <br /> [](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>
Configuration menu - View commit details
-
Copy full SHA for 0be9855 - Browse repository at this point
Copy the full SHA 0be9855View commit details -
chore(lambda): bump the vite group in /lambdas with 2 updates (#4878)
Bumps the vite group in /lambdas with 2 updates: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). Updates `vite` from 7.1.12 to 7.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/releases">vite's releases</a>.</em></p> <blockquote> <h2>[email protected]</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/[email protected]/packages/plugin-legacy/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.2.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.2.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.2.0-beta.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.2.0-beta.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.2.0-beta.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.2.0-beta.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/vitejs/vite/compare/v7.2.0-beta.1...v7.2.0">7.2.0</a> (2025-11-05)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>css:</strong> fallback to sass when sass-embedded platform binary is missing (<a href="https://redirect.github.com/vitejs/vite/issues/21002">#21002</a>) (<a href="https://github.com/vitejs/vite/commit/b1fd6161886caeb31ac646d6544116d37efe46d0">b1fd616</a>)</li> <li><strong>module-runner:</strong> make <code>getBuiltins</code> response JSON serializable (<a href="https://redirect.github.com/vitejs/vite/issues/21029">#21029</a>) (<a href="https://github.com/vitejs/vite/commit/ad5b3bf6f3ad7b24886718c5f5de32eee923ae11">ad5b3bf</a>)</li> <li><strong>types:</strong> add undefined to optional properties for exactOptionalProperties type compatibility (<a href="https://redirect.github.com/vitejs/vite/issues/21040">#21040</a>) (<a href="https://github.com/vitejs/vite/commit/2833c5576a87be2db450c195ccf64dfc8925a15b">2833c55</a>)</li> </ul> <h3>Miscellaneous Chores</h3> <ul> <li><strong>deps:</strong> update rolldown-related dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/21047">#21047</a>) (<a href="https://github.com/vitejs/vite/commit/e3a6a83406943bc59a9916cae3f25ab33c2b5802">e3a6a83</a>)</li> </ul> <h2><a href="https://github.com/vitejs/vite/compare/v7.2.0-beta.0...v7.2.0-beta.1">7.2.0-beta.1</a> (2025-10-29)</h2> <h3>Bug Fixes</h3> <ul> <li>increase stream reset rate limit for HTTP2 (<a href="https://redirect.github.com/vitejs/vite/issues/21024">#21024</a>) (<a href="https://github.com/vitejs/vite/commit/4f44f22f7f4595d74c76778bd522387138775055">4f44f22</a>)</li> <li><strong>optimizer:</strong> externalize virtual modules for html like files (<a href="https://redirect.github.com/vitejs/vite/issues/21001">#21001</a>) (<a href="https://github.com/vitejs/vite/commit/e5af352d8e1a9f187159137f836db5bedbd68a66">e5af352</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>clarify the values are escaped automatically (<a href="https://redirect.github.com/vitejs/vite/issues/21017">#21017</a>) (<a href="https://github.com/vitejs/vite/commit/246df134dd58441e1e40dd361cf42419d05ea7a5">246df13</a>)</li> </ul> <h3>Code Refactoring</h3> <ul> <li>use <code>fs.cpSync</code> (<a href="https://redirect.github.com/vitejs/vite/issues/21019">#21019</a>) (<a href="https://github.com/vitejs/vite/commit/a2df77812814b927880bc4d68aafa8c8fa47daf0">a2df778</a>)</li> </ul> <h2><a href="https://github.com/vitejs/vite/compare/v7.1.11...v7.2.0-beta.0">7.2.0-beta.0</a> (2025-10-28)</h2> <h3>Features</h3> <ul> <li>add <code>import.meta.resolve</code> support for ESM config (bundle config loader) (<a href="https://redirect.github.com/vitejs/vite/issues/20962">#20962</a>) (<a href="https://github.com/vitejs/vite/commit/f86789a6e237bd0e31cde3a3f09bdef45bfa7d1c">f86789a</a>)</li> <li>add <code>perEnvironmentWatchChangeDuringDev</code> (<a href="https://redirect.github.com/vitejs/vite/issues/20996">#20996</a>) (<a href="https://github.com/vitejs/vite/commit/a5e98e695ee4152127977abb506029dc8f7544fb">a5e98e6</a>)</li> <li>add vite client connect events (<a href="https://redirect.github.com/vitejs/vite/issues/20978">#20978</a>) (<a href="https://github.com/vitejs/vite/commit/543d87c2cd1ec629f19de56a903a15185f20db1f">543d87c</a>)</li> <li><strong>build:</strong> emit license (<a href="https://redirect.github.com/vitejs/vite/issues/18546">#18546</a>) (<a href="https://github.com/vitejs/vite/commit/b42c3fb2cb75bb4fdf7557cb35946564d6dc4384">b42c3fb</a>)</li> <li><strong>dev:</strong> support HTTP2 even if proxy feature is used (<a href="https://redirect.github.com/vitejs/vite/issues/20869">#20869</a>) (<a href="https://github.com/vitejs/vite/commit/fc21af7a42dd559a95f54b6165d34f36883eaa7f">fc21af7</a>)</li> <li><strong>lib:</strong> enable minification but keep pure annotations for es output with terser (<a href="https://redirect.github.com/vitejs/vite/issues/20522">#20522</a>) (<a href="https://github.com/vitejs/vite/commit/df997d0cfca8e1dad04ac1bf8119caa2d2e4c1fc">df997d0</a>)</li> <li><strong>optimizer:</strong> add rush lockfile support (<a href="https://redirect.github.com/vitejs/vite/issues/20833">#20833</a>) (<a href="https://github.com/vitejs/vite/commit/718ca2d708dbeb393839932437a6b161851ca24c">718ca2d</a>)</li> <li><strong>utils:</strong> support multiple certificates in resolveServerUrls (<a href="https://redirect.github.com/vitejs/vite/issues/20707">#20707</a>) (<a href="https://github.com/vitejs/vite/commit/24513e567c643d5f6fb61af6298aa3fc2b166b90">24513e5</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>build:</strong> ensure amd bundles request <code>require</code> to be injected (<a href="https://redirect.github.com/vitejs/vite/issues/20861">#20861</a>) (<a href="https://github.com/vitejs/vite/commit/bb85bd751e4568c707612b708deaba67f8af4ca3">bb85bd7</a>)</li> <li><strong>build:</strong> replace <code>names</code> in the manifest with unmangled <code>name</code> for CSS assets (<a href="https://redirect.github.com/vitejs/vite/issues/20585">#20585</a>) (<a href="https://github.com/vitejs/vite/commit/4abf0566024a70c38a0eb5bf614f72189038247d">4abf056</a>)</li> <li><strong>deps:</strong> downgrade commonjs plugin to 28.0.6 to avoid rollup/plugins<a href="https://redirect.github.com/vitejs/vite/issues/1909">#1909</a> (<a href="https://redirect.github.com/vitejs/vite/issues/20988">#20988</a>) (<a href="https://github.com/vitejs/vite/commit/856e683885ed53ec6044897451608bc6518baef6">856e683</a>)</li> <li><strong>deps:</strong> update all non-major dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/21008">#21008</a>) (<a href="https://github.com/vitejs/vite/commit/185641e3cdae29277c41eb8028f6eac542215f01">185641e</a>)</li> <li>disable optional peer dep handling for <code>nodeResolveWithVite</code> (<a href="https://redirect.github.com/vitejs/vite/issues/20989">#20989</a>) (<a href="https://github.com/vitejs/vite/commit/ca18b233d43a8f31883726ca565940ad1dc85f38">ca18b23</a>)</li> <li>handle query parameters for <code>/@vite/*</code> modules (<a href="https://redirect.github.com/vitejs/vite/issues/20998">#20998</a>) (<a href="https://github.com/vitejs/vite/commit/6843a6ae49df8ca523104a8ccfb9a8f9602b3881">6843a6a</a>)</li> <li><strong>module-runner:</strong> resolve <code>resolvedSources</code> correctly (<a href="https://redirect.github.com/vitejs/vite/issues/20959">#20959</a>) (<a href="https://github.com/vitejs/vite/commit/c4f6039436657db50c610aa17eaf821dbd4ad57d">c4f6039</a>)</li> <li><strong>resolve:</strong> match resolved subpath import path's relative prefix with regex (fix <a href="https://redirect.github.com/vitejs/vite/issues/20972">#20972</a>) (<a href="https://redirect.github.com/vitejs/vite/issues/20973">#20973</a>) (<a href="https://github.com/vitejs/vite/commit/ff2d83e2e7a3f7eba72f41b40686912f1e4b6843">ff2d83e</a>)</li> <li>update build log to include environment name (<a href="https://redirect.github.com/vitejs/vite/issues/20987">#20987</a>) (<a href="https://github.com/vitejs/vite/commit/77c25c16ba9f3568e55fd4135f57c70f984d3fdd">77c25c1</a>)</li> <li>use esm entrypoint for css preprocessors and terser (<a href="https://redirect.github.com/vitejs/vite/issues/20918">#20918</a>) (<a href="https://github.com/vitejs/vite/commit/14608241cc4c821e7a392f6d92ef291a926bd94d">1460824</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/8293de0e17af8a876d49761ed6651bd38b709174"><code>8293de0</code></a> release: v7.2.0</li> <li><a href="https://github.com/vitejs/vite/commit/2833c5576a87be2db450c195ccf64dfc8925a15b"><code>2833c55</code></a> fix(types): add undefined to optional properties for exactOptionalProperties ...</li> <li><a href="https://github.com/vitejs/vite/commit/e3a6a83406943bc59a9916cae3f25ab33c2b5802"><code>e3a6a83</code></a> chore(deps): update rolldown-related dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21047">#21047</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/b1fd6161886caeb31ac646d6544116d37efe46d0"><code>b1fd616</code></a> fix(css): fallback to sass when sass-embedded platform binary is missing (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21">#21</a>...</li> <li><a href="https://github.com/vitejs/vite/commit/ad5b3bf6f3ad7b24886718c5f5de32eee923ae11"><code>ad5b3bf</code></a> fix(module-runner): make <code>getBuiltins</code> response JSON serializable (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21029">#21029</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/793baa207beecb2d85860df57c80904b2e628902"><code>793baa2</code></a> release: v7.2.0-beta.1</li> <li><a href="https://github.com/vitejs/vite/commit/e5af352d8e1a9f187159137f836db5bedbd68a66"><code>e5af352</code></a> fix(optimizer): externalize virtual modules for html like files (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21001">#21001</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/4f44f22f7f4595d74c76778bd522387138775055"><code>4f44f22</code></a> fix: increase stream reset rate limit for HTTP2 (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21024">#21024</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/a2df77812814b927880bc4d68aafa8c8fa47daf0"><code>a2df778</code></a> refactor: use <code>fs.cpSync</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21019">#21019</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/246df134dd58441e1e40dd361cf42419d05ea7a5"><code>246df13</code></a> docs: clarify the values are escaped automatically (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21017">#21017</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite/commits/v7.2.0/packages/vite">compare view</a></li> </ul> </details> <br /> Updates `vitest` from 4.0.5 to 4.0.7 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitest-dev/vitest/releases">vitest's releases</a>.</em></p> <blockquote> <h2>v4.0.7</h2> <h3> 🐞 Bug Fixes</h3> <ul> <li>Bind <code>process</code> in case global is overwritten - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8916">vitest-dev/vitest#8916</a> <a href="https://github.com/vitest-dev/vitest/commit/6240d51a6"><!-- raw HTML omitted -->(6240d)<!-- raw HTML omitted --></a></li> <li>Create environment once per worker with <code>isolate: false</code> - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8915">vitest-dev/vitest#8915</a> <a href="https://github.com/vitest-dev/vitest/commit/c9078a26e"><!-- raw HTML omitted -->(c9078)<!-- raw HTML omitted --></a></li> <li>Add Locator as a possible element type in <code>toContainElement()</code> matcher - by <a href="https://github.com/vitalybaev"><code>@vitalybaev</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8910">vitest-dev/vitest#8910</a> and <a href="https://redirect.github.com/vitest-dev/vitest/issues/8927">vitest-dev/vitest#8927</a> <a href="https://github.com/vitest-dev/vitest/commit/35a27d4b3"><!-- raw HTML omitted -->(35a27)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: Inherit <code>isolate</code> option, deprecate <code>browser.isolate</code>/<code>browser.fileParallelism</code> - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8890">vitest-dev/vitest#8890</a> <a href="https://github.com/vitest-dev/vitest/commit/9d2b4d501"><!-- raw HTML omitted -->(9d2b4)<!-- raw HTML omitted --></a></li> <li><strong>cli</strong>: Parse <code>--execArgv</code> as array - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8924">vitest-dev/vitest#8924</a> <a href="https://github.com/vitest-dev/vitest/commit/751c3926f"><!-- raw HTML omitted -->(751c3)<!-- raw HTML omitted --></a></li> <li><strong>jsdom</strong>: Support <code>URL.createObjectURL</code>, <code>FormData.set(prop, blob)</code> - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8935">vitest-dev/vitest#8935</a> <a href="https://github.com/vitest-dev/vitest/commit/a1b7361ab"><!-- raw HTML omitted -->(a1b73)<!-- raw HTML omitted --></a></li> <li><strong>pool</strong>: Avoid <code>--require</code> argument when running in deno - by <a href="https://github.com/pi0"><code>@pi0</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8897">vitest-dev/vitest#8897</a> <a href="https://github.com/vitest-dev/vitest/commit/d41fa742f"><!-- raw HTML omitted -->(d41fa)<!-- raw HTML omitted --></a></li> <li><strong>typecheck</strong>: Handle re-runs outside <code>tsc</code> - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8920">vitest-dev/vitest#8920</a> <a href="https://github.com/vitest-dev/vitest/commit/fdb2e7982"><!-- raw HTML omitted -->(fdb2e)<!-- raw HTML omitted --></a></li> </ul> <h3> 🏎 Performance</h3> <ul> <li><strong>pool</strong>: <ul> <li>Sort test files by project by default - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8914">vitest-dev/vitest#8914</a> <a href="https://github.com/vitest-dev/vitest/commit/680a612ea"><!-- raw HTML omitted -->(680a6)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>reporters</strong>: <ul> <li>Optimize getting the tests stats - by <a href="https://github.com/Connormiha"><code>@Connormiha</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8908">vitest-dev/vitest#8908</a> <a href="https://github.com/vitest-dev/vitest/commit/06d6207fb"><!-- raw HTML omitted -->(06d62)<!-- raw HTML omitted --></a></li> <li>Remove unnecessary <code>Array.from</code> call - by <a href="https://github.com/Connormiha"><code>@Connormiha</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8907">vitest-dev/vitest#8907</a> <a href="https://github.com/vitest-dev/vitest/commit/b60149b27"><!-- raw HTML omitted -->(b6014)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h5> <a href="https://github.com/vitest-dev/vitest/compare/v4.0.6...v4.0.7">View changes on GitHub</a></h5> <h2>v4.0.6</h2> <h3> 🐞 Bug Fixes</h3> <ul> <li>Don't merge errors with different diffs for reporting - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8871">vitest-dev/vitest#8871</a> <a href="https://github.com/vitest-dev/vitest/commit/3e19f27d0"><!-- raw HTML omitted -->(3e19f)<!-- raw HTML omitted --></a></li> <li>Do not throw when importing a type from an external package - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8875">vitest-dev/vitest#8875</a> <a href="https://github.com/vitest-dev/vitest/commit/7e6c37ae5"><!-- raw HTML omitted -->(7e6c3)<!-- raw HTML omitted --></a></li> <li>Improve spying types - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8878">vitest-dev/vitest#8878</a> <a href="https://github.com/vitest-dev/vitest/commit/ca041f51a"><!-- raw HTML omitted -->(ca041)<!-- raw HTML omitted --></a></li> <li>Reuse the same environment when <code>isolate</code> and <code>fileParallelism</code> are false - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8889">vitest-dev/vitest#8889</a> <a href="https://github.com/vitest-dev/vitest/commit/31706dfe5"><!-- raw HTML omitted -->(31706)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: <ul> <li>Support module tracking - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8877">vitest-dev/vitest#8877</a> <a href="https://github.com/vitest-dev/vitest/commit/9e24a59f2"><!-- raw HTML omitted -->(9e24a)<!-- raw HTML omitted --></a></li> <li>Ensure setup files are re-evaluated on each test run - by <a href="https://github.com/yjaaidi"><code>@yjaaidi</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8883">vitest-dev/vitest#8883</a> and <a href="https://redirect.github.com/vitest-dev/vitest/issues/8884">vitest-dev/vitest#8884</a> <a href="https://github.com/vitest-dev/vitest/commit/f50ea7a25"><!-- raw HTML omitted -->(f50ea)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>coverage</strong>: <ul> <li>Prevent filtering out virtual files before remapping to sources - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8860">vitest-dev/vitest#8860</a> <a href="https://github.com/vitest-dev/vitest/commit/e3b777550"><!-- raw HTML omitted -->(e3b77)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>happy-dom</strong>: <ul> <li>Properly teardown additional keys - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8888">vitest-dev/vitest#8888</a> <a href="https://github.com/vitest-dev/vitest/commit/10a06d8c9"><!-- raw HTML omitted -->(10a06)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>jsdom</strong>: <ul> <li>Pass down Node.js <code>FormData</code> to <code>Request</code> - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8880">vitest-dev/vitest#8880</a> <a href="https://github.com/vitest-dev/vitest/commit/197caf2f9"><!-- raw HTML omitted -->(197ca)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h5> <a href="https://github.com/vitest-dev/vitest/compare/v4.0.5...v4.0.6">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/1f5d9d2ccfd0fb23b270e39992eed0a7aaa3f4d7"><code>1f5d9d2</code></a> chore: release v4.0.7</li> <li><a href="https://github.com/vitest-dev/vitest/commit/a1b7361ab171e03daf4900141fd7502b1ccc1844"><code>a1b7361</code></a> fix(jsdom): support <code>URL.createObjectURL</code>, <code>FormData.set(prop, blob)</code> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8935">#8935</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/751c3926fc13a1a1d85e8e47a6903f87dc3b60fb"><code>751c392</code></a> fix(cli): parse <code>--execArgv</code> as array (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8924">#8924</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/c9078a26e3b5fe38acdc59d7ba282eaa5740b6ef"><code>c9078a2</code></a> fix: create environment once per worker with <code>isolate: false</code> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8915">#8915</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/9d2b4d501ad32ba1e132f9b6e42958ce140c0be7"><code>9d2b4d5</code></a> fix(browser): inherit <code>isolate</code> option, deprecate <code>browser.isolate</code>/`browser....</li> <li><a href="https://github.com/vitest-dev/vitest/commit/680a612ea73aeacde799d33bdcc2d16010bd6fa0"><code>680a612</code></a> perf(pool): sort test files by project by default (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8914">#8914</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/fdb2e7982a73e78113db4355075d48ad80963cfc"><code>fdb2e79</code></a> fix(typecheck): handle re-runs outside <code>tsc</code> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8920">#8920</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/6240d51a6abff12bd830593f926588556e1c41f8"><code>6240d51</code></a> fix: bind <code>process</code> in case global is overwritten (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8916">#8916</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/d41fa742fd0354a43003e29280b8213a72783f07"><code>d41fa74</code></a> fix(pool): avoid <code>--require</code> argument when running in deno (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8897">#8897</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/b60149b274c2fe88dc41caf05aaa8d9fb6b2df17"><code>b60149b</code></a> perf(reporters): remove unnecessary <code>Array.from</code> call (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8907">#8907</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitest-dev/vitest/commits/v4.0.7/packages/vitest">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>
Configuration menu - View commit details
-
Copy full SHA for fa0df8c - Browse repository at this point
Copy the full SHA fa0df8cView commit details -
chore(lambda): bump @types/node from 22.18.8 to 22.19.0 in /lambdas (#…
…4880) Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.18.8 to 22.19.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li> </ul> </details> <br /> [](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>
Configuration menu - View commit details
-
Copy full SHA for 5aa27f3 - Browse repository at this point
Copy the full SHA 5aa27f3View commit details -
chore(lambda): bump @swc/core from 1.13.20 to 1.15.0 in /lambdas (#4879)
Bumps [@swc/core](https://github.com/swc-project/swc) from 1.13.20 to 1.15.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/swc-project/swc/blob/main/CHANGELOG.md"><code>@swc/core</code>'s changelog</a>.</em></p> <blockquote> <h2>[1.15.0] - 2025-11-04</h2> <h3>Bug Fixes</h3> <ul> <li> <p><strong>(cli)</strong> Update plugin template to use VisitMut API (<a href="https://redirect.github.com/swc-project/swc/issues/11218">#11218</a>) (<a href="https://github.com/swc-project/swc/commit/6a87e41fbaf2f97e2f530d8560df7bb9e0ba1a12">6a87e41</a>)</p> </li> <li> <p><strong>(hstr)</strong> Skip only <code>\u</code> for unicode (<a href="https://redirect.github.com/swc-project/swc/issues/11216">#11216</a>) (<a href="https://github.com/swc-project/swc/commit/eda01e5284ad5b1eda538eda7231795d75f7136f">eda01e5</a>)</p> </li> </ul> <h3>Features</h3> <ul> <li><strong>(hstr)</strong> Support checked <code>from_bytes</code> for Wtf8Buf and Wtf8 (<a href="https://redirect.github.com/swc-project/swc/issues/11211">#11211</a>) (<a href="https://github.com/swc-project/swc/commit/1430489460a54598300427bfc7ed0f4a30bf8d63">1430489</a>)</li> </ul> <h3>Performance</h3> <ul> <li> <p><strong>(atoms)</strong> Remove temporary allocations in rkyv serialize and deserialize (<a href="https://redirect.github.com/swc-project/swc/issues/11202">#11202</a>) (<a href="https://github.com/swc-project/swc/commit/85e6e8a66f0e517512d7cd13c5b287b1ef82e191">85e6e8a</a>)</p> </li> <li> <p><strong>(es/parser)</strong> Remove <code>start</code> in <code>State</code> (<a href="https://redirect.github.com/swc-project/swc/issues/11201">#11201</a>) (<a href="https://github.com/swc-project/swc/commit/b9aeaa3a3bab072f90fb8f26454cb33062bff584">b9aeaa3</a>)</p> </li> <li> <p><strong>(plugin)</strong> Avoid data copy when transformation finished (<a href="https://redirect.github.com/swc-project/swc/issues/11223">#11223</a>) (<a href="https://github.com/swc-project/swc/commit/af134faecd5979126165a5462abf880c70b5b54b">af134fa</a>)</p> </li> </ul> <h3>Refactor</h3> <ul> <li> <p><strong>(ast)</strong> Introduce flexible serialization encoding for AST (<a href="https://redirect.github.com/swc-project/swc/issues/11100">#11100</a>) (<a href="https://github.com/swc-project/swc/commit/8ad36478160ff848466bbff2bf442224696982bf">8ad3647</a>)</p> </li> <li> <p><strong>(plugin)</strong> Switch plugin abi to flexible serialization (<a href="https://redirect.github.com/swc-project/swc/issues/11198">#11198</a>) (<a href="https://github.com/swc-project/swc/commit/e5feaf15cebb2887cd8dc9d0275c4ec0fbf40d30">e5feaf1</a>)</p> </li> <li> <p>Flatten cargo workspaces (<a href="https://redirect.github.com/swc-project/swc/issues/11213">#11213</a>) (<a href="https://github.com/swc-project/swc/commit/622310055c59ee42b744038a33997e6f43cf4af0">6223100</a>)</p> </li> </ul> <h3>Testing</h3> <ul> <li>Copy opt-level configs to the top level workspace (<a href="https://redirect.github.com/swc-project/swc/issues/11210">#11210</a>) (<a href="https://github.com/swc-project/swc/commit/dba23f5a72d26b3b62fbafe2d8a65c69c3642669">dba23f5</a>)</li> </ul> <h2>[1.14.0] - 2025-10-29</h2> <h3>Bug Fixes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/swc-project/swc/commit/77d8c36e6368ac5c8e832d731fd58d55624cc142"><code>77d8c36</code></a> chore: Publish <code>1.15.0</code> with <code>swc_core</code> <code>v47.0.2</code></li> <li><a href="https://github.com/swc-project/swc/commit/9436f074d314db6108cfccb9f20336fc50161bde"><code>9436f07</code></a> chore: Update changelog</li> <li><a href="https://github.com/swc-project/swc/commit/12366e7caf757065f429f404a0ed507f3af5b719"><code>12366e7</code></a> chore: Publish <code>1.15.0-nightly-20251104.3</code> with <code>swc_core</code> <code>v47.0.2</code></li> <li><a href="https://github.com/swc-project/swc/commit/792625c78eda0cecbbc40cbc157e607d1dcd448d"><code>792625c</code></a> chore: Remove cache for <code>targets</code></li> <li><a href="https://github.com/swc-project/swc/commit/2d331248db00876632e72b94f39093e4f3b7ed2d"><code>2d33124</code></a> chore: Improve the <code>bump</code> command (<a href="https://redirect.github.com/swc-project/swc/issues/11226">#11226</a>)</li> <li><a href="https://github.com/swc-project/swc/commit/4bde508532acaa8d35bf9626c90076e80d4716d7"><code>4bde508</code></a> chore: Publish <code>1.15.0-nightly-20251104.2</code> with <code>swc_core</code> <code>v47.0.2</code></li> <li><a href="https://github.com/swc-project/swc/commit/0d5f10bbeda372cf0f0554974c7469ae85c954d8"><code>0d5f10b</code></a> chore: FIx publish path</li> <li><a href="https://github.com/swc-project/swc/commit/2edbd40241b3402c8542241b1f8d82a4ebadd801"><code>2edbd40</code></a> chore: Update changelog</li> <li><a href="https://github.com/swc-project/swc/commit/a7f02dec1e7857844f026c15d1f46896d81875c9"><code>a7f02de</code></a> chore: Publish <code>1.15.0-nightly-20251104.1</code> with <code>swc_core</code> <code>v47.0.2</code></li> <li><a href="https://github.com/swc-project/swc/commit/6c1e8208b93a07e7e29930f044b97e6f8312192d"><code>6c1e820</code></a> chore: Fix version of bindings</li> <li>Additional commits viewable in <a href="https://github.com/swc-project/swc/compare/v1.13.20...v1.15.0">compare view</a></li> </ul> </details> <br /> [](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> Co-authored-by: Niek Palm <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c7d3fb9 - Browse repository at this point
Copy the full SHA c7d3fb9View commit details -
chore(lambda): bump eslint from 9.38.0 to 9.39.1 in /lambdas in the e…
…slint group (#4877) Bumps the eslint group in /lambdas with 1 update: [eslint](https://github.com/eslint/eslint). Updates `eslint` from 9.38.0 to 9.39.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslint/releases">eslint's releases</a>.</em></p> <blockquote> <h2>v9.39.1</h2> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/650753ee3976784343ceb40170619dab1aa9fe0d"><code>650753e</code></a> fix: Only pass node to JS lang visitor methods (<a href="https://redirect.github.com/eslint/eslint/issues/20283">#20283</a>) (Nicholas C. Zakas)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/51b51f4f1ce82ef63264c4e45d9ef579bcd73f8e"><code>51b51f4</code></a> docs: add a section on when to use extends vs cascading (<a href="https://redirect.github.com/eslint/eslint/issues/20268">#20268</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/b44d42699dcd1729b7ecb50ca70e4c1c17f551f1"><code>b44d426</code></a> docs: Update README (GitHub Actions Bot)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/92db329211c8da5ce8340a4d4c05ce9c12845381"><code>92db329</code></a> chore: update <code>@eslint/js</code> version to 9.39.1 (<a href="https://redirect.github.com/eslint/eslint/issues/20284">#20284</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/c7ebefc9eaf99b76b30b0d3cf9960807a47367c4"><code>c7ebefc</code></a> chore: package.json update for <code>@eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/61778f6ca33c0f63962a91d6a75a4fa5db9f47d2"><code>61778f6</code></a> chore: update eslint-config-eslint dependency <code>@eslint/js</code> to ^9.39.0 (<a href="https://redirect.github.com/eslint/eslint/issues/20275">#20275</a>) (renovate[bot])</li> <li><a href="https://github.com/eslint/eslint/commit/d9ca2fcd9ad63331bfd329a69534e1ff04f231e8"><code>d9ca2fc</code></a> ci: Add rangeStrategy to eslint group in renovate config (<a href="https://redirect.github.com/eslint/eslint/issues/20266">#20266</a>) (唯然)</li> <li><a href="https://github.com/eslint/eslint/commit/009e5076ff5a4bd845f55e17676e3bb88f47c280"><code>009e507</code></a> test: fix version tests for ESLint v10 (<a href="https://redirect.github.com/eslint/eslint/issues/20274">#20274</a>) (Milos Djermanovic)</li> </ul> <h2>v9.39.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/cc57d87a3f119e9d39c55e044e526ae067fa31ce"><code>cc57d87</code></a> feat: update error loc to key in <code>no-dupe-class-members</code> (<a href="https://redirect.github.com/eslint/eslint/issues/20259">#20259</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/126552fcf35da3ddcefa527db06dabc54c04041c"><code>126552f</code></a> feat: update error location in <code>for-direction</code> and <code>no-dupe-args</code> (<a href="https://redirect.github.com/eslint/eslint/issues/20258">#20258</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/167d0970d3802a66910e9820f31dcd717fab0b2a"><code>167d097</code></a> feat: update <code>complexity</code> rule to highlight only static block header (<a href="https://redirect.github.com/eslint/eslint/issues/20245">#20245</a>) (jaymarvelz)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/15f5c7c168d0698683943f51dd617f14a5e6815c"><code>15f5c7c</code></a> fix: forward traversal <code>step.args</code> to visitors (<a href="https://redirect.github.com/eslint/eslint/issues/20253">#20253</a>) (jaymarvelz)</li> <li><a href="https://github.com/eslint/eslint/commit/5a1a534e877f7c4c992885867f923df307c3929d"><code>5a1a534</code></a> fix: allow JSDoc comments in object-shorthand rule (<a href="https://redirect.github.com/eslint/eslint/issues/20167">#20167</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/e86b813eb660f1a5adc8e143a70d9b683cd12362"><code>e86b813</code></a> fix: Use more types from <code>@eslint/core</code> (<a href="https://redirect.github.com/eslint/eslint/issues/20257">#20257</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/927272d1f0d5683b029b729d368a96527f283323"><code>927272d</code></a> fix: correct <code>Scope</code> typings (<a href="https://redirect.github.com/eslint/eslint/issues/20198">#20198</a>) (jaymarvelz)</li> <li><a href="https://github.com/eslint/eslint/commit/37f76d9c539bb6fc816fedb7be4486b71a58620a"><code>37f76d9</code></a> fix: use <code>AST.Program</code> type for Program node (<a href="https://redirect.github.com/eslint/eslint/issues/20244">#20244</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/ae07f0b3334ebd22ae2e7b09bca5973b96aa9768"><code>ae07f0b</code></a> fix: unify timing report for concurrent linting (<a href="https://redirect.github.com/eslint/eslint/issues/20188">#20188</a>) (jaymarvelz)</li> <li><a href="https://github.com/eslint/eslint/commit/b165d471be6062f4475b972155b02654a974a0e9"><code>b165d47</code></a> fix: correct <code>Rule</code> typings (<a href="https://redirect.github.com/eslint/eslint/issues/20199">#20199</a>) (jaymarvelz)</li> <li><a href="https://github.com/eslint/eslint/commit/fb97cda70d87286a7dbd2457f578ef578d6905e8"><code>fb97cda</code></a> fix: improve error message for missing fix function in suggestions (<a href="https://redirect.github.com/eslint/eslint/issues/20218">#20218</a>) (jaymarvelz)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/d3e81e30ee6be5a21151b7a17ef10a714b6059c0"><code>d3e81e3</code></a> docs: Always recommend to include a files property (<a href="https://redirect.github.com/eslint/eslint/issues/20158">#20158</a>) (Percy Ma)</li> <li><a href="https://github.com/eslint/eslint/commit/0f0385f1404dcadaba4812120b1ad02334dbd66a"><code>0f0385f</code></a> docs: use consistent naming recommendation (<a href="https://redirect.github.com/eslint/eslint/issues/20250">#20250</a>) (Alex M. Spieslechner)</li> <li><a href="https://github.com/eslint/eslint/commit/a3b145609ac649fac837c8c0515cbb2a9321ca40"><code>a3b1456</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/cf5f2dd58dd98084a21da04fe7b9054b9478d552"><code>cf5f2dd</code></a> docs: fix correct tag of <code>no-useless-constructor</code> (<a href="https://redirect.github.com/eslint/eslint/issues/20255">#20255</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/10b995c8e5473de8d66d3cd99d816e046f35e3ec"><code>10b995c</code></a> docs: add TS options and examples for <code>nofunc</code> in <code>no-use-before-define</code> (<a href="https://redirect.github.com/eslint/eslint/issues/20249">#20249</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/2584187e4a305ea7a98e1a5bd4dca2a60ad132f8"><code>2584187</code></a> docs: remove repetitive word in comment (<a href="https://redirect.github.com/eslint/eslint/issues/20242">#20242</a>) (reddaisyy)</li> <li><a href="https://github.com/eslint/eslint/commit/637216bd4f2aae7c928ad04a4e40eecffb50c9e5"><code>637216b</code></a> docs: update CLI flags migration instructions (<a href="https://redirect.github.com/eslint/eslint/issues/20238">#20238</a>) (jaymarvelz)</li> <li><a href="https://github.com/eslint/eslint/commit/e7cda3bdf1bdd664e6033503a3315ad81736b200"><code>e7cda3b</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/7b9446f7cc2054aa2cdf8e6225f4ac15a03671a8"><code>7b9446f</code></a> docs: handle empty flags sections on the feature flags page (<a href="https://redirect.github.com/eslint/eslint/issues/20222">#20222</a>) (sethamus)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/dfe3c1b2034228765c48c8a445554223767dd16d"><code>dfe3c1b</code></a> chore: update <code>@eslint/js</code> version to 9.39.0 (<a href="https://redirect.github.com/eslint/eslint/issues/20270">#20270</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/2375a6de8263393c129d41cac1b407b40111a73c"><code>2375a6d</code></a> chore: package.json update for <code>@eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/a1f4e52d67c94bef61edd1607dcd130047c1baf0"><code>a1f4e52</code></a> chore: update <code>@eslint</code> dependencies (<a href="https://redirect.github.com/eslint/eslint/issues/20265">#20265</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/c7d32298482752eeac9fb46378d4f1ea095f3836"><code>c7d3229</code></a> chore: update dependency <code>@eslint/core</code> to ^0.17.0 (<a href="https://redirect.github.com/eslint/eslint/issues/20256">#20256</a>) (renovate[bot])</li> <li><a href="https://github.com/eslint/eslint/commit/27549bc774c7c2dc5c569070a3e87c62f602bf7d"><code>27549bc</code></a> chore: update fuzz testing to not error if code sample minimizer fails (<a href="https://redirect.github.com/eslint/eslint/issues/20252">#20252</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/a1370ee40e9d8e0e41843f3278cd745fc1ad543f"><code>a1370ee</code></a> ci: bump actions/setup-node from 5 to 6 (<a href="https://redirect.github.com/eslint/eslint/issues/20230">#20230</a>) (dependabot[bot])</li> <li><a href="https://github.com/eslint/eslint/commit/9e7fad4a1867709060686d03e0ec1d0d69671cfb"><code>9e7fad4</code></a> chore: add script to auto-generate eslint:recommended configuration (<a href="https://redirect.github.com/eslint/eslint/issues/20208">#20208</a>) (唯然)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/e2772811a8595d161870835ff04822b25a2cdf45"><code>e277281</code></a> 9.39.1</li> <li><a href="https://github.com/eslint/eslint/commit/4cdf397b30b2b749865ea0fcf4d30eb8ba458896"><code>4cdf397</code></a> Build: changelog update for 9.39.1</li> <li><a href="https://github.com/eslint/eslint/commit/92db329211c8da5ce8340a4d4c05ce9c12845381"><code>92db329</code></a> chore: update <code>@eslint/js</code> version to 9.39.1 (<a href="https://redirect.github.com/eslint/eslint/issues/20284">#20284</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/c7ebefc9eaf99b76b30b0d3cf9960807a47367c4"><code>c7ebefc</code></a> chore: package.json update for <code>@eslint/js</code> release</li> <li><a href="https://github.com/eslint/eslint/commit/650753ee3976784343ceb40170619dab1aa9fe0d"><code>650753e</code></a> fix: Only pass node to JS lang visitor methods (<a href="https://redirect.github.com/eslint/eslint/issues/20283">#20283</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/51b51f4f1ce82ef63264c4e45d9ef579bcd73f8e"><code>51b51f4</code></a> docs: add a section on when to use extends vs cascading (<a href="https://redirect.github.com/eslint/eslint/issues/20268">#20268</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/61778f6ca33c0f63962a91d6a75a4fa5db9f47d2"><code>61778f6</code></a> chore: update eslint-config-eslint dependency <code>@eslint/js</code> to ^9.39.0 (<a href="https://redirect.github.com/eslint/eslint/issues/20275">#20275</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/d9ca2fcd9ad63331bfd329a69534e1ff04f231e8"><code>d9ca2fc</code></a> ci: Add rangeStrategy to eslint group in renovate config (<a href="https://redirect.github.com/eslint/eslint/issues/20266">#20266</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/009e5076ff5a4bd845f55e17676e3bb88f47c280"><code>009e507</code></a> test: fix version tests for ESLint v10 (<a href="https://redirect.github.com/eslint/eslint/issues/20274">#20274</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/b44d42699dcd1729b7ecb50ca70e4c1c17f551f1"><code>b44d426</code></a> docs: Update README</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v9.38.0...v9.39.1">compare view</a></li> </ul> </details> <br /> [](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 <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>
Configuration menu - View commit details
-
Copy full SHA for 47b9e70 - Browse repository at this point
Copy the full SHA 47b9e70View commit details -
feat: support multiple SSM parameters for large runner matcher configs (
#4790) (#4792) ### **PR Description** Implements support for splitting the runner matcher configuration across multiple SSM parameters. `PARAMETER_RUNNER_MATCHER_CONFIG_PATH` can now accept multiple parameter paths separated by a colon (`:`). This avoids SSM size limits for large configurations and improves scalability for environments with many runner types and labels. Closes #4790 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Niek Palm <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4d4872f - Browse repository at this point
Copy the full SHA 4d4872fView commit details -
chore(main): release 6.9.0 (#4872)
🤖 I have created a release *beep* *boop* --- ## [6.9.0](v6.8.5...v6.9.0) (2025-11-13) ### Features * support multiple SSM parameters for large runner matcher configs ([#4790](#4790)) ([#4792](#4792)) ([4d4872f](4d4872f)) @edersonbrilhante ### Bug Fixes * **lambda:** bump @octokit/rest from 22.0.0 to 22.0.1 in /lambdas in the octokit group ([#4876](#4876)) ([807aeef](807aeef)) * **lambda:** bump the aws group across 1 directory with 7 updates ([#4871](#4871)) ([8737fe2](8737fe2)) * **lambda:** bump the aws-powertools group in /lambdas with 4 updates ([#4865](#4865)) ([8c76e12](8c76e12)) * **lambda:** bump the octokit group across 1 directory with 4 updates ([#4873](#4873)) ([39fc3cf](39fc3cf)) --- 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>
Configuration menu - View commit details
-
Copy full SHA for fa5e83c - Browse repository at this point
Copy the full SHA fa5e83cView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v6.8.5...v6.9.0