Skip to content

build(deps): bump the web-dependencies group across 1 directory with 31 updates - #95

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/web-dependencies-8ccdf11d1a
Open

build(deps): bump the web-dependencies group across 1 directory with 31 updates#95
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/web-dependencies-8ccdf11d1a

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the web-dependencies group with 28 updates in the / directory:

Package From To
lint-staged 17.0.8 17.4.1
prettier 3.8.4 3.9.6
turbo 2.10.0 2.10.12
@blocknote/core 0.51.4 0.54.0
@blocknote/react 0.51.4 0.54.0
@blocknote/shadcn 0.51.4 0.54.0
monaco-editor 0.55.1 0.56.0
next 16.2.9 16.3.3
react 19.2.7 19.2.8
@types/react 19.2.17 19.2.18
react-dom 19.2.7 19.2.8
@types/react-dom 19.2.3 19.2.5
y-websocket 3.0.0 3.1.0
yjs 13.6.31 13.6.32
@tailwindcss/postcss 4.3.1 4.3.3
@testing-library/react 16.3.2 16.3.3
@testing-library/user-event 14.6.1 14.6.6
@types/node 26.0.1 26.4.0
eslint 10.5.0 10.9.1
eslint-config-next 16.2.9 16.3.3
jest 30.4.2 30.5.0
jest-environment-jsdom 30.4.1 30.5.0
ws 8.21.0 8.21.3
@types/supertest 7.2.0 7.2.1
@typescript-eslint/eslint-plugin 8.62.0 8.68.0
ts-jest 29.4.11 29.4.12
tsx 4.22.4 4.23.12
typescript-eslint 8.62.0 8.68.0

Updates lint-staged from 17.0.8 to 17.4.1

Release notes

Sourced from lint-staged's releases.

v17.4.1

17.4.1

Patch Changes

  • #1840 efe5b63 - This is a version-bump-only release because the previous version 17.4.0 was not published to npmjs.com due to problems with GitHub Actions and Changesets.

17.4.0

Minor Changes

  • #1836 90ec282 - Added a new defineConfig helper for type-checking the lint-staged configuration:

    // lint-staged.config.ts
    import { defineConfig } from 'lint-staged/config'
    export default defineConfig({
    '*.js': ['prettier --check', 'eslint'],
    })

  • #1832 510a27c - Added a new flag --all to make lint-staged include all files tracked by Git, instead of only staged.

    By default lint-staged only runs tasks on files that include staged changes (hence the name). Use this flag to include all files tracked in Git version control (standard exclusions apply). Using this flag implies the --no-stash flag, disabling the automatic backup, and the --allow-empty flag so that lint-staged doesn't fail when there are no changes after running. This makes it easier to run npx lint-staged --all on a clean state, for example in CI.

Patch Changes

  • #1838 69bec99 - The behavior of the automatic backup stash has been improved when running lint-staged in multiple worktrees in parallel. You should still avoid running multiple instances of lint-staged in parallel in the same tree, because some of the Git operations are locking and might lead to data loss.

  • #1839 5e5bdd2 - Parsing of lint-staged CLI flags and Node.js API options has been rewritten to avoid inconsistent behavior between the two.

v17.3.0

