Skip to content

Bump the development group across 1 directory with 6 updates #98

New issue

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

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

Already on GitHub? # to your account

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 7, 2025

Bumps the development group with 6 updates in the / directory:

Package From To
@lezer/generator 1.7.2 1.7.3
minizinc 4.4.0 4.4.2
prettier 3.5.1 3.5.3
sass 1.85.0 1.86.3
svelte 5.20.2 5.25.7
vite 6.1.0 6.2.5

Updates @lezer/generator from 1.7.2 to 1.7.3

Changelog

Sourced from @​lezer/generator's changelog.

1.7.3 (2025-03-31)

Bug fixes

Fix an issue where specializations of local tokens were sometimes not assigned to the proper group, breaking parsing of such tokens.

Commits
  • dbf0e3d Mark version 1.7.3
  • 70b9361 Assign specializations of local tokens to the appropriate group
  • See full diff in compare view

Updates minizinc from 4.4.0 to 4.4.2

Commits

Updates prettier from 3.5.1 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

3.5.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

3.5.2

diff

Remove module-sync condition (#17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

Commits

Updates sass from 1.85.0 to 1.86.3

Release notes

Sourced from sass's releases.

Dart Sass 1.86.3

To install Sass 1.86.3, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Fix a bug introduced in 1.86.1 where Sass fails to resolve paths starting with a .. segment.

See the full changelog for changes in earlier releases.

Dart Sass 1.86.2

To install Sass 1.86.2, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.86.1

To install Sass 1.86.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Improve the performance of file: URL case canonicalization on Windows and Mac OS.

See the full changelog for changes in earlier releases.

Dart Sass 1.86.0

To install Sass 1.86.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Add support for % as an expression in its own right. It will still be parsed as the modulo operator when between two other expressions, but in any other context it will be an expression whose value is the unquoted string %.

  • Consider attr() to be a special number function that can be used as a channel in color functions.

  • Deprecate user-defined functions named type() so that we can eventually support the new CSS type() function.

... (truncated)

Changelog

Sourced from sass's changelog.

1.86.3

  • Fix a bug introduced in 1.86.1 where Sass fails to resolve paths starting with a .. segment.

1.86.2

  • No user-visible changes.

1.86.1

  • Improve the performance of file: URL case canonicalization on Windows and Mac OS.

1.86.0

  • Add support for % as an expression in its own right. It will still be parsed as the modulo operator when between two other expressions, but in any other context it will be an expression whose value is the unquoted string %.

  • Consider attr() to be a special number function that can be used as a channel in color functions.

  • Deprecate user-defined functions named type() so that we can eventually support the new CSS type() function.

Dart API

  • Increase the minimum Dart SDK to 3.6.0.

1.85.1

  • Fix a bug where global Sass functions whose names overlap with CSS math functions could incorrectly be treated as CSS math functions even though they used Sass-only features, causing compilation failures. For example, round(-$var / 2) previously threw an error but now works as intended.
Commits

Updates svelte from 5.20.2 to 5.25.7

Release notes

Sourced from svelte's releases.

svelte@5.25.7

Patch Changes

  • fix: ensure clearing of old values happens independent of root flushes (#15664)

svelte@5.25.6

Patch Changes

  • fix: ignore generic type arguments while creating AST (#15659)

  • fix: better consider component and its snippets during css pruning (#15630)

svelte@5.25.5

Patch Changes

  • fix: add setters to $derived class properties (#15628)

  • fix: silence assignment warning on more function bindings (#15644)

  • fix: make sure CSS is preserved during SSR with bindings (#15645)

svelte@5.25.4

Patch Changes

  • fix: support TS type assertions (#15642)

  • fix: ensure undefined class still applies scoping class, if necessary (#15643)

svelte@5.25.3

Patch Changes

  • fix: prevent state runes from being called with spread (#15585)

svelte@5.25.2

Patch Changes

  • feat: migrate reassigned deriveds to $derived (#15581)

svelte@5.25.1

Patch Changes

  • fix: prevent dev server from throwing errors when attempting to retrieve the proxied value of an iframe's contentWindow (#15577)

svelte@5.25.0

Minor Changes

  • feat: make deriveds writable (#15570)

svelte@5.24.1

Patch Changes

... (truncated)

Changelog

Sourced from svelte's changelog.

5.25.7

Patch Changes

  • fix: ensure clearing of old values happens independent of root flushes (#15664)

5.25.6

Patch Changes

  • fix: ignore generic type arguments while creating AST (#15659)

  • fix: better consider component and its snippets during css pruning (#15630)

5.25.5

Patch Changes

  • fix: add setters to $derived class properties (#15628)

  • fix: silence assignment warning on more function bindings (#15644)

  • fix: make sure CSS is preserved during SSR with bindings (#15645)

5.25.4

Patch Changes

  • fix: support TS type assertions (#15642)

  • fix: ensure undefined class still applies scoping class, if necessary (#15643)

5.25.3

Patch Changes

  • fix: prevent state runes from being called with spread (#15585)

5.25.2

Patch Changes

  • feat: migrate reassigned deriveds to $derived (#15581)

5.25.1

Patch Changes

  • fix: prevent dev server from throwing errors when attempting to retrieve the proxied value of an iframe's contentWindow (#15577)

... (truncated)

Commits

Updates vite from 6.1.0 to 6.2.5

Release notes

Sourced from vite's releases.

v6.2.5

Please refer to CHANGELOG.md for details.

v6.2.4

Please refer to CHANGELOG.md for details.

v6.2.3

Please refer to CHANGELOG.md for details.

v6.2.2

Please refer to CHANGELOG.md for details.

create-vite@6.2.1

Please refer to CHANGELOG.md for details.

v6.2.1

Please refer to CHANGELOG.md for details.

create-vite@6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0-beta.1

Please refer to CHANGELOG.md for details.

v6.2.0-beta.0

Please refer to CHANGELOG.md for details.

v6.1.4

Please refer to CHANGELOG.md for details.

v6.1.3

Please refer to CHANGELOG.md for details.

v6.1.2

Please refer to CHANGELOG.md for details.

create-vite@6.1.1

Please refer to CHANGELOG.md for details.

v6.1.1

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

6.2.5 (2025-04-03)

6.2.4 (2025-03-31)

6.2.3 (2025-03-24)

6.2.2 (2025-03-14)

  • fix: await client buildStart on top level buildStart (#19624) (b31faab), closes #19624
  • fix(css): inline css correctly for double quote use strict (#19590) (d0aa833), closes #19590
  • fix(deps): update all non-major dependencies (#19613) (363d691), closes #19613
  • fix(indexHtml): ensure correct URL when querying module graph (#19601) (dc5395a), closes #19601
  • fix(preview): use preview https config, not server (#19633) (98b3160), closes #19633
  • fix(ssr): use optional chaining to prevent "undefined is not an object" happening in `ssrRewriteStac (4309755), closes #19612
  • feat: show friendly error for malformed base (#19616) (2476391), closes #19616
  • feat(worker): show asset filename conflict warning (#19591) (367d968), closes #19591
  • chore: extend commit hash correctly when ambigious with a non-commit object (#19600) (89a6287), closes #19600

6.2.1 (2025-03-07)

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

Bumps the development group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@lezer/generator](https://github.com/lezer-parser/generator) | `1.7.2` | `1.7.3` |
| [minizinc](https://github.com/MiniZinc/minizinc-js) | `4.4.0` | `4.4.2` |
| [prettier](https://github.com/prettier/prettier) | `3.5.1` | `3.5.3` |
| [sass](https://github.com/sass/dart-sass) | `1.85.0` | `1.86.3` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.20.2` | `5.25.7` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.1.0` | `6.2.5` |



Updates `@lezer/generator` from 1.7.2 to 1.7.3
- [Changelog](https://github.com/lezer-parser/generator/blob/main/CHANGELOG.md)
- [Commits](lezer-parser/generator@1.7.2...1.7.3)

Updates `minizinc` from 4.4.0 to 4.4.2
- [Commits](MiniZinc/minizinc-js@v4.4.0...v4.4.2)

Updates `prettier` from 3.5.1 to 3.5.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.5.1...3.5.3)

Updates `sass` from 1.85.0 to 1.86.3
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.85.0...1.86.3)

Updates `svelte` from 5.20.2 to 5.25.7
- [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.25.7/packages/svelte)

Updates `vite` from 6.1.0 to 6.2.5
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v6.2.5/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.2.5/packages/vite)

---
updated-dependencies:
- dependency-name: "@lezer/generator"
  dependency-version: 1.7.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: minizinc
  dependency-version: 4.4.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: sass
  dependency-version: 1.86.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: svelte
  dependency-version: 5.25.7
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: vite
  dependency-version: 6.2.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 7, 2025
# for free to join this conversation on GitHub. Already have an account? # 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