Skip to content

build(deps-dev): bump the dev-dependencies group across 1 directory with 6 updates #162

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
@biomejs/biome 2.1.2 2.1.3
@types/node 24.0.15 24.1.0
@types/three 0.171.0 0.178.1
vite 7.0.5 7.0.6
@sveltejs/kit 2.25.1 2.26.1
svelte 5.36.12 5.37.1

Updates @biomejs/biome from 2.1.2 to 2.1.3

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.1.3

2.1.3

Patch Changes

  • #7057 634a667 Thanks @​mdevils! - Added the rule noVueReservedKeys, which prevents the use of reserved Vue keys.

    It prevents the use of Vue reserved keys such as those starting with # @biomejs/biome (like $el, $data, $props) and keys starting with _` in data properties, which can cause conflicts and unexpected behavior in Vue components.

    Invalid example
    <script>
    export default {
      data: {
        $el: "",
        _foo: "bar",
      },
    };
    </script>
    <script>
    export default {
      computed: {
        $data() {
          return this.someData;
        },
      },
    };
    </script>
    Valid examples
    <script>
    export default {
      data() {
        return {
          message: "Hello Vue!",
          count: 0,
        };
      },
    };
    </script>

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.1.3

Patch Changes

  • #7057 634a667 Thanks @​mdevils! - Added the rule noVueReservedKeys, which prevents the use of reserved Vue keys.

    It prevents the use of Vue reserved keys such as those starting with like $el, $data, $props) and keys starting with \_ in data properties, which can cause conflicts and unexpected behavior in Vue components.

    Invalid example
    <script>
    export default {
      data: {
        $el: "",
        _foo: "bar",
      },
    };
    </script>
    <script>
    export default {
      computed: {
        $data() {
          return this.someData;
        },
      },
    };
    </script>
    Valid examples
    <script>
    export default {
      data() {
        return {
          message: "Hello Vue!",
          count: 0,
        };
      },
    };
    </script>
    <script>

... (truncated)

Commits

Updates @types/node from 24.0.15 to 24.1.0

Commits

Updates @types/three from 0.171.0 to 0.178.1

Commits

Updates vite from 7.0.5 to 7.0.6

Release notes

Sourced from vite's releases.

v7.0.6

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

7.0.6 (2025-07-24)

Bug Fixes

  • deps: update all non-major dependencies (#20442) (e49f505)
  • dev: incorrect sourcemap when optimized CJS is imported (#20458) (ead2dec)
  • module-runner: normalize file:// on windows (#20449) (1c9cb49)
  • respond with correct headers and status code for HEAD requests (#20421) (23d04fc)

Miscellaneous Chores

Code Refactoring

Commits

Updates @sveltejs/kit from 2.25.1 to 2.26.1

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.26.1

Patch Changes

  • fix: posixify internal app server path (#14049)

  • fix: ignore route groups when generating typed routes (#14050)

@​sveltejs/kit@​2.26.0

Minor Changes

  • feat: better type-safety for page.route.id, page.params, page.url.pathname` and various other places (#13864)

  • feat: resolve(...) and asset(...) helpers for resolving paths (#13864)

  • feat: Add $app/types module with Asset, RouteId, Pathname, ResolvedPathname RouteParams<T> and LayoutParams<T> (#13864)

@​sveltejs/kit@​2.25.2

Patch Changes

  • fix: correctly set URL when navigating during an ongoing navigation (#14004)
Changelog

Sourced from @​sveltejs/kit's changelog.

2.26.1

Patch Changes

  • fix: posixify internal app server path (#14049)

  • fix: ignore route groups when generating typed routes (#14050)

2.26.0

Minor Changes

  • feat: better type-safety for page.route.id, page.params, page.url.pathname and various other places (#13864)

  • feat: resolve(...) and asset(...) helpers for resolving paths (#13864)

  • feat: Add $app/types module with Asset, RouteId, Pathname, ResolvedPathname RouteParams<T> and LayoutParams<T> (#13864)

2.25.2

Patch Changes

  • fix: correctly set URL when navigating during an ongoing navigation (#14004)
Commits

Updates svelte from 5.36.12 to 5.37.1

Release notes

Sourced from svelte's releases.

[email protected]

Patch Changes

  • chore: remove some todos (#16515)

  • fix: allow await expressions inside {#await ...} argument (#16514)

  • fix: append_styles in an effect to make them available on mount (#16509)

  • chore: remove parser.template_untrimmed (#16511)

  • fix: always inject styles when compiling as a custom element (#16509)

[email protected]

Minor Changes

  • feat: ignore component options in compileModule (#16362)

Patch Changes

  • fix: always mark props as stateful (#16504)

[email protected]

Patch Changes

  • fix: throw on duplicate class field declarations (#16502)

  • fix: add types for part attribute to svg attributes (#16499)

[email protected]

Patch Changes

  • fix: don't update a focused input with values from its own past (#16491)

  • fix: don't destroy effect roots created inside of deriveds (#16492)

[email protected]

Patch Changes

  • fix: preserve dirty status of deferred effects (#16487)

[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)

... (truncated)

Changelog

Sourced from svelte's changelog.

5.37.1

Patch Changes

  • chore: remove some todos (#16515)

  • fix: allow await expressions inside {#await ...} argument (#16514)

  • fix: append_styles in an effect to make them available on mount (#16509)

  • chore: remove parser.template_untrimmed (#16511)

  • fix: always inject styles when compiling as a custom element (#16509)

5.37.0

Minor Changes

  • feat: ignore component options in compileModule (#16362)

Patch Changes

  • fix: always mark props as stateful (#16504)

5.36.17

Patch Changes

  • fix: throw on duplicate class field declarations (#16502)

  • fix: add types for part attribute to svg attributes (#16499)

5.36.16

Patch Changes

  • fix: don't update a focused input with values from its own past (#16491)

  • fix: don't destroy effect roots created inside of deriveds (#16492)

5.36.15

Patch Changes

  • fix: preserve dirty status of deferred effects (#16487)

5.36.14

Patch Changes

... (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

…ith 6 updates

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

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.1.2` | `2.1.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.0.15` | `24.1.0` |
| [@types/three](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/three) | `0.171.0` | `0.178.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.0.5` | `7.0.6` |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.25.1` | `2.26.1` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.36.12` | `5.37.1` |



Updates `@biomejs/biome` from 2.1.2 to 2.1.3
- [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)

Updates `@types/node` from 24.0.15 to 24.1.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/three` from 0.171.0 to 0.178.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/three)

Updates `vite` from 7.0.5 to 7.0.6
- [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/v7.0.6/packages/vite)

Updates `@sveltejs/kit` from 2.25.1 to 2.26.1
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/[email protected]/packages/kit)

Updates `svelte` from 5.36.12 to 5.37.1
- [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)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@types/three"
  dependency-version: 0.178.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: vite
  dependency-version: 7.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@sveltejs/kit"
  dependency-version: 2.26.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: svelte
  dependency-version: 5.37.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

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 30, 2025
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