Skip to content

chore(deps-dev): bump the dev-dependencies group across 1 directory with 34 updates - #496

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-0b8a290d0a
Open

chore(deps-dev): bump the dev-dependencies group across 1 directory with 34 updates#496
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-0b8a290d0a

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev-dependencies group with 34 updates in the / directory:

Package From To
@biomejs/biome 2.4.16 2.5.12
@changesets/changelog-github 0.6.0 1.0.1
@changesets/cli 3.0.1 3.0.2
@mermaid-js/mermaid-cli 11.15.0 11.17.0
@microsoft/api-extractor 7.58.1 7.59.0
aws-cdk 2.1138.0 2.1140.0
marked 18.0.4 18.0.11
tsx 4.22.4 4.23.13
@types/http-proxy 1.17.16 1.17.17
unctx 2.5.0 3.0.1
happy-dom 20.9.0 20.14.0
@types/aws-lambda 8.10.161 8.10.163
@aws-crypto/client-node 4.2.2 5.0.2
@aws-sdk/client-cloudwatch-logs 3.1052.0 3.1127.0
@aws-sdk/client-iam 3.1052.0 3.1127.0
@aws-sdk/client-kms 3.1052.0 3.1127.0
@aws-sdk/client-lambda 3.984.0 3.1127.0
@aws-sdk/client-ses 3.1050.0 3.1127.0
bn.js 5.2.3 5.2.5
@aws-sdk/client-bedrock-runtime 3.1115.0 3.1127.0
@modelcontextprotocol/sdk 1.29.0 1.30.0
concurrently 8.2.2 10.0.5
vite 5.4.21 8.2.2
@playwright/test 1.60.0 1.63.0
@opennextjs/aws 3.10.4 4.1.4
@astrojs/preact 4.1.3 6.0.5
astro 5.18.2 7.3.1
preact 10.29.2 10.29.8
@sveltejs/kit 2.69.3 2.70.3
@sveltejs/vite-plugin-svelte 4.0.4 7.3.0
svelte 5.56.5 5.57.0
@aws-amplify/backend 1.23.0 1.24.0
@aws-amplify/backend-cli 1.8.3 1.9.0
@vitejs/plugin-react 4.7.0 6.1.1

Updates @biomejs/biome from 2.4.16 to 2.5.12

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.12

2.5.12

Patch Changes

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed Astro attribute expressions rejecting TypeScript and JSX syntax that is accepted in text expressions.

    <Component icon={<Icon />} count={total as number} onSelect={(e: Event) => e} />
  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed Astro attribute names being split on : and . inside an expression, such as {x && <button x-on:keyup.enter={go} client:load.foo />}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed a bare > in the children of an Astro expression being treated as markup, such as {x && <div>a > b</div>}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed HTML comments inside an Astro expression failing to parse. They are now read as trivia, wherever they appear among the children.

    {x && <div><!-- first -->text<!-- last --></div>}
    {cond && <a></a><!-- c --><b></b>}
  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed is:raw children inside an Astro expression being read as JSX, such as {x && <div is:raw>{not js} < & text</div>}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed an apostrophe or quote in the text of a JSX element inside an Astro expression ending the expression early, such as {items.map((i) => <li>it's {i}</li>)}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed the children of a <script> or <style> inside an Astro expression being read as JSX. Their contents are text, so braces and comparisons no longer have to be escaped.

    {cond && <style>a { color: red }</style>}
    {cond && <script>let x = {a: 1};</script>}
  • #11440 b88f1ea Thanks @​Princesseuh! - Added support for template literal attribute values inside an Astro expression, such as {x && <C data-x=`t${x}` />}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed unquoted attribute values being rejected inside an Astro expression, such as {x && <a class=foo maxlength=255 href=/about>go</a>}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed a template literal nested inside ${} breaking the rest of an Astro file, such as const href = `/blog${page === 0 ? '' : `/${page + 1}`}`;.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed a quote inside a regex character class breaking the rest of an Astro file, such as const unsafe = /[/"]/;.

  • #11508 54f3a2e Thanks @​dyc3! - Added the nursery rule useFlatMathMinMax. Because Math.min() and Math.max() accept any number of arguments, the rule reports unnecessary nested calls to the same method:

    Math.max(Math.max(a, b), c);

    The fix flattens this expression to Math.max(a, b, c).

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.12

Patch Changes

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed Astro attribute expressions rejecting TypeScript and JSX syntax that is accepted in text expressions.

    <Component icon={<Icon />} count={total as number} onSelect={(e: Event) => e} />
  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed Astro attribute names being split on : and . inside an expression, such as {x && <button x-on:keyup.enter={go} client:load.foo />}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed a bare > in the children of an Astro expression being treated as markup, such as {x && <div>a > b</div>}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed HTML comments inside an Astro expression failing to parse. They are now read as trivia, wherever they appear among the children.

    {x && <div><!-- first -->text<!-- last --></div>}
    {cond && <a></a><!-- c --><b></b>}
  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed is:raw children inside an Astro expression being read as JSX, such as {x && <div is:raw>{not js} < & text</div>}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed an apostrophe or quote in the text of a JSX element inside an Astro expression ending the expression early, such as {items.map((i) => <li>it's {i}</li>)}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed the children of a <script> or <style> inside an Astro expression being read as JSX. Their contents are text, so braces and comparisons no longer have to be escaped.

    {cond && <style>a { color: red }</style>}
    {cond && <script>let x = {a: 1};</script>}
  • #11440 b88f1ea Thanks @​Princesseuh! - Added support for template literal attribute values inside an Astro expression, such as {x && <C data-x=`t${x}` />}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed unquoted attribute values being rejected inside an Astro expression, such as {x && <a class=foo maxlength=255 href=/about>go</a>}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed a template literal nested inside ${} breaking the rest of an Astro file, such as const href = `/blog${page === 0 ? '' : `/${page + 1}`}`;.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed a quote inside a regex character class breaking the rest of an Astro file, such as const unsafe = /[/"]/;.

  • #11508 54f3a2e Thanks @​dyc3! - Added the nursery rule useFlatMathMinMax. Because Math.min() and Math.max() accept any number of arguments, the rule reports unnecessary nested calls to the same method:

    Math.max(Math.max(a, b), c);

    The fix flattens this expression to Math.max(a, b, c).

  • #11585 c5c8315 Thanks @​Netail! - Fixed #11475: noUnresolvedImports no longer reports Bun runtime built-in modules (bun, bun:bundle, bun:ffi, bun:jsc, bun:sqlite, bun:test).

... (truncated)

Commits

Updates @changesets/changelog-github from 0.6.0 to 1.0.1

Release notes

Sourced from @​changesets/changelog-github's releases.

@​changesets/changelog-github@​1.0.1

Patch Changes

  • Updated dependencies [4d7b4fb]:
    • @​changesets/get-github-info@​1.0.1

@​changesets/changelog-github@​1.0.0

Major Changes

Minor Changes

  • #2059 070f531 Thanks @​jycouet! - Add an opt-in, experimental template option to render changelog lines from tokens ({summary}, {ref}, {pull}, {commit}, {authors}). Default output is unchanged. The token syntax may change in a patch release; pin the version if you rely on it.

  • #1871 dfefc4e Thanks @​mihkeleidast! - Use GITHUB_REPOSITORY as the default repo when no repo option is configured

  • #1969 2c7c043 Thanks @​marcalexiei! - Add a named export that mirrors the current default export

    The default export is slated for removal in the next major release, so this ensures a smoother transition path.

Patch Changes

@​changesets/changelog-github@​1.0.0-next.9

Patch Changes

  • Updated dependencies [96b65ee]:
    • @​changesets/types@​7.0.0-next.9

@​changesets/changelog-github@​1.0.0-next.3

Major Changes

Minor Changes

  • #1969 2c7c043 Thanks @​marcalexiei! - Add a named export that mirrors the current default export

    The default export is slated for removal in the next major release, so this ensures a smoother transition path.

... (truncated)

Changelog

Sourced from @​changesets/changelog-github's changelog.

1.0.1

Patch Changes

  • Updated dependencies [4d7b4fb]:
    • @​changesets/get-github-info@​1.0.1

1.0.0

Major Changes

Minor Changes

  • #2059 070f531 Thanks @​jycouet! - Add an opt-in, experimental template option to render changelog lines from tokens ({summary}, {ref}, {pull}, {commit}, {authors}). Default output is unchanged. The token syntax may change in a patch release; pin the version if you rely on it.

  • #1871 dfefc4e Thanks @​mihkeleidast! - Use GITHUB_REPOSITORY as the default repo when no repo option is configured

  • #1969 2c7c043 Thanks @​marcalexiei! - Add a named export that mirrors the current default export

    The default export is slated for removal in the next major release, so this ensures a smoother transition path.

Patch Changes

1.0.0-next.9

Patch Changes

  • Updated dependencies [96b65ee]:
    • @​changesets/types@​7.0.0-next.9

1.0.0-next.8

Patch Changes

  • Updated dependencies [b5e1762]:
    • @​changesets/types@​7.0.0-next.8

... (truncated)

Commits

Updates @changesets/cli from 3.0.1 to 3.0.2

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​3.0.2

Patch Changes

Changelog

Sourced from @​changesets/cli's changelog.

3.0.2

Patch Changes

Commits

Updates @mermaid-js/mermaid-cli from 11.15.0 to 11.17.0

Release notes

Sourced from @​mermaid-js/mermaid-cli's releases.

11.17.0

🚀 Features

🧰 Maintenance

📖 Docs

📦 Dependency updates

11.16.0

... (truncated)

Commits
  • 0f792fe Bump version 11.17.0
  • ac8a707 build(deps): bump actions/setup-node from 6.4.0 to 7.0.0
  • db44b07 build(deps): bump release-drafter/release-drafter from 7.6.0 to 7.7.0
  • 7bc0470 build(deps-dev): bump @​tsconfig/node18 from 18.2.6 to 18.2.7
  • d3adb0d build(deps): bump the codeql group across 1 directory with 3 updates
  • 2f1c051 build(deps): bump @​mermaid-js/layout-elk from 0.2.2 to 0.2.3
  • dd3132e build(deps-dev): bump puppeteer from 25.2.1 to 25.9.0
  • dff6724 style: format .github/dependabot.yml
  • b54e96d ci(dependabot): merge CodeQL dependency PRs
  • 7aa8eee build(deps): bump docker/login-action from 4.2.0 to 4.6.0
  • Additional commits viewable in compare view

Updates @microsoft/api-extractor from 7.58.1 to 7.59.0

Changelog

Sourced from @​microsoft/api-extractor's changelog.

7.59.0

Fri, 21 Aug 2026 15:16:34 GMT

Minor changes

  • Report a new ae-unresolved-import-path message when an inline import() type with a relative path cannot be resolved, instead of silently emitting the unusable path into the .d.ts rollup.
Commits

Updates aws-cdk from 2.1138.0 to 2.1140.0

Release notes

Sourced from aws-cdk's releases.

aws-cdk@v2.1140.0

2.1140.0 (2026-09-04)

Features

Bug Fixes

  • fatal failures hide the underlying error cause (#1939) (5b77563)

aws-cdk@v2.1139.0

2.1139.0 (2026-08-26)

Features

Bug Fixes

Commits
  • 5b77563 fix: fatal failures hide the underlying error cause (#1939)
  • c1d93ab feat(deps): upgrade aws-cdk-lib (#1914)
  • 50db732 refactor(toolkit-lib): rename versioned stack selection methods (#1910)
  • 6ae45d7 chore(deps): upgrade dependencies (#1913)
  • 5766544 chore: ban direct child_process and shell:true outside the subprocess tool (#...
  • d51353e fix(cli): guide Stage users to a working pattern in stack-selection error (#1...
  • 793316b refactor(cli): consolidate stack selection on toolkit-lib selectors (#1896)
  • 2a6a802 fix(cli): cdk CLI alias package declares an entrypoint that does not exist ...

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Sep 7, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner September 7, 2026 08:47
@dependabot dependabot Bot added javascript Pull requests that update javascript code dependencies Pull requests that update a dependency file labels Sep 7, 2026
@changeset-bot

changeset-bot Bot commented Sep 7, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 28a90f4

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-0b8a290d0a branch from 262f917 to bfefde6 Compare September 7, 2026 12:46
…ith 34 updates

Bumps the dev-dependencies group with 34 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.16` | `2.5.12` |
| [@changesets/changelog-github](https://github.com/changesets/changesets/tree/HEAD/packages/changelog-github) | `0.6.0` | `1.0.1` |
| [@changesets/cli](https://github.com/changesets/changesets/tree/HEAD/packages/cli) | `3.0.1` | `3.0.2` |
| [@mermaid-js/mermaid-cli](https://github.com/mermaid-js/mermaid-cli) | `11.15.0` | `11.17.0` |
| [@microsoft/api-extractor](https://github.com/microsoft/rushstack/tree/HEAD/apps/api-extractor) | `7.58.1` | `7.59.0` |
| [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk) | `2.1138.0` | `2.1140.0` |
| [marked](https://github.com/markedjs/marked) | `18.0.4` | `18.0.11` |
| [tsx](https://github.com/privatenumber/tsx) | `4.22.4` | `4.23.13` |
| [@types/http-proxy](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/http-proxy) | `1.17.16` | `1.17.17` |
| [unctx](https://github.com/unjs/unctx) | `2.5.0` | `3.0.1` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `20.9.0` | `20.14.0` |
| [@types/aws-lambda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda) | `8.10.161` | `8.10.163` |
| [@aws-crypto/client-node](https://github.com/aws/aws-encryption-sdk-javascript/tree/HEAD/modules/client-node) | `4.2.2` | `5.0.2` |
| [@aws-sdk/client-cloudwatch-logs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-cloudwatch-logs) | `3.1052.0` | `3.1127.0` |
| [@aws-sdk/client-iam](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-iam) | `3.1052.0` | `3.1127.0` |
| [@aws-sdk/client-kms](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-kms) | `3.1052.0` | `3.1127.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.984.0` | `3.1127.0` |
| [@aws-sdk/client-ses](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ses) | `3.1050.0` | `3.1127.0` |
| [bn.js](https://github.com/indutny/bn.js) | `5.2.3` | `5.2.5` |
| [@aws-sdk/client-bedrock-runtime](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-bedrock-runtime) | `3.1115.0` | `3.1127.0` |
| [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/typescript-sdk) | `1.29.0` | `1.30.0` |
| [concurrently](https://github.com/open-cli-tools/concurrently) | `8.2.2` | `10.0.5` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.21` | `8.2.2` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.60.0` | `1.63.0` |
| [@opennextjs/aws](https://github.com/opennextjs/opennextjs-aws/tree/HEAD/packages/open-next) | `3.10.4` | `4.1.4` |
| [@astrojs/preact](https://github.com/withastro/astro/tree/HEAD/packages/integrations/preact) | `4.1.3` | `6.0.5` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.18.2` | `7.3.1` |
| [preact](https://github.com/preactjs/preact) | `10.29.2` | `10.29.8` |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.69.3` | `2.70.3` |
| [@sveltejs/vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte) | `4.0.4` | `7.3.0` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.56.5` | `5.57.0` |
| [@aws-amplify/backend](https://github.com/aws-amplify/amplify-backend) | `1.23.0` | `1.24.0` |
| [@aws-amplify/backend-cli](https://github.com/aws-amplify/amplify-backend) | `1.8.3` | `1.9.0` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.7.0` | `6.1.1` |



Updates `@biomejs/biome` from 2.4.16 to 2.5.12
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.12/packages/@biomejs/biome)

Updates `@changesets/changelog-github` from 0.6.0 to 1.0.1
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/packages/changelog-github/CHANGELOG.md)
- [Commits](https://github.com/changesets/changesets/commits/@changesets/changelog-github@1.0.1/packages/changelog-github)

Updates `@changesets/cli` from 3.0.1 to 3.0.2
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/changesets/changesets/commits/@changesets/cli@3.0.2/packages/cli)

Updates `@mermaid-js/mermaid-cli` from 11.15.0 to 11.17.0
- [Release notes](https://github.com/mermaid-js/mermaid-cli/releases)
- [Commits](mermaid-js/mermaid-cli@11.15.0...11.17.0)

Updates `@microsoft/api-extractor` from 7.58.1 to 7.59.0
- [Changelog](https://github.com/microsoft/rushstack/blob/main/apps/api-extractor/CHANGELOG.md)
- [Commits](https://github.com/microsoft/rushstack/commits/@microsoft/api-extractor_v7.59.0/apps/api-extractor)

Updates `aws-cdk` from 2.1138.0 to 2.1140.0
- [Release notes](https://github.com/aws/aws-cdk-cli/releases)
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1140.0/packages/aws-cdk)

Updates `marked` from 18.0.4 to 18.0.11
- [Release notes](https://github.com/markedjs/marked/releases)
- [Commits](markedjs/marked@v18.0.4...v18.0.11)

Updates `tsx` from 4.22.4 to 4.23.13
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.22.4...v4.23.13)

Updates `@types/http-proxy` from 1.17.16 to 1.17.17
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/http-proxy)

Updates `unctx` from 2.5.0 to 3.0.1
- [Release notes](https://github.com/unjs/unctx/releases)
- [Changelog](https://github.com/unjs/unctx/blob/main/CHANGELOG.md)
- [Commits](unjs/unctx@v2.5.0...v3.0.1)

Updates `happy-dom` from 20.9.0 to 20.14.0
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.9.0...v20.14.0)

Updates `@types/aws-lambda` from 8.10.161 to 8.10.163
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/aws-lambda)

Updates `@aws-crypto/client-node` from 4.2.2 to 5.0.2
- [Changelog](https://github.com/aws/aws-encryption-sdk-javascript/blob/master/modules/client-node/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-encryption-sdk-javascript/commits/v5.0.2/modules/client-node)

Updates `@aws-sdk/client-cloudwatch-logs` from 3.1052.0 to 3.1127.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-cloudwatch-logs/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1127.0/clients/client-cloudwatch-logs)

Updates `@aws-sdk/client-iam` from 3.1052.0 to 3.1127.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-iam/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1127.0/clients/client-iam)

Updates `@aws-sdk/client-kms` from 3.1052.0 to 3.1127.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-kms/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1127.0/clients/client-kms)

Updates `@aws-sdk/client-lambda` from 3.984.0 to 3.1127.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-lambda/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1127.0/clients/client-lambda)

Updates `@aws-sdk/client-ses` from 3.1050.0 to 3.1127.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-ses/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1127.0/clients/client-ses)

Updates `bn.js` from 5.2.3 to 5.2.5
- [Release notes](https://github.com/indutny/bn.js/releases)
- [Changelog](https://github.com/indutny/bn.js/blob/master/CHANGELOG.md)
- [Commits](indutny/bn.js@v5.2.3...v5.2.5)

Updates `@aws-sdk/client-bedrock-runtime` from 3.1115.0 to 3.1127.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-bedrock-runtime/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1127.0/clients/client-bedrock-runtime)

Updates `@modelcontextprotocol/sdk` from 1.29.0 to 1.30.0
- [Release notes](https://github.com/modelcontextprotocol/typescript-sdk/releases)
- [Commits](modelcontextprotocol/typescript-sdk@v1.29.0...1.30.0)

Updates `concurrently` from 8.2.2 to 10.0.5
- [Release notes](https://github.com/open-cli-tools/concurrently/releases)
- [Commits](open-cli-tools/concurrently@v8.2.2...v10.0.5)

Updates `vite` from 5.4.21 to 8.2.2
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.2.2/packages/vite)

Updates `@playwright/test` from 1.60.0 to 1.63.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.60.0...v1.63.0)

Updates `@opennextjs/aws` from 3.10.4 to 4.1.4
- [Release notes](https://github.com/opennextjs/opennextjs-aws/releases)
- [Changelog](https://github.com/opennextjs/opennextjs-aws/blob/main/packages/open-next/CHANGELOG.md)
- [Commits](https://github.com/opennextjs/opennextjs-aws/commits/@opennextjs/aws@4.1.4/packages/open-next)

Updates `@astrojs/preact` from 4.1.3 to 6.0.5
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/preact/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/preact@6.0.5/packages/integrations/preact)

Updates `astro` from 5.18.2 to 7.3.1
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@7.3.1/packages/astro)

Updates `preact` from 10.29.2 to 10.29.8
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.29.2...10.29.8)

Updates `@sveltejs/kit` from 2.69.3 to 2.70.3
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/version-3/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.70.3/packages/kit)

Updates `@sveltejs/vite-plugin-svelte` from 4.0.4 to 7.3.0
- [Release notes](https://github.com/sveltejs/vite-plugin-svelte/releases)
- [Changelog](https://github.com/sveltejs/vite-plugin-svelte/blob/main/packages/vite-plugin-svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/vite-plugin-svelte/commits/@sveltejs/vite-plugin-svelte@7.3.0/packages/vite-plugin-svelte)

Updates `svelte` from 5.56.5 to 5.57.0
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.57.0/packages/svelte)

Updates `@aws-amplify/backend` from 1.23.0 to 1.24.0
- [Release notes](https://github.com/aws-amplify/amplify-backend/releases)
- [Commits](https://github.com/aws-amplify/amplify-backend/compare/@aws-amplify/backend@1.23.0...@aws-amplify/backend@1.24.0)

Updates `@aws-amplify/backend-cli` from 1.8.3 to 1.9.0
- [Release notes](https://github.com/aws-amplify/amplify-backend/releases)
- [Commits](https://github.com/aws-amplify/amplify-backend/compare/@aws-amplify/backend-cli@1.8.3...@aws-amplify/backend-cli@1.9.0)

Updates `@vitejs/plugin-react` from 4.7.0 to 6.1.1
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@6.1.1/packages/plugin-react)

---
updated-dependencies:
- dependency-name: "@astrojs/preact"
  dependency-version: 6.0.5
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@aws-amplify/backend"
  dependency-version: 1.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-amplify/backend-cli"
  dependency-version: 1.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-crypto/client-node"
  dependency-version: 5.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-bedrock-runtime"
  dependency-version: 3.1126.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-cloudwatch-logs"
  dependency-version: 3.1126.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-iam"
  dependency-version: 3.1126.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-kms"
  dependency-version: 3.1126.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.1126.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.1126.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.12
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@changesets/changelog-github"
  dependency-version: 1.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@changesets/cli"
  dependency-version: 3.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@mermaid-js/mermaid-cli"
  dependency-version: 11.17.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@microsoft/api-extractor"
  dependency-version: 7.59.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@modelcontextprotocol/sdk"
  dependency-version: 1.30.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@opennextjs/aws"
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@sveltejs/kit"
  dependency-version: 2.70.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@sveltejs/vite-plugin-svelte"
  dependency-version: 7.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@types/aws-lambda"
  dependency-version: 8.10.163
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@types/http-proxy"
  dependency-version: 1.17.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 6.1.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: astro
  dependency-version: 7.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: aws-cdk
  dependency-version: 2.1139.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: bn.js
  dependency-version: 5.2.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: concurrently
  dependency-version: 10.0.5
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: happy-dom
  dependency-version: 20.14.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: marked
  dependency-version: 18.0.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: preact
  dependency-version: 10.29.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: svelte
  dependency-version: 5.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: tsx
  dependency-version: 4.23.13
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: unctx
  dependency-version: 3.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: vite
  dependency-version: 8.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-0b8a290d0a branch from bfefde6 to 28a90f4 Compare September 8, 2026 10:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants