Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 39 updates#806

Closed
dependabot[bot] wants to merge 1 commit intostagingfrom
dependabot/npm_and_yarn/staging/minor-and-patch-c9550008be
Closed

chore(deps): bump the minor-and-patch group across 1 directory with 39 updates#806
dependabot[bot] wants to merge 1 commit intostagingfrom
dependabot/npm_and_yarn/staging/minor-and-patch-c9550008be

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 14, 2026

Bumps the minor-and-patch group with 39 updates in the / directory:

Package From To
@azure/identity 4.13.0 4.13.1
@headlessui/react 2.2.9 2.2.10
@prisma/adapter-pg 7.5.0 7.7.0
@prisma/client 7.5.0 7.7.0
@react-pdf/renderer 4.3.2 4.4.1
@scalar/api-reference-react 0.9.6 0.9.22
@tiptap/extension-color 3.20.1 3.22.3
@tiptap/extension-list-item 3.20.1 3.22.3
@tiptap/extension-placeholder 3.20.1 3.22.3
@tiptap/extension-text-align 3.20.1 3.22.3
@tiptap/extension-text-style 3.20.1 3.22.3
@tiptap/react 3.20.1 3.22.3
@tiptap/starter-kit 3.20.1 3.22.3
@types/pg 8.18.0 8.20.0
@uiw/react-codemirror 4.25.8 4.25.9
dotenv 17.3.1 17.4.2
framer-motion 12.36.0 12.38.0
motion 12.36.0 12.38.0
next 16.1.6 16.2.3
postgres 3.4.8 3.4.9
react 19.2.4 19.2.5
react-dom 19.2.4 19.2.5
react-hook-form 7.71.2 7.72.1
sanitize-html 2.17.1 2.17.2
zustand 5.0.11 5.0.12
@biomejs/biome 2.4.6 2.4.11
@playwright/test 1.58.2 1.59.1
@tailwindcss/postcss 4.2.1 4.2.2
@types/node 25.5.0 25.6.0
@vitest/coverage-v8 4.1.0 4.1.4
@vitest/ui 4.1.0 4.1.4
axe-core 4.11.1 4.11.3
conventional-changelog-conventionalcommits 9.3.0 9.3.1
msw 2.12.10 2.13.3
postcss 8.5.8 8.5.9
prisma 7.5.0 7.7.0
tailwindcss 4.2.1 4.2.2
ultracite 7.3.0 7.5.8
vitest 4.1.0 4.1.4

Updates @azure/identity from 4.13.0 to 4.13.1

Commits

Updates @headlessui/react from 2.2.9 to 2.2.10

Release notes

Sourced from @​headlessui/react's releases.

@​headlessui/react@​v2.2.10

Fixed

  • Don’t render <Portal> while hydrating (#3825)
  • Fix passing props on Fragment error due to Symbol(react.lazy) (#3873)
Changelog

Sourced from @​headlessui/react's changelog.

[2.2.10] - 2026-04-07

Fixed

  • Don’t render <Portal> while hydrating (#3825)
  • Fix passing props on Fragment error due to Symbol(react.lazy) (#3873)
Commits

Updates @prisma/adapter-pg from 7.5.0 to 7.7.0

Release notes

Sourced from @​prisma/adapter-pg's releases.

7.7.0

Today, we are excited to share the 7.7.0 stable release 🎉

🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

Highlights

ORM

prisma bootstrap command

A new prisma bootstrap command (#29374, #29424) sequences the full Prisma Postgres setup into a single interactive flow. It detects the current project state and runs only the steps that are needed:

  1. Init or scaffold — In an empty directory, offers a choice of 10 starter templates (Next.js, Express, Hono, Fastify, Nuxt, SvelteKit, Remix, React Router 7, Astro, NestJS) from prisma-examples. In an existing project without a schema, runs prisma init.
  2. Link — Authenticates via the browser and connects to a Prisma Postgres database. Skips if already linked.
  3. Install dependencies — Detects the package manager and offers to install missing @prisma/client, prisma, and dotenv.
  4. Migrate — Runs prisma migrate dev if the schema contains models.
  5. Generate — Runs prisma generate.
  6. Seed — Runs prisma db seed if a seed script is configured.

Each side-effecting step prompts for confirmation. Re-running the command skips already-completed steps.

Basic usage

npx prisma@latest bootstrap

With a starter template

npx prisma@latest bootstrap --template nextjs

Non-interactive (CI)

npx prisma@latest bootstrap --api-key "$PRISMA_API_KEY" --database "db_abc123"

Open roles at Prisma

Interested in joining Prisma? We're growing and have several exciting opportunities across the company for developers who are passionate about building with Prisma. Explore our open positions on our Careers page and find the role that's right for you.

Enterprise support

Thousands of teams use Prisma and many of them already tap into our Enterprise & Agency Support Program for hands-on help with everything from schema integrations and performance tuning to security and compliance.

With this program you also get priority issue triage and bug fixes, expert scalability advice, and custom training so that your Prisma-powered apps stay rock-solid at any scale. Learn more or join: https://prisma.io/enterprise.

... (truncated)

Commits
  • f2ca67e feat: pg statement name generator (#29395)
  • 4131568 fix: set @​types/pg to ^8.16.0 (#29390)
  • 33667c3 fix(adapter-pg): handle both quoted/unquoted column names in ColumnNotFound e...
  • e97b3e0 feat(adapter-pg): accept connection string URL in PrismaPg constructor (#29287)
  • See full diff in compare view

Updates @prisma/client from 7.5.0 to 7.7.0

Release notes

Sourced from @​prisma/client's releases.

7.7.0

Today, we are excited to share the 7.7.0 stable release 🎉

🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

Highlights

ORM

prisma bootstrap command

A new prisma bootstrap command (#29374, #29424) sequences the full Prisma Postgres setup into a single interactive flow. It detects the current project state and runs only the steps that are needed:

  1. Init or scaffold — In an empty directory, offers a choice of 10 starter templates (Next.js, Express, Hono, Fastify, Nuxt, SvelteKit, Remix, React Router 7, Astro, NestJS) from prisma-examples. In an existing project without a schema, runs prisma init.
  2. Link — Authenticates via the browser and connects to a Prisma Postgres database. Skips if already linked.
  3. Install dependencies — Detects the package manager and offers to install missing @prisma/client, prisma, and dotenv.
  4. Migrate — Runs prisma migrate dev if the schema contains models.
  5. Generate — Runs prisma generate.
  6. Seed — Runs prisma db seed if a seed script is configured.

Each side-effecting step prompts for confirmation. Re-running the command skips already-completed steps.

Basic usage

npx prisma@latest bootstrap

With a starter template

npx prisma@latest bootstrap --template nextjs

Non-interactive (CI)

npx prisma@latest bootstrap --api-key "$PRISMA_API_KEY" --database "db_abc123"

Open roles at Prisma

Interested in joining Prisma? We're growing and have several exciting opportunities across the company for developers who are passionate about building with Prisma. Explore our open positions on our Careers page and find the role that's right for you.

Enterprise support

Thousands of teams use Prisma and many of them already tap into our Enterprise & Agency Support Program for hands-on help with everything from schema integrations and performance tuning to security and compliance.

With this program you also get priority issue triage and bug fixes, expert scalability advice, and custom training so that your Prisma-powered apps stay rock-solid at any scale. Learn more or join: https://prisma.io/enterprise.

... (truncated)

Commits
  • 6a3c3cc chore: extract parameterization to client-engine-runtime (#29422)
  • 5b420f8 fix(client): prevent caching of createMany queries to avoid cache bloat and p...
  • 30f0af6 feat: dmmf streaming with an E2E test (#29377)
  • 14c3c2e fix: pin E2E typescript to prevent 6 upgrade (#29383)
  • ecae3b6 chore(deps): update engines to 7.6.0-1.75cbdc1eb7150937890ad5465d861175c66247...
  • 309b4bc refactor: extract 'prisma-client-js' into PRISMA_CLIENT_JS_PROVIDER constant ...
  • See full diff in compare view

Updates @react-pdf/renderer from 4.3.2 to 4.4.1

Release notes

Sourced from @​react-pdf/renderer's releases.

@​react-pdf/renderer@​4.4.1

Patch Changes

@​react-pdf/renderer@​4.3.3

Patch Changes

Changelog

Sourced from @​react-pdf/renderer's changelog.

4.4.1

Patch Changes

4.4.0

Minor Changes

Patch Changes

4.3.3

Patch Changes

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​react-pdf/renderer since your current version.


Updates @scalar/api-reference-react from 0.9.6 to 0.9.22

Changelog

Sourced from @​scalar/api-reference-react's changelog.

0.9.22

0.9.21

0.9.20

0.9.19

Patch Changes

  • #8656: fix react wrapper production crash by defining Vue bundler flags before importing api-reference

0.9.18

0.9.17

0.9.16

0.9.15

0.9.14

0.9.13

0.9.12

0.9.11

Patch Changes

  • #8466: chore: new build pipeline

0.9.10

Patch Changes

Updated Dependencies

  • @​scalar/api-reference@​1.49.0
    • #8443: fix hash-prefixed basePath routing
    • #8467: feat(api-reference): improve Ask AI button consistency and a11y
    • #8409: feat: lazy rendering
    • #8442: fix object schema descriptions in parameter rendering

0.9.9

Patch Changes

Updated Dependencies

... (truncated)

Commits

Updates @tiptap/extension-color from 3.20.1 to 3.22.3

Release notes

Sourced from @​tiptap/extension-color's releases.

v3.22.3

@​tiptap/core

Patch Changes

  • ac994c5: Fixed insertContentAt corrupting the document when inserting inline content with marks at the start of a paragraph. The from - 1 position adjustment now only applies to block-level content.

@​tiptap/extension-node-range

Patch Changes

  • ac994c5: Add an option to control whether node ranges extend when a selection only touches a node boundary.

@​tiptap/html

Patch Changes

  • ac994c5: Remove unnecessary xmlns="http://www.w3.org/1999/xhtml" attribute from generateHTML output by using innerHTML instead of XMLSerializer for HTML serialization.

@​tiptap/extension-drag-handle

Patch Changes

  • ac994c5: Fix drag selections so crossing a node boundary does not incorrectly include the next node.

@​tiptap/starter-kit

Patch Changes

  • Updated dependencies [ac994c5]
    • @​tiptap/core@​3.22.3
    • @​tiptap/extension-dropcursor@​3.22.3
    • @​tiptap/extension-gapcursor@​3.22.3
    • @​tiptap/extension-list-item@​3.22.3
    • @​tiptap/extension-list-keymap@​3.22.3
    • @​tiptap/extension-blockquote@​3.22.3
    • @​tiptap/extension-bold@​3.22.3
    • @​tiptap/extension-bullet-list@​3.22.3
    • @​tiptap/extension-code@​3.22.3
    • @​tiptap/extension-code-block@​3.22.3
    • @​tiptap/extension-document@​3.22.3
    • @​tiptap/extension-hard-break@​3.22.3
    • @​tiptap/extension-heading@​3.22.3
    • @​tiptap/extension-horizontal-rule@​3.22.3
    • @​tiptap/extension-italic@​3.22.3
    • @​tiptap/extension-link@​3.22.3
    • @​tiptap/extension-list@​3.22.3
    • @​tiptap/extension-ordered-list@​3.22.3
    • @​tiptap/extension-paragraph@​3.22.3
    • @​tiptap/extension-strike@​3.22.3

... (truncated)

Changelog

Sourced from @​tiptap/extension-color's changelog.

3.22.3

Patch Changes

  • @​tiptap/extension-text-style@​3.22.3

3.22.2

Patch Changes

  • @​tiptap/extension-text-style@​3.22.2

3.22.1

Patch Changes

  • @​tiptap/extension-text-style@​3.22.1

3.22.0

Patch Changes

  • @​tiptap/extension-text-style@​3.22.0

3.21.0

Patch Changes

  • @​tiptap/extension-text-style@​3.21.0

3.20.6

Patch Changes

  • @​tiptap/extension-text-style@​3.20.6

3.20.5

Patch Changes

  • @​tiptap/extension-text-style@​3.20.5

3.20.4

Patch Changes

  • @​tiptap/extension-text-style@​3.20.4

3.20.3

... (truncated)

Commits

Updates @tiptap/extension-list-item from 3.20.1 to 3.22.3

Release notes

Sourced from @​tiptap/extension-list-item's releases.

v3.22.3

@​tiptap/core

Patch Changes

  • ac994c5: Fixed insertContentAt corrupting the document when inserting inline content with marks at the start of a paragraph. The from - 1 position adjustment now only applies to block-level content.

@​tiptap/extension-node-range

Patch Changes

  • ac994c5: Add an option to control whether node ranges extend when a selection only touches a node boundary.

@​tiptap/html

Patch Changes

  • ac994c5: Remove unnecessary xmlns="http://www.w3.org/1999/xhtml" attribute from generateHTML output by using innerHTML instead of XMLSerializer for HTML serialization.

@​tiptap/extension-drag-handle

Patch Changes

  • ac994c5: Fix drag selections so crossing a node boundary does not incorrectly include the next node.

@​tiptap/starter-kit

Patch Changes

  • Updated dependencies [ac994c5]
    • @​tiptap/core@​3.22.3
    • @​tiptap/extension-dropcursor@​3.22.3
    • @​tiptap/extension-gapcursor@​3.22.3
    • @​tiptap/extension-list-item@​3.22.3
    • @​tiptap/extension-list-keymap@​3.22.3
    • @​tiptap/extension-blockquote@​3.22.3
    • @​tiptap/extension-bold@​3.22.3
    • @​tiptap/extension-bullet-list@​3.22.3
    • @​tiptap/extension-code@​3.22.3
    • @​tiptap/extension-code-block@​3.22.3
    • @​tiptap/extension-document@​3.22.3
    • @​tiptap/extension-hard-break@​3.22.3
    • @​tiptap/extension-heading@​3.22.3
    • @​tiptap/extension-horizontal-rule@​3.22.3
    • @​tiptap/extension-italic@​3.22.3
    • @​tiptap/extension-link@​3.22.3
    • @​tiptap/extension-list@​3.22.3
    • @​tiptap/extension-ordered-list@​3.22.3
    • @​tiptap/extension-paragraph@​3.22.3
    • @​tiptap/extension-strike@​3.22.3

... (truncated)

Commits

Updates @tiptap/extension-placeholder from 3.20.1 to 3.22.3

Release notes

Sourced from @​tiptap/extension-placeholder's releases.

v3.22.3

@​tiptap/core

Patch Changes

  • ac994c5: Fixed insertContentAt corrupting the document when inserting inline content with marks at the start of a paragraph. The from - 1 position adjustment now only applies to block-level content.

@​tiptap/extension-node-range

Patch Changes

  • ac994c5: Add an option to control whether node ranges extend when a selection only touches a node boundary.

@​tiptap/html

Patch Changes

  • ac994c5: Remove unnecessary xmlns="http://www.w3.org/1999/xhtml" attribute from generateHTML output by using innerHTML instead of XMLSerializer for HTML serialization.

@​tiptap/extension-drag-handle

Patch Changes

  • ac994c5: Fix drag selections so crossing a node boundary does not incorrectly include the next node.

@​tiptap/starter-kit

Patch Changes

  • Updated dependencies [ac994c5]
    • @​tiptap/core@​3.22.3
    • @​tiptap/extension-dropcursor@​3.22.3
    • @​tiptap/extension-gapcursor@​3.22.3
    • @​tiptap/extension-list-item@​3.22.3
    • @​tiptap/extension-list-keymap@​3.22.3
    • @​tiptap/extension-blockquote@​3.22.3
    • @​tiptap/extension-bold@​3.22.3
    • @​tiptap/extension-bullet-list@​3.22.3
    • @​tiptap/extension-code@​3.22.3
    • @​tiptap/extension-code-block@​3.22.3
    • @​tiptap/extension-document@​3.22.3
    • @​tiptap/extension-hard-break@​3.22.3
    • @​tiptap/extension-heading@​3.22.3
    • @​tiptap/extension-horizontal-rule@​3.22.3
    • @​tiptap/extension-italic@​3.22.3
    • @​tiptap/extension-link@​3.22.3
    • @​tiptap/extension-list@​3.22.3
    • @​tiptap/extension-ordered-list@​3.22.3
    • @​tiptap/extension-paragraph@​3.22.3
    • @​tiptap/extension-strike@​3.22.3

... (truncated)

Changelog

Sourced from @​tiptap/extension-placeholder's changelog.

3.22.3

Patch Changes

  • @​tiptap/extensions@​3.22.3

3.22.2

Patch Changes

  • @​tiptap/extensions@​3.22.2

3.22.1

Patch Changes

  • @​tiptap/extensions@​3.22.1

3.22.0

Patch Changes

  • @​tiptap/extensions@​3.22.0

3.21.0

Patch Changes

  • @​tiptap/extensions@​3.21.0

3.20.6

Patch Changes

  • @​tiptap/extensions@​3.20.6

3.20.5

Patch Changes

  • Updated dependencies [0c2bbfe]
    • @​tiptap/extensions@​3.20.5

3.20.4

Patch Changes

  • @​tiptap/extensions@​3.20.4

3.20.3

... (truncated)

Commits

Updates @tiptap/extension-text-align from 3.20.1 to 3.22.3

Release notes

Sourced from @​tiptap/extension-text-align's releases.

v3.22.3

@​tiptap/core

Patch Changes

  • ac994c5: Fixed insertContentAt corrupting the document when inserting inline content with marks at the start of a paragraph. The from - 1 position adjustment now only applies to block-level content.

@​tiptap/extension-node-range

Patch Changes

  • ac994c5: Add an option to control whether node ranges extend when a selection only touches a node boundary.

@​tiptap/html

Patch Changes

  • ac994c5: Remove unnecessary xmlns="http://www.w3.org/1999/xhtml" attribute from generateHTML output by using innerHTML instead of XMLSerializer for HTML serialization.

@​tiptap/extension-drag-handle

Patch Changes

  • ac994c5: Fix drag selections so crossing a node boundary does not incorrectly include the next node.

@​tiptap/starter-kit

Patch Changes

  • Updated dependencies [ac994c5]
    • @​tiptap/core@​3.22.3
    • @​tiptap/extension-dropcursor@​3.22.3
    • @​tiptap/extension-gapcursor@​3.22.3
    • @​tiptap/extension-list-item@​3.22.3
    • @​tiptap/extension-list-keymap@​3.22.3
    • @​tiptap/extension-blockquote@​3.22.3
    • @​tiptap/extension-bold@​3.22.3
    • @​tiptap/extension-bullet-list@​3.22.3
    • @​tiptap/extension-code@​3.22.3
    • @​tiptap/extension-code-block@​3.22.3
    • @​tiptap/extension-document@​3.22.3
    • @​tiptap/extension-hard-break@​3.22.3
    • @​tiptap/extension-heading@​3.22.3
    • @​tiptap/extension-horizontal-rule@​3.22.3
    • @​tiptap/extension-italic@​3.22.3
    • @​tiptap/extension-link@​3.22.3
    • @​tiptap/extension-list@​3.22.3
    • @​tiptap/extension-ordered-list@​3.22.3
    • @​tiptap/extension-paragraph@​3.22.3
    • @​tiptap/extension-strike@​3.22.3

... (truncated)

Changelog

Sourced from @​tiptap/extension-text-align's changelog.

3.22.3

Patch Changes

  • Updated dependencies [cb28e7b]
    • @​tiptap/core@​3.22.3

3.22.2

Patch Changes

  • Updated dependencies [f1d504c]
  • Updated dependencies [404c683]
    • @​tiptap/core@​3.22.2

3.22.1

Patch Changes

  • Updated dependencies [ee03ac0]
  • Updated dependencies [b88f9ed]
    • @​tiptap/core@​3.22.1

3.22.0

Patch Changes

  • Updated dependencies [912a49b]
  • Updated dependencies [7d4fb9a]
  • Updated dependencies [0c1c112]
  • Updated dependencies [0c1c112]
  • Updated dependencies [f99bdc2]
    • @​tiptap/core@​3.22.0

3.21.0

Patch Changes

  • @​tiptap/core@​3.21.0

3.20.6

Patch Changes

  • @​tiptap/core@​3.20.6

3.20.5

Patch Changes

... (truncated)

Commits

Updates @tiptap/extension-text-style from 3.20.1 to 3.22.3

Release notes

Sourced from @​tiptap/extension-text-style's releases.

v3.22.3

@​tiptap/core

Patch Changes

  • ac994c5: Fixed insertContentAt corrupting the document when inserting inline content with marks at the start of a paragraph. The from - 1 position adjustment now only applies to block-level content.

@​tiptap/extension-node-range

Patch Changes

  • ac994c5: Add an option to control whether node ranges extend when a selection only touches a node boundary.

@​tiptap/html

Patch Changes

  • ac994c5: Remove unnecessary xmlns="http://www.w3.org/1999/xhtml" attribute from generateHTML output by using innerHTML instead of XMLSerializer for HTML serialization.

@​tiptap/extension-drag-handle

Patch Changes

  • ac994c5: Fix drag selections so crossing a node boundary does not incorrectly include the next node.

@​tiptap/starter-kit

Patch Changes

  • Updated dependencies [ac994c5]
    • @​tiptap/core@​3.22.3
    • @​tiptap/extension-dropcursor@​3.22.3
    • @​tiptap/extension-gapcursor@​3.22.3
    • @​tiptap/extension-list-item@​3.22.3
    • @​tiptap/extension-list-keymap@​3.22.3
    • @​tiptap/extension-blockquote@​3.22.3
    • @​tiptap/extension-bold@​3.22.3
    • @​tiptap/extension-bullet-list@​3.22.3
    • @​tiptap/extension-code@​3.22.3
    • @​tiptap/extension-code-block@​3.22.3
    • @​tiptap/extension-document@​3.22.3
    • @​tiptap/extension-hard-break@​3.22.3
    • @​tiptap/extension-heading@​3.22.3
    • @​tiptap/extension-horizontal-rule@​3.22.3
    • @​tiptap/extension-italic@​3.22.3
    • @​tiptap/extension-link@​3.22.3
    • @​tiptap/extension-list@​3.22.3
    • @​tiptap/extension-ordered-list@​3.22.3
    • @​tiptap/extension-paragraph@​3.22.3
    • @​tiptap/extension-strike@​3.22.3

... (truncated)

Changelog

Sourced from @​tiptap/extension-text-style's changelog.

3.22.3

Patch Changes

  • Updated dependencies [cb28e7b]
    • @​tiptap/core@​3.22.3

3.22.2

Patch Changes

  • Updated dependencies [f1d504c]
  • Updated dependencies [404c683]
    • @​tiptap/core@​3.22.2

3.22.1

Patch Changes

  • Updated dependencies [ee03ac0]
  • Updated dependencies [b88f9ed]
    • @​tiptap/core@​3.22.1

3.22.0

Patch Changes

  • Updated dependencies [912a49b]
  • Updated dependencies [7d4fb9a]
  • Updated dependencies [0c1c112]
  • Updated dependencies [0c1c112]
  • Updated dependencies [f99bdc2]
    • @​tiptap/core@​3.22.0

3.21.0

Patch Changes

  • @​tiptap/core@​3.21.0

3.20.6

Patch Changes

  • @​tiptap/core@​3.20.6

3.20.5

Patch Changes

... (truncated)

Commits
  • 626b052 chore(release): publish a new stable version (#7714)
  • 99e204c chore(release): publish a new stable version (#7698)
  • 8ee6d9a chore(release): publish a new stable version (#7687)
  • 7834835 chore(r...

    Description has been truncated

…9 updates

Bumps the minor-and-patch group with 39 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@azure/identity](https://github.com/Azure/azure-sdk-for-js) | `4.13.0` | `4.13.1` |
| [@headlessui/react](https://github.com/tailwindlabs/headlessui/tree/HEAD/packages/@headlessui-react) | `2.2.9` | `2.2.10` |
| [@prisma/adapter-pg](https://github.com/prisma/prisma/tree/HEAD/packages/adapter-pg) | `7.5.0` | `7.7.0` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `7.5.0` | `7.7.0` |
| [@react-pdf/renderer](https://github.com/diegomura/react-pdf/tree/HEAD/packages/renderer) | `4.3.2` | `4.4.1` |
| [@scalar/api-reference-react](https://github.com/scalar/scalar/tree/HEAD/packages/api-reference-react) | `0.9.6` | `0.9.22` |
| [@tiptap/extension-color](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-color) | `3.20.1` | `3.22.3` |
| [@tiptap/extension-list-item](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-list-item) | `3.20.1` | `3.22.3` |
| [@tiptap/extension-placeholder](https://github.com/ueberdosis/tiptap/tree/HEAD/packages-deprecated/extension-placeholder) | `3.20.1` | `3.22.3` |
| [@tiptap/extension-text-align](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-text-align) | `3.20.1` | `3.22.3` |
| [@tiptap/extension-text-style](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-text-style) | `3.20.1` | `3.22.3` |
| [@tiptap/react](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react) | `3.20.1` | `3.22.3` |
| [@tiptap/starter-kit](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit) | `3.20.1` | `3.22.3` |
| [@types/pg](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg) | `8.18.0` | `8.20.0` |
| [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.25.8` | `4.25.9` |
| [dotenv](https://github.com/motdotla/dotenv) | `17.3.1` | `17.4.2` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.36.0` | `12.38.0` |
| [motion](https://github.com/motiondivision/motion) | `12.36.0` | `12.38.0` |
| [next](https://github.com/vercel/next.js) | `16.1.6` | `16.2.3` |
| [postgres](https://github.com/porsager/postgres) | `3.4.8` | `3.4.9` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.5` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.5` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.71.2` | `7.72.1` |
| [sanitize-html](https://github.com/apostrophecms/apostrophe/tree/HEAD/packages/sanitize-html) | `2.17.1` | `2.17.2` |
| [zustand](https://github.com/pmndrs/zustand) | `5.0.11` | `5.0.12` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.6` | `2.4.11` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.1` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.2.1` | `4.2.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.5.0` | `25.6.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.0` | `4.1.4` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `4.1.0` | `4.1.4` |
| [axe-core](https://github.com/dequelabs/axe-core) | `4.11.1` | `4.11.3` |
| [conventional-changelog-conventionalcommits](https://github.com/conventional-changelog/conventional-changelog/tree/HEAD/packages/conventional-changelog-conventionalcommits) | `9.3.0` | `9.3.1` |
| [msw](https://github.com/mswjs/msw) | `2.12.10` | `2.13.3` |
| [postcss](https://github.com/postcss/postcss) | `8.5.8` | `8.5.9` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `7.5.0` | `7.7.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.2.1` | `4.2.2` |
| [ultracite](https://github.com/haydenbleasel/ultracite) | `7.3.0` | `7.5.8` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.0` | `4.1.4` |



Updates `@azure/identity` from 4.13.0 to 4.13.1
- [Release notes](https://github.com/Azure/azure-sdk-for-js/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/Changelog-for-next-generation.md)
- [Commits](https://github.com/Azure/azure-sdk-for-js/compare/@azure/identity_4.13.0...@azure/identity_4.13.1)

Updates `@headlessui/react` from 2.2.9 to 2.2.10
- [Release notes](https://github.com/tailwindlabs/headlessui/releases)
- [Changelog](https://github.com/tailwindlabs/headlessui/blob/main/packages/@headlessui-react/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/headlessui/commits/@headlessui/react@v2.2.10/packages/@headlessui-react)

Updates `@prisma/adapter-pg` from 7.5.0 to 7.7.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.7.0/packages/adapter-pg)

Updates `@prisma/client` from 7.5.0 to 7.7.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.7.0/packages/client)

Updates `@react-pdf/renderer` from 4.3.2 to 4.4.1
- [Release notes](https://github.com/diegomura/react-pdf/releases)
- [Changelog](https://github.com/diegomura/react-pdf/blob/master/packages/renderer/CHANGELOG.md)
- [Commits](https://github.com/diegomura/react-pdf/commits/@react-pdf/renderer@4.4.1/packages/renderer)

Updates `@scalar/api-reference-react` from 0.9.6 to 0.9.22
- [Release notes](https://github.com/scalar/scalar/releases)
- [Changelog](https://github.com/scalar/scalar/blob/main/packages/api-reference-react/CHANGELOG.md)
- [Commits](https://github.com/scalar/scalar/commits/HEAD/packages/api-reference-react)

Updates `@tiptap/extension-color` from 3.20.1 to 3.22.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-color/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.3/packages/extension-color)

Updates `@tiptap/extension-list-item` from 3.20.1 to 3.22.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.3/packages/extension-list-item)

Updates `@tiptap/extension-placeholder` from 3.20.1 to 3.22.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages-deprecated/extension-placeholder/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.3/packages-deprecated/extension-placeholder)

Updates `@tiptap/extension-text-align` from 3.20.1 to 3.22.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-text-align/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.3/packages/extension-text-align)

Updates `@tiptap/extension-text-style` from 3.20.1 to 3.22.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-text-style/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.3/packages/extension-text-style)

Updates `@tiptap/react` from 3.20.1 to 3.22.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.3/packages/react)

Updates `@tiptap/starter-kit` from 3.20.1 to 3.22.3
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/main/packages/starter-kit/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/v3.22.3/packages/starter-kit)

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

Updates `@uiw/react-codemirror` from 4.25.8 to 4.25.9
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.8...v4.25.9)

Updates `dotenv` from 17.3.1 to 17.4.2
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v17.3.1...v17.4.2)

Updates `framer-motion` from 12.36.0 to 12.38.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.36.0...v12.38.0)

Updates `motion` from 12.36.0 to 12.38.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.36.0...v12.38.0)

Updates `next` from 16.1.6 to 16.2.3
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v16.1.6...v16.2.3)

Updates `postgres` from 3.4.8 to 3.4.9
- [Release notes](https://github.com/porsager/postgres/releases)
- [Changelog](https://github.com/porsager/postgres/blob/master/CHANGELOG.md)
- [Commits](porsager/postgres@v3.4.8...v3.4.9)

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

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

Updates `react-hook-form` from 7.71.2 to 7.72.1
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.71.2...v7.72.1)

Updates `sanitize-html` from 2.17.1 to 2.17.2
- [Changelog](https://github.com/apostrophecms/apostrophe/blob/main/packages/sanitize-html/CHANGELOG.md)
- [Commits](https://github.com/apostrophecms/apostrophe/commits/sanitize-html@2.17.2/packages/sanitize-html)

Updates `zustand` from 5.0.11 to 5.0.12
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v5.0.11...v5.0.12)

Updates `@biomejs/biome` from 2.4.6 to 2.4.11
- [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/biome@2.4.11/packages/@biomejs/biome)

Updates `@playwright/test` from 1.58.2 to 1.59.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.58.2...v1.59.1)

Updates `@tailwindcss/postcss` from 4.2.1 to 4.2.2
- [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.2.2/packages/@tailwindcss-postcss)

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

Updates `@vitest/coverage-v8` from 4.1.0 to 4.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.4/packages/coverage-v8)

Updates `@vitest/ui` from 4.1.0 to 4.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.4/packages/ui)

Updates `axe-core` from 4.11.1 to 4.11.3
- [Release notes](https://github.com/dequelabs/axe-core/releases)
- [Changelog](https://github.com/dequelabs/axe-core/blob/v4.11.3/CHANGELOG.md)
- [Commits](dequelabs/axe-core@v4.11.1...v4.11.3)

Updates `conventional-changelog-conventionalcommits` from 9.3.0 to 9.3.1
- [Release notes](https://github.com/conventional-changelog/conventional-changelog/releases)
- [Changelog](https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/conventional-changelog-conventionalcommits/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/conventional-changelog/commits/conventional-changelog-conventionalcommits-v9.3.1/packages/conventional-changelog-conventionalcommits)

Updates `msw` from 2.12.10 to 2.13.3
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.12.10...v2.13.3)

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

Updates `prisma` from 7.5.0 to 7.7.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.7.0/packages/cli)

Updates `tailwindcss` from 4.2.1 to 4.2.2
- [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.2.2/packages/tailwindcss)

Updates `ultracite` from 7.3.0 to 7.5.8
- [Release notes](https://github.com/haydenbleasel/ultracite/releases)
- [Commits](https://github.com/haydenbleasel/ultracite/compare/ultracite@7.3.0...ultracite@7.5.8)

Updates `vitest` from 4.1.0 to 4.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.4/packages/vitest)

---
updated-dependencies:
- dependency-name: "@azure/identity"
  dependency-version: 4.13.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@headlessui/react"
  dependency-version: 2.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@prisma/adapter-pg"
  dependency-version: 7.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@prisma/client"
  dependency-version: 7.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@react-pdf/renderer"
  dependency-version: 4.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@scalar/api-reference-react"
  dependency-version: 0.9.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/extension-color"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/extension-list-item"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/extension-placeholder"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/extension-text-align"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/extension-text-style"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/react"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tiptap/starter-kit"
  dependency-version: 3.22.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/pg"
  dependency-version: 8.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@uiw/react-codemirror"
  dependency-version: 4.25.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: dotenv
  dependency-version: 17.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: framer-motion
  dependency-version: 12.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: motion
  dependency-version: 12.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: next
  dependency-version: 16.2.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: postgres
  dependency-version: 3.4.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-dom
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-hook-form
  dependency-version: 7.72.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: sanitize-html
  dependency-version: 2.17.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: zustand
  dependency-version: 5.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@playwright/test"
  dependency-version: 1.59.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-version: 25.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@vitest/ui"
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: axe-core
  dependency-version: 4.11.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: conventional-changelog-conventionalcommits
  dependency-version: 9.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: msw
  dependency-version: 2.13.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: postcss
  dependency-version: 8.5.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: prisma
  dependency-version: 7.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tailwindcss
  dependency-version: 4.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: ultracite
  dependency-version: 7.5.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: vitest
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 14, 2026

Labels

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

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

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 21, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 21, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/staging/minor-and-patch-c9550008be branch April 21, 2026 09:46
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