Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2025

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the dev-deps group with 5 updates:

Package From To
@biomejs/biome 2.2.5 2.3.2
@docusaurus/module-type-aliases 3.9.1 3.9.2
@docusaurus/tsconfig 3.9.1 3.9.2
@docusaurus/types 3.9.1 3.9.2
lefthook 1.13.6 2.0.2

Updates @biomejs/biome from 2.2.5 to 2.3.2

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.2

2.3.2

Patch Changes

  • #7859 c600618 Thanks @​Netail! - Added the nursery rule noIncrementDecrement, disallows the usage of the unary operators ++ and --.

  • #7901 0d17b05 Thanks @​ematipico! - Fixed #7837, where Biome couldn't properly parse text expressions that contained nested curly brackets. This was breaking parsing in Astro and Svelte files.

  • #7874 e617d36 Thanks @​Bertie690! - Fixed #7230: noUselessStringConcat no longer emits false positives for multi-line strings with leading + operators.

    Previously, the rule did not check for leading newlines on the + operator, emitting false positives if one occurred at the start of a line.
    Notably, formatting with operatorLinebreak="before" would move the + operators to the start of lines automatically, resulting in spurious errors whenever a multi-line string was used.

    Now, the rule correctly detects and ignores multi-line concatenations with leading operators as well, working regardless of the setting of operatorLinebreak.

    Example

    // The following code used to error if the `+` operators were at the start of lines (as opposed to the end).
    // Now, the rule correctly recognizes this as a stylistic concatenation and ignores it.
    const reallyLongStringThatShouldNotError =
      "Lorem ipsum dolor sit amet consectetur adipiscing elit." +
      "Quisque faucibus ex sapien vitae pellentesque sem placerat." +
      "In id cursus mi pretium tellus duis convallis." +
      "Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla";
  • #7786 33ffcd5 Thanks @​daivinhtran! - Fixed #7601: Properly match Grit plugin's code snippet with only one child.

  • #7901 0d17b05 Thanks @​ematipico! - Fixed #7837, where Biome Language Server panicked when opening HTML-ish files when the experimental full support is enabled.

What's Changed

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.3.2

Patch Changes

  • #7859 c600618 Thanks @​Netail! - Added the nursery rule noIncrementDecrement, disallows the usage of the unary operators ++ and --.

  • #7901 0d17b05 Thanks @​ematipico! - Fixed #7837, where Biome couldn't properly parse text expressions that contained nested curly brackets. This was breaking parsing in Astro and Svelte files.

  • #7874 e617d36 Thanks @​Bertie690! - Fixed #7230: noUselessStringConcat no longer emits false positives for multi-line strings with leading + operators.

    Previously, the rule did not check for leading newlines on the + operator, emitting false positives if one occurred at the start of a line.
    Notably, formatting with operatorLinebreak="before" would move the + operators to the start of lines automatically, resulting in spurious errors whenever a multi-line string was used.

    Now, the rule correctly detects and ignores multi-line concatenations with leading operators as well, working regardless of the setting of operatorLinebreak.

    Example

    // The following code used to error if the `+` operators were at the start of lines (as opposed to the end).
    // Now, the rule correctly recognizes this as a stylistic concatenation and ignores it.
    const reallyLongStringThatShouldNotError =
      "Lorem ipsum dolor sit amet consectetur adipiscing elit." +
      "Quisque faucibus ex sapien vitae pellentesque sem placerat." +
      "In id cursus mi pretium tellus duis convallis." +
      "Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla";
  • #7786 33ffcd5 Thanks @​daivinhtran! - Fixed #7601: Properly match Grit plugin's code snippet with only one child.

  • #7901 0d17b05 Thanks @​ematipico! - Fixed #7837, where Biome Language Server panicked when opening HTML-ish files when the experimental full support is enabled.

2.3.1

Patch Changes

  • #7840 72afdfa Thanks @​ematipico! - Fixed #7838, which caused the new --css-parse-* arguments not being recognised by the ci command.

  • #7789 d5b416e Thanks @​fronterior! - Fixed the LSP method workspace/didChangeWorkspaceFolders to perform incremental updates instead of replacing the entire folder list.

  • #7852 bd254c7 Thanks @​dyc3! - Fixed #7843: The CSS parser, when tailwindDirectives is enabled, correctly parses --*: initial;.

  • #7872 0fe13fe Thanks @​dyc3! - Fixed #7861: The HTML parser will now accept Svelte attribute shorthand syntax in .svelte files.

  • #7866 7b2600b Thanks @​dyc3! - Fixed #7860: The css parser, with tailwindDirectives enabled, will now accept @plugin options.

  • #7853 fe90c78 Thanks @​dyc3! - Fixed #7848: The css parser with tailwindDirectives enabled will now correctly parse tailwind's source exclude syntax: @source not "foo.css";

  • #7878 c9f7fe5 Thanks @​ematipico! - Fixed #7857: Biome now parses <script> tags as TypeScript when analysing .astro files.

  • #7867 b42b718 Thanks @​smorimoto! - Fixed incorrect option name in HTML parser error message.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by ematipico, a new releaser for @​biomejs/biome since your current version.


Updates @docusaurus/module-type-aliases from 3.9.1 to 3.9.2

Release notes

Sourced from @​docusaurus/module-type-aliases's releases.

3.9.2 (2025-10-17)

🐛 Bug Fix

  • docusaurus-plugin-content-docs
    • #11490 fix(docs): add support for missing sidebar_key front matter attribute (@​slorber)
  • docusaurus-cssnano-preset
    • #11487 fix(cssnano-preset): disable CSS counter minification (@​YDKK)
  • docusaurus-theme-search-algolia
  • docusaurus-theme-translations
  • docusaurus-theme-classic, docusaurus-theme-common
    • #11466 fix(theme): Fix CSS scroll-margin-top when clicking footnote items, factorize code (@​slorber)
  • docusaurus
  • docusaurus-theme-mermaid
    • #11437 fix(theme-mermaid): Fix Mermaid ELK layout dependency required bug on v3.9 (@​slorber)

🏃‍♀️ Performance

  • docusaurus-theme-mermaid

💅 Polish

  • docusaurus-theme-classic

🤖 Dependencies

🌐 Translations

Committers: 9

... (truncated)

Changelog

Sourced from @​docusaurus/module-type-aliases's changelog.

3.9.2 (2025-10-17)

🐛 Bug Fix

  • docusaurus-plugin-content-docs
    • #11490 fix(docs): add support for missing sidebar_key front matter attribute (@​slorber)
  • docusaurus-cssnano-preset
    • #11487 fix(cssnano-preset): disable CSS counter minification (@​YDKK)
  • docusaurus-theme-search-algolia
  • docusaurus-theme-translations
  • docusaurus-theme-classic, docusaurus-theme-common
    • #11466 fix(theme): Fix CSS scroll-margin-top when clicking footnote items, factorize code (@​slorber)
  • docusaurus
  • docusaurus-theme-mermaid
    • #11437 fix(theme-mermaid): Fix Mermaid ELK layout dependency required bug on v3.9 (@​slorber)

🏃‍♀️ Performance

  • docusaurus-theme-mermaid

💅 Polish

  • docusaurus-theme-classic

🤖 Dependencies

🌐 Translations

Committers: 9

... (truncated)

Commits

Updates @docusaurus/tsconfig from 3.9.1 to 3.9.2

Release notes

Sourced from @​docusaurus/tsconfig's releases.

3.9.2 (2025-10-17)

🐛 Bug Fix

  • docusaurus-plugin-content-docs
    • #11490 fix(docs): add support for missing sidebar_key front matter attribute (@​slorber)
  • docusaurus-cssnano-preset
    • #11487 fix(cssnano-preset): disable CSS counter minification (@​YDKK)
  • docusaurus-theme-search-algolia
  • docusaurus-theme-translations
  • docusaurus-theme-classic, docusaurus-theme-common
    • #11466 fix(theme): Fix CSS scroll-margin-top when clicking footnote items, factorize code (@​slorber)
  • docusaurus
  • docusaurus-theme-mermaid
    • #11437 fix(theme-mermaid): Fix Mermaid ELK layout dependency required bug on v3.9 (@​slorber)

🏃‍♀️ Performance

  • docusaurus-theme-mermaid

💅 Polish

  • docusaurus-theme-classic

🤖 Dependencies

🌐 Translations

Committers: 9

... (truncated)

Changelog

Sourced from @​docusaurus/tsconfig's changelog.

3.9.2 (2025-10-17)

🐛 Bug Fix

  • docusaurus-plugin-content-docs
    • #11490 fix(docs): add support for missing sidebar_key front matter attribute (@​slorber)
  • docusaurus-cssnano-preset
    • #11487 fix(cssnano-preset): disable CSS counter minification (@​YDKK)
  • docusaurus-theme-search-algolia
  • docusaurus-theme-translations
  • docusaurus-theme-classic, docusaurus-theme-common
    • #11466 fix(theme): Fix CSS scroll-margin-top when clicking footnote items, factorize code (@​slorber)
  • docusaurus
  • docusaurus-theme-mermaid
    • #11437 fix(theme-mermaid): Fix Mermaid ELK layout dependency required bug on v3.9 (@​slorber)

🏃‍♀️ Performance

  • docusaurus-theme-mermaid

💅 Polish

  • docusaurus-theme-classic

🤖 Dependencies

🌐 Translations

Committers: 9

... (truncated)

Commits

Updates @docusaurus/types from 3.9.1 to 3.9.2

Release notes

Sourced from @​docusaurus/types's releases.

3.9.2 (2025-10-17)

🐛 Bug Fix

  • docusaurus-plugin-content-docs
    • #11490 fix(docs): add support for missing sidebar_key front matter attribute (@​slorber)
  • docusaurus-cssnano-preset
    • #11487 fix(cssnano-preset): disable CSS counter minification (@​YDKK)
  • docusaurus-theme-search-algolia
  • docusaurus-theme-translations
  • docusaurus-theme-classic, docusaurus-theme-common
    • #11466 fix(theme): Fix CSS scroll-margin-top when clicking footnote items, factorize code (@​slorber)
  • docusaurus
  • docusaurus-theme-mermaid
    • #11437 fix(theme-mermaid): Fix Mermaid ELK layout dependency required bug on v3.9 (@​slorber)

🏃‍♀️ Performance

  • docusaurus-theme-mermaid

💅 Polish

  • docusaurus-theme-classic

🤖 Dependencies

🌐 Translations

Committers: 9

... (truncated)

Changelog

Sourced from @​docusaurus/types's changelog.

3.9.2 (2025-10-17)

🐛 Bug Fix

  • docusaurus-plugin-content-docs
    • #11490 fix(docs): add support for missing sidebar_key front matter attribute (@​slorber)
  • docusaurus-cssnano-preset
    • #11487 fix(cssnano-preset): disable CSS counter minification (@​YDKK)
  • docusaurus-theme-search-algolia
  • docusaurus-theme-translations
  • docusaurus-theme-classic, docusaurus-theme-common
    • #11466 fix(theme): Fix CSS scroll-margin-top when clicking footnote items, factorize code (@​slorber)
  • docusaurus
  • docusaurus-theme-mermaid
    • #11437 fix(theme-mermaid): Fix Mermaid ELK layout dependency required bug on v3.9 (@​slorber)

🏃‍♀️ Performance

  • docusaurus-theme-mermaid

💅 Polish

  • docusaurus-theme-classic

🤖 Dependencies

🌐 Translations

Committers: 9

... (truncated)

Commits

Updates lefthook from 1.13.6 to 2.0.2

Release notes

Sourced from lefthook's releases.

v2.0.2

Changelog

  • 5cffa313d2f58f6bd380c3ee0c2f5316f8c54000 fix: add mutex lock before all git commands (#1178)

v2.0.1

Changelog

  • 1a06f26a4d009d3df120df6b89c2944b7d4c5f84 fix: update v2 references (#1175)

v2.0.0

Changelog

  • c7ae2cf638cbf1e6f72454b80c633be84af63a83 feat: use sh as command executor on Windows (#1166)
  • 25948ab1ae9b6cb5e16cff65fbb025071c577097 fix: accept --fail-on-changes=false as override value (#1168)
  • 21d607caebaff8b136f43810e4832d214df3e16a refactor!: drop deprecated skip_output option (#1159)
  • 56264b2026033d70ec96903c5ce2dbdccaebce9d refactor!: drop support for exclude regexp (#1162)
  • 32a6a397682d0177c048c47488fa95ea725326da refactor!: use another cli framework (#1155)
Changelog

Sourced from lefthook's changelog.

2.0.2 (2025-10-29)

2.0.0 (2025-10-20)

Breaking changes

  • exclude option no longer accepts regexp, only globs.
  • skip_output option is dropped, use output instead.
  • Some CLI arguments have changed their names to make it more consistent. See lefthook run -h for details.
  • for only and skip options with - run: '...' values the command executer was changed to Bourne Shell.

Commits

  • fix: accept --fail-on-changes=false as override value (#1168) by @​mrexox
  • feat: [breaking] use sh as command executor on Windows (#1166) by @​mrexox
  • refactor: [breaking] drop support for exclude regexp (#1162) by @​mrexox
  • refactor: [breaking] drop deprecated skip_output option (#1159) by @​mrexox
  • refactor: [breaking] use another cli framework (#1155) by @​mrexox
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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 1, 2025
@dependabot dependabot bot requested a review from No767 as a code owner November 1, 2025 17:19
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 1, 2025
github-actions[bot]
github-actions bot previously approved these changes Nov 1, 2025
@No767
Copy link
Member

No767 commented Nov 3, 2025

@dependabot rebase

Bumps the dev-deps group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.2.5` | `2.3.2` |
| [@docusaurus/module-type-aliases](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-module-type-aliases) | `3.9.1` | `3.9.2` |
| [@docusaurus/tsconfig](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-tsconfig) | `3.9.1` | `3.9.2` |
| [@docusaurus/types](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus-types) | `3.9.1` | `3.9.2` |
| [lefthook](https://github.com/evilmartians/lefthook) | `1.13.6` | `2.0.2` |


Updates `@biomejs/biome` from 2.2.5 to 2.3.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)

Updates `@docusaurus/module-type-aliases` from 3.9.1 to 3.9.2
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v3.9.2/packages/docusaurus-module-type-aliases)

Updates `@docusaurus/tsconfig` from 3.9.1 to 3.9.2
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v3.9.2/packages/docusaurus-tsconfig)

Updates `@docusaurus/types` from 3.9.1 to 3.9.2
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v3.9.2/packages/docusaurus-types)

Updates `lefthook` from 1.13.6 to 2.0.2
- [Release notes](https://github.com/evilmartians/lefthook/releases)
- [Changelog](https://github.com/evilmartians/lefthook/blob/master/CHANGELOG.md)
- [Commits](evilmartians/lefthook@v1.13.6...v2.0.2)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@docusaurus/module-type-aliases"
  dependency-version: 3.9.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@docusaurus/tsconfig"
  dependency-version: 3.9.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@docusaurus/types"
  dependency-version: 3.9.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: lefthook
  dependency-version: 2.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/bun/main/dev-deps-4e597ca2e6 branch from 1f50d49 to dfd9d01 Compare November 3, 2025 11:09
@No767 No767 merged commit 28a2bcd into main Nov 3, 2025
2 checks passed
@No767 No767 deleted the dependabot/bun/main/dev-deps-4e597ca2e6 branch November 3, 2025 11:09
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.

2 participants