Minor Changes

  • #1825 16b3f74 - It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:

    {
      "*.ts": ["first", "second", ["third", "third"], "fourth"]
    }

    As a concrete example, lint-staged's own configuration is:

    /** @type {import('./lib/index.js').Configuration} */
    export default {
      "*": [

... (truncated)

Changelog

Sourced from lint-staged's changelog.

17.4.1

Patch Changes

  • #1840 efe5b63 - This is a version-bump-only release because the previous version 17.4.0 was not published to npmjs.com due to problems with GitHub Actions and Changesets.

17.4.0

Minor Changes

  • #1836 90ec282 - Added a new defineConfig helper for type-checking the lint-staged configuration:

    // lint-staged.config.ts
    import { defineConfig } from 'lint-staged/config'
    export default defineConfig({
    '*.js': ['prettier --check', 'eslint'],
    })

  • #1832 510a27c - Added a new flag --all to make lint-staged include all files tracked by Git, instead of only staged.

    By default lint-staged only runs tasks on files that include staged changes (hence the name). Use this flag to include all files tracked in Git version control (standard exclusions apply). Using this flag implies the --no-stash flag, disabling the automatic backup, and the --allow-empty flag so that lint-staged doesn't fail when there are no changes after running. This makes it easier to run npx lint-staged --all on a clean state, for example in CI.

Patch Changes

  • #1838 69bec99 - The behavior of the automatic backup stash has been improved when running lint-staged in multiple worktrees in parallel. You should still avoid running multiple instances of lint-staged in parallel in the same tree, because some of the Git operations are locking and might lead to data loss.

  • #1839 5e5bdd2 - Parsing of lint-staged CLI flags and Node.js API options has been rewritten to avoid inconsistent behavior between the two.

17.3.0

Minor Changes

  • #1825 16b3f74 - It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:

    {
      "*.ts": ["first", "second", ["third", "third"], "fourth"]
    }

    As a concrete example, lint-staged's own configuration is:

    /** @type {import('./lib/index.js').Configuration} */
    export default {
      '*': [

... (truncated)

Commits
  • d0c1517 Merge pull request #1841 from lint-staged/changeset-release/main
  • f061335 chore(changeset): release
  • d2721af Merge pull request #1840 from lint-staged/updates
  • efe5b63 ci: update Changesets action because it failed to publish
  • cd76ce3 build: update dependencies
  • ea195e1 Merge pull request #1837 from lint-staged/changeset-release/main
  • a6a0d61 chore(changeset): release
  • 0a09098 Merge pull request #1832 from lint-staged/add-all-flag
  • 7fd685b fix: further fix parsing options logic
  • 510a27c feat: add --all flag for including all files tracked by Git instead of just...
  • Additional commits viewable in compare view

Updates prettier from 3.8.4 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

3.9.5

🔗 Changelog

3.9.4

  • Angular: Format @content(name) -> @content (name) to align with other block syntax (#19499 by @​fisker)

🔗 Changelog

3.9.3

🔗 Changelog

3.9.1

🔗 Changelog

3.9.0

diff

🔗 Prettier 3.9: Major parser upgrades and Formatting improvements

3.8.5

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.6

diff

TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

// Input
interface Container {
  "new"(id: string): number;
}
// Prettier 3.9.5
interface Container {
new(id: string): number;
}
// Prettier 3.9.6
interface Container {
"new"(id: string): number;
}

TypeScript: Support import defer (#19624, #19675 by @​fisker)

// Input
import defer * as foo from "foo";
// Prettier 3.9.5
import * as foo from "foo";
// Prettier 3.9.6
import defer * as foo from "foo";

JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @prettier/plugin-yuku

... (truncated)

Commits

Updates turbo from 2.10.0 to 2.10.12

Release notes

Sourced from turbo's releases.

Turborepo v2.10.12

What's Changed

Changelog

... (truncated)

Commits

Updates @blocknote/core from 0.51.4 to 0.54.0

Release notes

Sourced from @​blocknote/core's releases.

v0.54.0

0.54.0 (2026-08-13)

💖 The math block and diagram block has been sponsored by DINUM 🇫🇷

Math Block

A long requested feature, you can now add block & inline math to a BlockNote editor. They are driven by Katex & support much of Latex for all your notation needs.

math-block.mp4

Link to demo

Diagram Block

We've also added support for a diagram block driven by Mermaid.js, allowing you to add diagramming to the editor.

diagram-block.mp4

Link to demo

Source Block with Preview

Both the Math block & Diagram block are built on a primitive that you can build your own custom blocks from. The Source Block with Preview primitive allows you to build a pair of a block which renders content with an inline editor for the content being rendered. This can enable other sorts of preview-like features in the future, exposed as an API for you to build your own custom blocks with.

Link to demo

🚀 Features

  • Adds a Math block (2a34f7d70)
  • Adds a Diagram block (0fca0ee7a)
  • core: Source-with-preview, syntax highlighting & exporter images (503c796d3)

🩹 Fixes

  • ai: Operations on collaborative documents (#2952)
  • ai: Operations on blocks containing comments (#2953)
  • pdf: Add custom font and fontFamily options for CJK (#2945)
  • Expose first suggestion as active descendant (#2965)
  • xl-docx-exporter: Clamp list nesting to the levels DOCX defines (#2969)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​blocknote/core's changelog.

0.54.0 (2026-08-13)

🚀 Features

  • Adds a Math block (2a34f7d70)
  • Adds a Diagram block (0fca0ee7a)
  • core: Source-with-preview, syntax highlighting & exporter images (503c796d3)

🩹 Fixes

  • ai: Operations on collaborative documents (#2952)
  • ai: Operations on blocks containing comments (#2953)
  • pdf: Add custom font and fontFamily options for CJK (#2945)
  • Expose first suggestion as active descendant (#2965)
  • xl-docx-exporter: Clamp list nesting to the levels DOCX defines (#2969)

❤️ Thank You

0.53.0 (2026-08-06)

🚀 Features

  • shadcn: ⚠️ Use base-ui instead of radix (BLO-1279) (#2913)

🩹 Fixes

  • getCellSelection throwing error in positions (BLO-1193) (#2911)
  • Multi-column slash menu items within a column (BLO-905) (#2914)
  • Suggestion menu behaviour (BLO-1283, BLO-955) (#2930)
  • Ignore useless block/inline content mutations (BLO-1224) (#2912)
  • slash-menu: Better overflow behavior (BLO-1192) (#2909)
  • Slash menu item selection behaviour (BLO-1222) (#2838)
  • HTML export/parse round trip ignoring empty blocks (BLO-873) (#2931)
  • core: Guard getBlock() calls to prevent TypeError on stale blocks (#2941)
  • Stop stale node view positions crashing the editor (#2938)
  • Multi-column trailing blocks, column hover borders & drop cursor left edge BLO-1226 (#2885)

⚠️ Breaking Changes

  • shadcn: ⚠️ Use base-ui instead of radix (BLO-1279) (#2913)

❤️ Thank You

... (truncated)

Commits
  • ea5d803 chore(release): v0.54.0
  • 503c796 feat(core): source-with-preview, syntax highlighting & exporter images
  • 99253c3 chore: migrate to TypeScript 7 and consolidate the @​shared alias
  • bea469e refactor: vendor @​tanstack/store as a first-party Store (#2956)
  • dee3401 chore: bump prosemirror-view to ^1.42.2 (#2954)
  • decb3d2 fix(ai): operations on blocks containing comments (#2953)
  • 824abce fix(ai): operations on collaborative documents (#2952)
  • 529c3b0 chore(release): v0.53.0
  • d998f01 fix: multi-column trailing blocks, column hover borders & drop cursor left ed...
  • 58d43ff fix: stop stale node view positions crashing the editor (#2938)
  • Additional commits viewable in compare view

Updates @blocknote/react from 0.51.4 to 0.54.0

Release notes

Sourced from @​blocknote/react's releases.

v0.54.0

0.54.0 (2026-08-13)

💖 The math block and diagram block has been sponsored by DINUM 🇫🇷

Math Block

A long requested feature, you can now add block & inline math to a BlockNote editor. They are driven by Katex & support much of Latex for all your notation needs.

math-block.mp4

Link to demo

Diagram Block

We've also added support for a diagram block driven by Mermaid.js, allowing you to add diagramming to the editor.

diagram-block.mp4

Link to demo

Source Block with Preview

Both the Math block & Diagram block are built on a primitive that you can build your own custom blocks from. The Source Block with Preview primitive allows you to build a pair of a block which renders content with an inline editor for the content being rendered. This can enable other sorts of preview-like features in the future, exposed as an API for you to build your own custom blocks with.

Link to demo

🚀 Features

  • Adds a Math block (2a34f7d70)
  • Adds a Diagram block (0fca0ee7a)
  • core: Source-with-preview, syntax highlighting & exporter images (503c796d3)

🩹 Fixes

  • ai: Operations on collaborative documents (#2952)
  • ai: Operations on blocks containing comments (#2953)
  • pdf: Add custom font and fontFamily options for CJK (#2945)
  • Expose first suggestion as active descendant (#2965)
  • xl-docx-exporter: Clamp list nesting to the levels DOCX defines (#2969)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​blocknote/react's changelog.

0.54.0 (2026-08-13)

🚀 Features

  • Adds a Math block (2a34f7d70)
  • Adds a Diagram block (0fca0ee7a)
  • core: Source-with-preview, syntax highlighting & exporter images (503c796d3)

🩹 Fixes

  • ai: Operations on collaborative documents (#2952)
  • ai: Operations on blocks containing comments (#2953)
  • pdf: Add custom font and fontFamily options for CJK (#2945)
  • Expose first suggestion as active descendant (#2965)
  • xl-docx-exporter: Clamp list nesting to the levels DOCX defines (#2969)

❤️ Thank You

0.53.0 (2026-08-06)

🚀 Features

  • shadcn: ⚠️ Use base-ui instead of radix (BLO-1279) (#2913)

🩹 Fixes

  • getCellSelection throwing error in positions (BLO-1193) (#2911)
  • Multi-column slash menu items within a column (BLO-905) (#2914)
  • Suggestion menu behaviour (BLO-1283, BLO-955) (#2930)
  • Ignore useless block/inline content mutations (BLO-1224) (#2912)
  • slash-menu: Better overflow behavior (BLO-1192) (#2909)
  • Slash menu item selection behaviour (BLO-1222) (#2838)
  • HTML export/parse round trip ignoring empty blocks (BLO-873) (#2931)
  • core: Guard getBlock() calls to prevent TypeError on stale blocks (#2941)
  • Stop stale node view positions crashing the editor (#2938)
  • Multi-column trailing blocks, column hover borders & drop cursor left edge BLO-1226 (#2885)

⚠️ Breaking Changes

  • shadcn: ⚠️ Use base-ui instead of radix (BLO-1279) (#2913)

❤️ Thank You

... (truncated)

Commits
  • ea5d803 chore(release): v0.54.0
  • 503c796 feat(core): source-with-preview, syntax highlighting & exporter images
  • 99253c3 chore: migrate to TypeScript 7 and consolidate the @​shared alias
  • 115d433 fix: expose first suggestion as active descendant (#2965)
  • bea469e refactor: vendor @​tanstack/store as a first-party Store (#2956)
  • 529c3b0 chore(release): v0.53.0
  • d998f01 fix: multi-column trailing blocks, column hover borders & drop cursor left ed...
  • 58d43ff fix: stop stale node view positions crashing the editor (#2938)
  • c32f968 fix(core): guard getBlock() calls to prevent TypeError on stale blocks (#2941)
  • dee7880 chore(release): v0.52.1
  • Additional commits viewable in compare view

Updates @blocknote/shadcn from 0.51.4 to 0.54.0

Release notes

Sourced from @​blocknote/shadcn's releases.

v0.54.0

0.54.0 (2026-08-13)

💖 The math block and diagram block has been sponsored by DINUM 🇫🇷

Math Block

A long requested feature, you can now add block & inline math to a BlockNote editor. They are driven by Katex & support much of Latex for all your notation needs.

math-block.mp4

Link to demo

Diagram Block

We've also added support for a diagram block driven by Mermaid.js, allowing you to add diagramming to the editor.

diagram-block.mp4

Link to demo

Source Block with Preview

Both the Math block & Diagram block are built on a primitive that you can build your own custom blocks from. The Source Block with Preview primitive allows you to build a pair of a block which renders content with an inline editor for the content being rendered. This can enable other sorts of preview-like features in the future, exposed as an API for you to build your own custom blocks with.

Link to demo

🚀 Features

  • Adds a Math block (2a34f7d70)
  • Adds a Diagram block (0fca0ee7a)
  • core: Source-with-preview, syntax highlighting & exporter images (503c796d3)

🩹 Fixes

  • ai: Operations on collaborative documents (#2952)
  • ai: Operations on blocks containing comments (#2953)
  • pdf: Add custom font and fontFamily options for CJK (#2945)
  • Expose first suggestion as active descendant (#2965)
  • xl-docx-exporter: Clamp list nesting to the levels DOCX defines (#2969)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​blocknote/shadcn's changelog.

0.54.0 (2026-08-13)

🚀 Features

  • Adds a Math block (2a34f7d70)
  • Adds a Diagram block (0fca0ee7a)
  • core: Source-with-preview, syntax highlighting & exporter images (503c796d3)

🩹 Fixes

  • ai: Operations on collaborative documents (#2952)
  • ai: Operations on blocks containing comments (#2953)
  • pdf: Add custom font and fontFamily options for CJK (#2945)
  • Expose first suggestion as active descendant (#2965)
  • xl-docx-exporter: Clamp list nesting to the levels DOCX defines (#2969)

❤️ Thank You

0.53.0 (2026-08-06)

🚀 Features

  • shadcn: ⚠️ Use base-ui instead of radix (BLO-1279) (#2913)

🩹 Fixes

  • getCellSelection throwing error in positions (BLO-1193) (#2911)
  • Multi-column slash menu items within a column (BLO-905) (#2914)
  • Suggestion menu behaviour (BLO-1283, BLO-955) (#2930)
  • Ignore useless block/inline content mutations (BLO-1224) (#2912)
  • slash-menu: Better overflow behavior (BLO-1192) (#2909)
  • Slash menu item selection behaviour (BLO-1222) (#2838)
  • HTML export/parse round trip ignoring empty blocks (BLO-873) (#2931)
  • core: Guard getBlock() calls to prevent TypeError on stale blocks (#2941)
  • Stop stale node view positions crashing the editor (#2938)
  • Multi-column trailing blocks, column hover borders & drop cursor left edge BLO-1226 (#2885)

⚠️ Breaking Changes

  • shadcn: ⚠️ Use base-ui instead of radix (BLO-1279) (#2913)

❤️ Thank You

... (truncated)

Commits
  • ea5d803 chore(release): v0.54.0
  • 99253c3 chore: migrate to TypeScript 7 and consolidate the @​shared alias
  • 529c3b0 chore(release): v0.53.0
  • 3d08064 feat(shadcn): use base-ui instead of radix (BLO-1279) (#2913)
  • 8288b92 style: grid suggestion menu item padding (BLO-1225) (#2910)
  • dee7880 chore(release): v0.52.1
  • a99aab4 chore(release): v0.52.0
  • 030dcf0 refactor(versioning): consolidate sidebar CSS into the shared stylesheet
  • ef34ecc refactor(ui): forward refs in AttributionTooltip implementations
  • 161a614 fix(versioning): make yhub history snapshot ids unique and fix grouping
  • Additional commits viewable in compare view

Updates monaco-editor from 0.55.1 to 0.56.0

Release notes

Sourced from monaco-editor's releases.

v0.56.0

Changes:

  • #5392: Bump websocket-driver from 0.7.4 to 0.7.5 in /website
  • #5396: Release Monaco Editor 0.56.0
  • #5385: Bump websocket-driver from 0.7.4 to 0.7.5 in /samples
  • #5379: Removes leftover debugger statements.
  • #5376: fixes pipeline
  • #5374: Bump webpack-dev-server from 5.2.4 to 5.2.5 in /samples
  • #5373: Bump webpack-dev-server from 5.2.4 to 5.2.5 in /website
  • #5371: Bump undici from 7.24.7 to 7.28.0
  • #5372: Fixes CIDescription has been truncated

…31 updates

Bumps the web-dependencies group with 28 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.0.8` | `17.4.1` |
| [prettier](https://github.com/prettier/prettier) | `3.8.4` | `3.9.6` |
| [turbo](https://github.com/vercel/turborepo) | `2.10.0` | `2.10.12` |
| [@blocknote/core](https://github.com/TypeCellOS/BlockNote/tree/HEAD/packages/core) | `0.51.4` | `0.54.0` |
| [@blocknote/react](https://github.com/TypeCellOS/BlockNote/tree/HEAD/packages/react) | `0.51.4` | `0.54.0` |
| [@blocknote/shadcn](https://github.com/TypeCellOS/BlockNote/tree/HEAD/packages/shadcn) | `0.51.4` | `0.54.0` |
| [monaco-editor](https://github.com/microsoft/monaco-editor) | `0.55.1` | `0.56.0` |
| [next](https://github.com/vercel/next.js) | `16.2.9` | `16.3.3` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.7` | `19.2.8` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.17` | `19.2.18` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.7` | `19.2.8` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.2.3` | `19.2.5` |
| [y-websocket](https://github.com/yjs/y-websocket) | `3.0.0` | `3.1.0` |
| [yjs](https://github.com/yjs/yjs) | `13.6.31` | `13.6.32` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.3.1` | `4.3.3` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.3.2` | `16.3.3` |
| [@testing-library/user-event](https://github.com/testing-library/user-event) | `14.6.1` | `14.6.6` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.0.1` | `26.4.0` |
| [eslint](https://github.com/eslint/eslint) | `10.5.0` | `10.9.1` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.2.9` | `16.3.3` |
| [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `30.4.2` | `30.5.0` |
| [jest-environment-jsdom](https://github.com/jestjs/jest/tree/HEAD/packages/jest-environment-jsdom) | `30.4.1` | `30.5.0` |
| [ws](https://github.com/websockets/ws) | `8.21.0` | `8.21.3` |
| [@types/supertest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/supertest) | `7.2.0` | `7.2.1` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.62.0` | `8.68.0` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.11` | `29.4.12` |
| [tsx](https://github.com/privatenumber/tsx) | `4.22.4` | `4.23.12` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.62.0` | `8.68.0` |



Updates `lint-staged` from 17.0.8 to 17.4.1
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v17.0.8...v17.4.1)

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

Updates `turbo` from 2.10.0 to 2.10.12
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.10.0...v2.10.12)

Updates `@blocknote/core` from 0.51.4 to 0.54.0
- [Release notes](https://github.com/TypeCellOS/BlockNote/releases)
- [Changelog](https://github.com/TypeCellOS/BlockNote/blob/main/CHANGELOG.md)
- [Commits](https://github.com/TypeCellOS/BlockNote/commits/v0.54.0/packages/core)

Updates `@blocknote/react` from 0.51.4 to 0.54.0
- [Release notes](https://github.com/TypeCellOS/BlockNote/releases)
- [Changelog](https://github.com/TypeCellOS/BlockNote/blob/main/CHANGELOG.md)
- [Commits](https://github.com/TypeCellOS/BlockNote/commits/v0.54.0/packages/react)

Updates `@blocknote/shadcn` from 0.51.4 to 0.54.0
- [Release notes](https://github.com/TypeCellOS/BlockNote/releases)
- [Changelog](https://github.com/TypeCellOS/BlockNote/blob/main/CHANGELOG.md)
- [Commits](https://github.com/TypeCellOS/BlockNote/commits/v0.54.0/packages/shadcn)

Updates `monaco-editor` from 0.55.1 to 0.56.0
- [Release notes](https://github.com/microsoft/monaco-editor/releases)
- [Changelog](https://github.com/microsoft/monaco-editor/blob/main/CHANGELOG.md)
- [Commits](microsoft/monaco-editor@v0.55.1...v0.56.0)

Updates `next` from 16.2.9 to 16.3.3
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](vercel/next.js@v16.2.9...v16.3.3)

Updates `react` from 19.2.7 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)

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

Updates `react-dom` from 19.2.7 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-dom)

Updates `@types/react-dom` from 19.2.3 to 19.2.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `y-websocket` from 3.0.0 to 3.1.0
- [Release notes](https://github.com/yjs/y-websocket/releases)
- [Commits](yjs/y-websocket@v3.0.0...v3.1.0)

Updates `yjs` from 13.6.31 to 13.6.32
- [Release notes](https://github.com/yjs/yjs/releases)
- [Commits](yjs/yjs@v13.6.31...v13.6.32)

Updates `@tailwindcss/postcss` from 4.3.1 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/packages/@tailwindcss-postcss)

Updates `@testing-library/react` from 16.3.2 to 16.3.3
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.3.2...v16.3.3)

Updates `@testing-library/user-event` from 14.6.1 to 14.6.6
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](testing-library/user-event@v14.6.1...v14.6.6)

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

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

Updates `@types/react-dom` from 19.2.3 to 19.2.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `eslint` from 10.5.0 to 10.9.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.5.0...v10.9.1)

Updates `eslint-config-next` from 16.2.9 to 16.3.3
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v16.3.3/packages/eslint-config-next)

Updates `jest` from 30.4.2 to 30.5.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.5.0/packages/jest)

Updates `jest-environment-jsdom` from 30.4.1 to 30.5.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.5.0/packages/jest-environment-jsdom)

Updates `tailwindcss` from 4.3.1 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/packages/tailwindcss)

Updates `ws` from 8.21.0 to 8.21.3
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.21.0...8.21.3)

Updates `@jest/globals` from 30.4.1 to 30.5.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.5.0/packages/jest-globals)

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

Updates `@typescript-eslint/eslint-plugin` from 8.62.0 to 8.68.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.68.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.62.0 to 8.68.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.68.0/packages/parser)

Updates `ts-jest` from 29.4.11 to 29.4.12
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.4.11...v29.4.12)

Updates `tsx` from 4.22.4 to 4.23.12
- [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.12)

Updates `typescript-eslint` from 8.62.0 to 8.68.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.68.0/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: lint-staged
  dependency-version: 17.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: turbo
  dependency-version: 2.10.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: "@blocknote/core"
  dependency-version: 0.54.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: "@blocknote/react"
  dependency-version: 0.54.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: "@blocknote/shadcn"
  dependency-version: 0.54.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: monaco-editor
  dependency-version: 0.56.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: next
  dependency-version: 16.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: y-websocket
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: yjs
  dependency-version: 13.6.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.3.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: "@testing-library/react"
  dependency-version: 16.3.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: "@testing-library/user-event"
  dependency-version: 14.6.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: "@types/node"
  dependency-version: 26.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: eslint
  dependency-version: 10.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: eslint-config-next
  dependency-version: 16.3.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: jest
  dependency-version: 30.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: jest-environment-jsdom
  dependency-version: 30.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: tailwindcss
  dependency-version: 4.3.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: ws
  dependency-version: 8.21.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: "@jest/globals"
  dependency-version: 30.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: "@types/supertest"
  dependency-version: 7.2.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.68.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.68.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: ts-jest
  dependency-version: 29.4.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-dependencies
- dependency-name: tsx
  dependency-version: 4.23.12
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.68.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies, npm. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants