Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 23, 2025

Bumps the minor-updates group with 4 updates in the / directory: @swup/astro, astro, svelte and @biomejs/biome.

Updates @swup/astro from 1.6.0 to 1.7.0

Release notes

Sourced from @​swup/astro's releases.

1.7.0

  • Add support for replacing dynamic fragments
  • Add option for native mode View Transitions
  • Optimize client script when not using ignore option (@​aleclarson)
Changelog

Sourced from @​swup/astro's changelog.

1.7.0

  • Add support for replacing dynamic fragments
  • Add option for native mode View Transitions
  • Optimize client script when not using ignore option (@​aleclarson)
Commits

Updates astro from 5.10.2 to 5.12.3

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

  • #14119 14807a4 Thanks @​ascorbic! - Fixes a bug that caused builds to fail if a client directive was mistakenly added to an Astro component

  • #14001 4b03d9c Thanks @​dnek! - Fixes an issue where getImage() assigned the resized base URL to the srcset URL of ImageTransform, which matched the width, height, and format of the original image.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Minor Changes

  • #13971 fe35ee2 Thanks @​adamhl8! - Adds an experimental flag rawEnvValues to disable coercion of import.meta.env values (e.g. converting strings to other data types) that are populated from process.env

... (truncated)

Changelog

Sourced from astro's changelog.

5.12.3

Patch Changes

  • #14119 14807a4 Thanks @​ascorbic! - Fixes a bug that caused builds to fail if a client directive was mistakenly added to an Astro component

  • #14001 4b03d9c Thanks @​dnek! - Fixes an issue where getImage() assigned the resized base URL to the srcset URL of ImageTransform, which matched the width, height, and format of the original image.

5.12.2

Patch Changes

5.12.1

Patch Changes

5.12.0

... (truncated)

Commits

Updates svelte from 5.34.8 to 5.36.14

Release notes

Sourced from svelte's releases.

[email protected]

Patch Changes

  • fix: keep input in sync when binding updated via effect (#16482)

  • fix: rename form accept-charset attribute (#16478)

  • fix: prevent infinite async loop (#16482)

  • fix: exclude derived writes from effect abort and rescheduling (#16482)

[email protected]

Patch Changes

  • fix: ensure subscriptions are picked up correctly by deriveds (#16466)

[email protected]

Patch Changes

  • chore: move capture_signals to legacy module (#16456)

[email protected]

Patch Changes

  • fix: prevent batches from getting intertwined (#16446)

[email protected]

Patch Changes

  • fix: don't reexecute derived with no dependencies on teardown (#16438)

  • fix: disallow export { foo as default } in <script module> (#16447)

  • fix: move ownership validation into async component body (#16449)

  • fix: allow async destructured deriveds (#16444)

  • fix: move store setup/cleanup outside of async component body (#16443)

[email protected]

Patch Changes

  • fix: keep effect in the graph if it has an abort controller (#16430)

  • chore: Switch payload.out to an array (#16428)

[email protected]

Patch Changes

  • fix: allow instrinsic <svelte:...> elements to inherit from SvelteHTMLElements (#16424)

... (truncated)

Changelog

Sourced from svelte's changelog.

5.36.14

Patch Changes

  • fix: keep input in sync when binding updated via effect (#16482)

  • fix: rename form accept-charset attribute (#16478)

  • fix: prevent infinite async loop (#16482)

  • fix: exclude derived writes from effect abort and rescheduling (#16482)

5.36.13

Patch Changes

  • fix: ensure subscriptions are picked up correctly by deriveds (#16466)

5.36.12

Patch Changes

  • chore: move capture_signals to legacy module (#16456)

5.36.11

Patch Changes

  • fix: always mark reactions of deriveds (#16457)

  • fix: add labels to @const tags and props (#16454)

  • fix: tag stores for $inspect.trace() (#16452)

5.36.10

Patch Changes

  • fix: prevent batches from getting intertwined (#16446)

5.36.9

Patch Changes

  • fix: don't reexecute derived with no dependencies on teardown (#16438)

  • fix: disallow export { foo as default } in <script module> (#16447)

  • fix: move ownership validation into async component body (#16449)

... (truncated)

Commits

Updates @biomejs/biome from 2.0.6 to 2.1.2

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.1.2

2.1.2

Patch Changes

  • #6865 b35bf64 Thanks @​denbezrukov! - Fix #6485: Handle multiple semicolons correctly in blocks (#6485)

    div {
      box-sizing: border-box;
      color: red;
    }
  • #6798 3579ffa Thanks @​dyc3! - Fixed #6762, Biome now knows that ~/.config/zed/settings.json and ~/.config/Code/User/settings.json allows comments by default.

  • #6839 4cd62d8 Thanks @​ematipico! - Fixed #6838, where the Biome File Watcher incorrectly watched and stored ignored files, causing possible memory leaks when those files were dynamically created (e.g. built files).

  • #6879 0059cd9 Thanks @​denbezrukov! - Refactor: remove one level of indirection for CSS declarations with semicolon Previously, accessing a declaration from a list required an extra step:

    item
    .as_any_css_declaration_with_semicolon()
    .as_css_declaration_with_semicolon()

    Now, it can be done directly with:

    item.as_css_declaration_with_semicolon()
  • #6839 4cd62d8 Thanks @​ematipico! - Fixed a bug where the Biome Language Server didn't correctly ignore specific files when vcs.useIgnoreFile is set to true.

  • #6884 5ff50f8 Thanks @​arendjr! - Improved the performance of noImportCycles by ~30%.

  • #6903 241dd9e Thanks @​arendjr! - Fixed #6829: Fixed a false positive reported by useImportExtensions when importing a .js file that had a matching .d.ts file in the same folder.

  • #6846 446112e Thanks @​darricheng! - Fixed an issue where biome was using the wrong string quotes when the classes string has quotes, resulting in invalid code after applying the fix.

  • #6823 eebc48e Thanks @​arendjr! - Improved #6172: Optimised the way function arguments are stored in Biome's type inference. This led to about 10% performance improvement in RedisCommander.d.ts and about 2% on @next/font type definitions.

  • #6878 3402976 Thanks @​ematipico! - Fixed a bug where the Biome Language Server would apply an unsafe fix when using the code action quickfix.biome.

    Now Biome no longer applies an unsafe code fix when using the code action quickfix.biome.

  • #6794 4d5fc0e Thanks @​vladimir-ivanov! - Fixed #6719: The noInvalidUseBeforeDeclaration rule covers additional use cases.

    Examples:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.1.2

Patch Changes

  • #6865 b35bf64 Thanks @​denbezrukov! - Fix #6485: Handle multiple semicolons correctly in blocks (#6485)

    div {
      box-sizing: border-box;
      color: red;
    }
  • #6798 3579ffa Thanks @​dyc3! - Fixed #6762, Biome now knows that ~/.config/zed/settings.json and ~/.config/Code/User/settings.json allows comments by default.

  • #6839 4cd62d8 Thanks @​ematipico! - Fixed #6838, where the Biome File Watcher incorrectly watched and stored ignored files, causing possible memory leaks when those files were dynamically created (e.g. built files).

  • #6879 0059cd9 Thanks @​denbezrukov! - Refactor: remove one level of indirection for CSS declarations with semicolon Previously, accessing a declaration from a list required an extra step:

    item
    .as_any_css_declaration_with_semicolon()
    .as_css_declaration_with_semicolon()

    Now, it can be done directly with:

    item.as_css_declaration_with_semicolon()
  • #6839 4cd62d8 Thanks @​ematipico! - Fixed a bug where the Biome Language Server didn't correctly ignore specific files when vcs.useIgnoreFile is set to true.

  • #6884 5ff50f8 Thanks @​arendjr! - Improved the performance of noImportCycles by ~30%.

  • #6903 241dd9e Thanks @​arendjr! - Fixed #6829: Fixed a false positive reported by useImportExtensions when importing a .js file that had a matching .d.ts file in the same folder.

  • #6846 446112e Thanks @​darricheng! - Fixed an issue where biome was using the wrong string quotes when the classes string has quotes, resulting in invalid code after applying the fix.

  • #6823 eebc48e Thanks @​arendjr! - Improved #6172: Optimised the way function arguments are stored in Biome's type inference. This led to about 10% performance improvement in RedisCommander.d.ts and about 2% on @next/font type definitions.

  • #6878 3402976 Thanks @​ematipico! - Fixed a bug where the Biome Language Server would apply an unsafe fix when using the code action quickfix.biome.

    Now Biome no longer applies an unsafe code fix when using the code action quickfix.biome.

  • #6794 4d5fc0e Thanks @​vladimir-ivanov! - Fixed #6719: The noInvalidUseBeforeDeclaration rule covers additional use cases.

    Examples:

... (truncated)

Commits

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 commands and options

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

…pdates

Bumps the minor-updates group with 4 updates in the / directory: [@swup/astro](https://github.com/swup/astro), [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro), [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) and [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome).


Updates `@swup/astro` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/swup/astro/releases)
- [Changelog](https://github.com/swup/astro/blob/master/CHANGELOG.md)
- [Commits](swup/astro@1.6.0...1.7.0)

Updates `astro` from 5.10.2 to 5.12.3
- [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/[email protected]/packages/astro)

Updates `svelte` from 5.34.8 to 5.36.14
- [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/[email protected]/packages/svelte)

Updates `@biomejs/biome` from 2.0.6 to 2.1.2
- [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/[email protected]/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@swup/astro"
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: astro
  dependency-version: 5.12.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: svelte
  dependency-version: 5.36.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@biomejs/biome"
  dependency-version: 2.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 23, 2025
Copy link

vercel bot commented Jul 23, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
fuwari-yags ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 23, 2025 9:06pm

@L4Ph L4Ph merged commit 0dcce26 into main Jul 24, 2025
7 checks passed
@dependabot dependabot bot deleted the dependabot-npm_and_yarn-minor-updates-622a24fa3d branch July 24, 2025 00:59
athena-sh pushed a commit to athena-sh/wayfinder.page that referenced this pull request Sep 10, 2025
…pdates (saicaca#562)

Bumps the minor-updates group with 4 updates in the / directory: [@swup/astro](https://github.com/swup/astro), [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro), [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) and [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome).


Updates `@swup/astro` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/swup/astro/releases)
- [Changelog](https://github.com/swup/astro/blob/master/CHANGELOG.md)
- [Commits](swup/astro@1.6.0...1.7.0)

Updates `astro` from 5.10.2 to 5.12.3
- [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/[email protected]/packages/astro)

Updates `svelte` from 5.34.8 to 5.36.14
- [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/[email protected]/packages/svelte)

Updates `@biomejs/biome` from 2.0.6 to 2.1.2
- [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/[email protected]/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@swup/astro"
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: astro
  dependency-version: 5.12.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: svelte
  dependency-version: 5.36.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@biomejs/biome"
  dependency-version: 2.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
athena-sh pushed a commit to athena-sh/wayfinder.page that referenced this pull request Oct 3, 2025
…pdates (saicaca#562)

Bumps the minor-updates group with 4 updates in the / directory: [@swup/astro](https://github.com/swup/astro), [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro), [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) and [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome).


Updates `@swup/astro` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/swup/astro/releases)
- [Changelog](https://github.com/swup/astro/blob/master/CHANGELOG.md)
- [Commits](swup/astro@1.6.0...1.7.0)

Updates `astro` from 5.10.2 to 5.12.3
- [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/[email protected]/packages/astro)

Updates `svelte` from 5.34.8 to 5.36.14
- [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/[email protected]/packages/svelte)

Updates `@biomejs/biome` from 2.0.6 to 2.1.2
- [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/[email protected]/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@swup/astro"
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: astro
  dependency-version: 5.12.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: svelte
  dependency-version: 5.36.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@biomejs/biome"
  dependency-version: 2.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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.

1 participant