Skip to content

chore(deps-dev)(deps-dev): bump the dev-deps group across 1 directory with 13 updates#883

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/dev-deps-f0ac018cb8
Open

chore(deps-dev)(deps-dev): bump the dev-deps group across 1 directory with 13 updates#883
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/dev-deps-f0ac018cb8

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 29, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev-deps group with 13 updates in the / directory:

Package From To
@biomejs/biome 2.4.15 2.5.0
@cursor/sdk 1.0.15 1.0.22
@vitest/coverage-v8 4.1.6 4.1.9
dependency-cruiser 17.4.0 17.4.3
skills 1.5.7 1.5.13
turbo 2.9.14 2.9.18
@cloudflare/workers-types 4.20260515.1 4.20260621.1
wrangler 4.91.0 4.103.0
@types/react 19.2.16 19.2.17
@cloudflare/vitest-pool-workers 0.16.6 0.16.20
@react-router/dev 7.15.1 7.18.0
@prisma/compute-sdk 0.17.0 0.28.0
@prisma/management-api-sdk 1.29.0 1.41.0

Updates @biomejs/biome from 2.4.15 to 2.5.0

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.0

2.5.0

Minor Changes

  • #9539 f0615fd Thanks @​ematipico! - Added a new reporter called concise. When --reporter=concise is passed the commands format, lint, check and ci, the diagnostics are printed in a compact manner:

    ! index.ts:2:10: lint/correctness/noUnusedImports: Several of these imports are unused.
    ! main.ts:9:7: lint/correctness/noUnusedVariables: This variable f is unused.
    × index.ts:8:5: lint/suspicious/noImplicitAnyLet: This variable implicitly has the any type.
    × main.ts:2:10: lint/suspicious/noRedeclare: Shouldn't redeclare 'z'. Consider to delete it or rename it.
    
  • #9495 2056b23 Thanks @​aviraldua93! - Added the useKeyWithClickEvents a11y lint rule for HTML files (.html, .vue, .svelte, .astro). This is a port of the existing JSX rule. The rule enforces that elements with an onclick handler also have at least one keyboard event handler (onkeydown, onkeyup, or onkeypress) to ensure keyboard accessibility.

    Inherently keyboard-accessible elements (<a>, <button>, <input>, <select>, <textarea>, <option>) are excluded, as are elements hidden from assistive technologies (aria-hidden) or with role="presentation" / role="none".

    <!-- Invalid: no keyboard handler -->
    <div onclick="handleClick()">Click me</div>
    <!-- Valid: has keyboard handler -->
    <div onclick="handleClick()" onkeydown="handleKeyDown()">Click me</div>
    <!-- Valid: inherently keyboard-accessible -->
    <button onclick="handleClick()">Submit</button>

  • #9152 9ec8500 Thanks @​ematipico! - Added new nursery lint rule noUndeclaredClasses for HTML, JSX, and SFC files (Vue, Astro, Svelte). The rule detects CSS class names used in class="..." (or className) attributes that are not defined in any <style> block or linked stylesheet reachable from the file.

    <!-- .typo is used but never defined -->
    <html>
      <head>
        <style>
          .button {
            color: blue;
          }
        </style>
      </head>
      <body>
        <div class="button typo"></div>
      </body>
    </html>
  • #9152 9ec8500 Thanks @​ematipico! - Added new nursery lint rule noUnusedClasses for CSS. The rule detects CSS class selectors that are never referenced in any HTML or JSX file that imports the stylesheet. This is a project-domain rule that requires the module graph.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.0

Minor Changes

  • #9539 f0615fd Thanks @​ematipico! - Added a new reporter called concise. When --reporter=concise is passed the commands format, lint, check and ci, the diagnostics are printed in a compact manner:

    ! index.ts:2:10: lint/correctness/noUnusedImports: Several of these imports are unused.
    ! main.ts:9:7: lint/correctness/noUnusedVariables: This variable f is unused.
    × index.ts:8:5: lint/suspicious/noImplicitAnyLet: This variable implicitly has the any type.
    × main.ts:2:10: lint/suspicious/noRedeclare: Shouldn't redeclare 'z'. Consider to delete it or rename it.
    
  • #9495 2056b23 Thanks @​aviraldua93! - Added the useKeyWithClickEvents a11y lint rule for HTML files (.html, .vue, .svelte, .astro). This is a port of the existing JSX rule. The rule enforces that elements with an onclick handler also have at least one keyboard event handler (onkeydown, onkeyup, or onkeypress) to ensure keyboard accessibility.

    Inherently keyboard-accessible elements (<a>, <button>, <input>, <select>, <textarea>, <option>) are excluded, as are elements hidden from assistive technologies (aria-hidden) or with role="presentation" / role="none".

    <!-- Invalid: no keyboard handler -->
    <div onclick="handleClick()">Click me</div>
    <!-- Valid: has keyboard handler -->
    <div onclick="handleClick()" onkeydown="handleKeyDown()">Click me</div>
    <!-- Valid: inherently keyboard-accessible -->
    <button onclick="handleClick()">Submit</button>

  • #9152 9ec8500 Thanks @​ematipico! - Added new nursery lint rule noUndeclaredClasses for HTML, JSX, and SFC files (Vue, Astro, Svelte). The rule detects CSS class names used in class="..." (or className) attributes that are not defined in any <style> block or linked stylesheet reachable from the file.

    <!-- .typo is used but never defined -->
    <html>
      <head>
        <style>
          .button {
            color: blue;
          }
        </style>
      </head>
      <body>
        <div class="button typo"></div>
      </body>
    </html>
  • #9152 9ec8500 Thanks @​ematipico! - Added new nursery lint rule noUnusedClasses for CSS. The rule detects CSS class selectors that are never referenced in any HTML or JSX file that imports the stylesheet. This is a project-domain rule that requires the module graph.

    /* styles.css — .ghost is never used in any importing file */

... (truncated)

Commits

Updates @cursor/sdk from 1.0.15 to 1.0.22

Commits
Maintainer changes

This version was pushed to npm by luist18, a new releaser for @​cursor/sdk since your current version.


Updates @vitest/coverage-v8 from 4.1.6 to 4.1.9

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.1.9

🐞 Bug Fixes

View changes on GitHub

v4.1.8

   🐞 Bug Fixes

    View changes on GitHub

v4.1.7

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates dependency-cruiser from 17.4.0 to 17.4.3

Release notes

Sourced from dependency-cruiser's releases.

v17.4.3

👷 maintenance

  • fbea056c build(npm): updates external dependencies

v17.4.2

📖 documentation

  • ae0fcd40 doc: corrects typos

👷 maintenance

  • ccef0faf chore(npm): sets ignore-scripts on ci
  • ca1fe64a chore(npm): makes publishing staged only
  • d4dad0e9/ 1d1bc84a/ ca1fe64a build(npm): updates external dependencies

v17.4.1

This release was created on github, but not published to npmjs

Commits
  • 2584d9e 17.4.3
  • fbea056 build(npm): updates external dependencies
  • 6434625 17.4.2
  • 1759529 chore(ci): simplifies release flow again
  • 56e501f 17.4.1
  • ccef0fa chore(npm): sets ignore-scripts on ci
  • ca1fe64 chore(npm): makes publishing staged only
  • b5b2c36 build(npm): updates external dependencies
  • 1d1bc84 build(npm): updates external dependencies
  • ae0fcd4 doc: corrects typos
  • Additional commits viewable in compare view

Updates skills from 1.5.7 to 1.5.13

Release notes

Sourced from skills's releases.

v1.5.13

Changelog

  • Allow filtering skills by owner (#1505)
  • Add Eve subagent support to skills add/list/remove/update (#1467)

Contributors

@​haydenbleasel,@​quuu

v1.5.12

Changelog

  • Improve eve flow (#1459)
  • Support eve agent (#1458)
  • Fix local skills overwrite during all-agent installs (#1422)
  • Create manifest.json (#1409)

Contributors

@​mnhkahn,@​quuu

v1.5.11

Changelog

  • Create manifest.json (#1409)
  • feat: support per-repo self-hosted blob download URLs (zapier/connectors first) (#1403)
  • fix: use web-design-guidelines skill for docs instead of nextjs (#1381)

Contributors

@​andrewckor,@​ergunsh @​mnhkahn

v1.5.10

Changelog

  • fix: fall back to gh and ssh for github clone auth (#1350)
  • feat: add batch of agent integrations (#1349)
  • fix(list): attribute canonical global skills to universal agents (#1348)
  • feat: add kimi-code-cli agent support (#1347)
  • feat: add Antigravity CLI support (#1345)
  • fix(update): drop subpath append for non-shorthand sources (#1344)
  • Fix global update for git skill sources (#1343)
  • fix(agents): respect HERMES_HOME env var for Hermes Agent skill paths (#1341)
  • feat: Add run command for running a skill without installing (#1120)

Contributors

@​Weidows,@​daberni @​ergunsh,@​quuu

... (truncated)

Commits

Updates turbo from 2.9.14 to 2.9.18

Release notes

Sourced from turbo's releases.

Turborepo v2.9.18

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.9.17...v2.9.18

Turborepo v2.9.17

What's Changed

Changelog

... (truncated)

Commits

Updates @cloudflare/workers-types from 4.20260515.1 to 4.20260621.1

Commits

Updates wrangler from 4.91.0 to 4.103.0

Release notes

Sourced from wrangler's releases.

wrangler@4.103.0

Minor Changes

  • #14295 cfd6205 Thanks @​dario-piotrowicz! - Move unstable_getWorkerNameFromProject from wrangler to @cloudflare/workers-utils

    The unstable_getWorkerNameFromProject export has been removed from the wrangler package. This function is now available as getWorkerNameFromProject (without the unstable_ prefix) from @cloudflare/workers-utils. If you were importing this function from wrangler, update your import to use @cloudflare/workers-utils instead.

  • #14295 cfd6205 Thanks @​dario-piotrowicz! - Remove experimental autoconfig exports

    The experimental autoconfig exports (experimental_getDetailsForAutoConfig, experimental_runAutoConfig, experimental_AutoConfigFramework) have been removed. This logic has been moved to the @cloudflare/autoconfig package (without the experimental_ prefixes since the package itself is pre-v1).

Patch Changes

  • #14366 c6579d3 Thanks @​jamesopstad! - Resolve relative cf-worker entrypoint imports relative to the importing module

    When loading the experimental cloudflare.config.ts, a relative entrypoint imported with import ... with { type: "cf-worker" } (e.g. ./src/index.ts) is now anchored to the module where the import is written, rather than being passed through verbatim and later resolved against the top-level config file. This fixes incorrect resolution when the import lives in a file other than the entry config — for example a config that re-exports from a nested file.

    Bare specifiers (such as @scope/pkg) and virtual modules (such as virtual:foo) are still left unresolved so that consumers can apply their own resolution.

  • #14316 444b75e Thanks @​matingathani! - Prevent wrangler dev crash when source-mapping a truncated error chunk

    When a worker logs many errors in quick succession, the stderr chunks received by wrangler dev can be truncated mid-stack-frame, leaving a call site with an invalid column number. The source map library throws in that case, which was crashing the wrangler process entirely. The error is now caught and the original (un-source-mapped) text is returned instead.

  • #14118 b38823f Thanks @​aicayzer! - Fix Uint8Array step outputs in local Workflows being persisted with the full backing ArrayBuffer

    A Uint8Array returned from a Workflows step under wrangler dev was serialised together with its full underlying ArrayBuffer, causing a raw SQLITE_TOOBIG error at view sizes well below the documented 1MiB step-output limit. For example, a 200KB view sliced from an 800KB buffer (a common pattern from crypto.getRandomValues or arr.slice(...) on a larger pool) would fail. The view's bytes are now copied to a tight buffer before persistence, bringing local behaviour in line with production. Fixes #14101.

  • Updated dependencies [b38823f]:

    • miniflare@4.20260617.1

wrangler@4.102.0

Minor Changes

  • #14340 f6e49dd Thanks @​emily-shen! - Add cf-wrangler build delegate support

    The experimental cf-wrangler delegate binary now accepts build and emits the Build Output API directory through Wrangler's new-config build path. This lets parent tools invoke Wrangler's build-output implementation with cf-wrangler build instead of shelling out through the public Wrangler CLI.

  • #14324 36777db Thanks @​jamesopstad! - Add experimental --experimental-cf-build-output flag to wrangler build

    When used alongside --experimental-new-config, wrangler build now emits a self-contained Build Output API directory under .cloudflare/output/v0/ instead of delegating to wrangler deploy --dry-run.

Patch Changes

  • #14347 673b09e Thanks @​jamesopstad! - Update undici from 7.24.8 to 7.28.0

  • #14346 e930bd4 Thanks @​haidargit! - Bump ws from 8.20.1 to 8.21.0 to address GHSA-96hv-2xvq-fx4p

    GHSA-96hv-2xvq-fx4p / CVE-2026-48779 (high severity) reports a remote memory-exhaustion DoS in ws@<8.21.0: a peer sending a high volume of tiny fragments and data chunks over modest network traffic can crash a ws server or client via OOM. The fix shipped in ws@8.21.0 (commit 2b2abd45, released 2026-05-22), which also introduces the maxBufferedChunks and maxFragments options. This change bumps the workspace catalog entry so that miniflare, wrangler, and @cloudflare/vite-plugin all pick up the patched release.

  • #14314 5c3bb11 Thanks @​harryzcy! - Bump esbuild to 0.28.1

... (truncated)

Commits

Updates @types/react from 19.2.16 to 19.2.17

Commits

Updates @cloudflare/vitest-pool-workers from 0.16.6 to 0.16.20

Release notes

Sourced from @​cloudflare/vitest-pool-workers's releases.

@​cloudflare/vitest-pool-workers@​0.16.20

Patch Changes

  • #14398 c5014cc Thanks @​apeacock1991! - Add evictDurableObject and evictAllDurableObjects test helpers to cloudflare:test

    These helpers let you exercise how a Durable Object behaves across evictions in your tests. Eviction is graceful: durable storage is preserved, in-memory state is reset by tearing down the instance, hibernatable WebSockets are hibernated rather than closed, and eviction waits for in-flight requests to drain.

    import { evictDurableObject, evictAllDurableObjects } from "cloudflare:test";
    import { env } from "cloudflare:workers";
    const id = env.COUNTER.idFromName("my-counter");
    const stub = env.COUNTER.get(id);
    // Evict the Durable Object instance pointed to by a specific stub
    await evictDurableObject(stub);
    await evictDurableObject(stub, { webSockets: "close" });
    // Evict all currently-running Durable Objects in evictable namespaces
    await evictAllDurableObjects();

  • #14394 8a5cf8c Thanks @​Partha-Shankar! - fix(d1): escape migrationsTableName and filenames in SQLite queries

    D1 migration commands in both wrangler and @cloudflare/vitest-pool-workers interpolated the migrationsTableName config value and migration filenames directly into SQL strings without any escaping. This meant:

    • A table name such as my"table would produce invalid SQL in CREATE TABLE, SELECT, and INSERT statements, and
    • A migration filename containing an apostrophe (e.g. what's-new.sql) would break the INSERT INTO ... VALUES ('...') statement appended after each migration in wrangler.

    Both identifiers are now properly escaped before interpolation: migrationsTableName is wrapped in double-quotes with internal double-quotes doubled (SQL-standard identifier quoting), and migration filenames used as string literals have their single-quotes doubled before insertion.

  • Updated dependencies [5f40dd5, 34e0cef, 3b743c1, daa5389, 8a5cf8c]:

    • wrangler@4.105.0
    • miniflare@4.20260625.0

@​cloudflare/vitest-pool-workers@​0.16.19

Patch Changes

@​cloudflare/vitest-pool-workers@​0.16.18

Patch Changes

@​cloudflare/vitest-pool-workers@​0.16.17

... (truncated)

Changelog

Sourced from @​cloudflare/vitest-pool-workers's changelog.

0.16.20

Patch Changes

  • #14398 c5014cc Thanks @​apeacock1991! - Add evictDurableObject and evictAllDurableObjects test helpers to cloudflare:test

    These helpers let you exercise how a Durable Object behaves across evictions in your tests. Eviction is graceful: durable storage is preserved, in-memory state is reset by tearing down the instance, hibernatable WebSockets are hibernated rather than closed, and eviction waits for in-flight requests to drain.

    import { evictDurableObject, evictAllDurableObjects } from "cloudflare:test";
    import { env } from "cloudflare:workers";
    const id = env.COUNTER.idFromName("my-counter");
    const stub = env.COUNTER.get(id);
    // Evict the Durable Object instance pointed to by a specific stub
    await evictDurableObject(stub);
    await evictDurableObject(stub, { webSockets: "close" });
    // Evict all currently-running Durable Objects in evictable namespaces
    await evictAllDurableObjects();

  • #14394 8a5cf8c Thanks @​Partha-Shankar! - fix(d1): escape migrationsTableName and filenames in SQLite queries

    D1 migration commands in both wrangler and @cloudflare/vitest-pool-workers interpolated the migrationsTableName config value and migration filenames directly into SQL strings without any escaping. This meant:

    • A table name such as my"table would produce invalid SQL in CREATE TABLE, SELECT, and INSERT statements, and
    • A migration filename containing an apostrophe (e.g. what's-new.sql) would break the INSERT INTO ... VALUES ('...') statement appended after each migration in wrangler.

    Both identifiers are now properly escaped before interpolation: migrationsTableName is wrapped in double-quotes with internal double-quotes doubled (SQL-standard identifier quoting), and migration filenames used as string literals have their single-quotes doubled before insertion.

  • Updated dependencies [5f40dd5, 34e0cef, 3b743c1, daa5389, 8a5cf8c]:

    • wrangler@4.105.0
    • miniflare@4.20260625.0

0.16.19

Patch Changes

0.16.18

Patch Changes

... (truncated)

Commits

Updates @react-router/dev from 7.15.1 to 7.18.0

Release notes

Sourced from @​react-router/dev's releases.

v7.18.0

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7180

v7.17.0

See the changelog for release n...

Description has been truncated

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 29, 2026
@dependabot dependabot Bot requested a review from a team as a code owner June 29, 2026 06:47
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 29, 2026
@pkg-pr-new

pkg-pr-new Bot commented Jun 29, 2026

Copy link
Copy Markdown

Open in StackBlitz

@prisma-next/extension-author-tools

npm i https://pkg.pr.new/@prisma-next/extension-author-tools@883

@prisma-next/mongo-runtime

npm i https://pkg.pr.new/@prisma-next/mongo-runtime@883

@prisma-next/family-mongo

npm i https://pkg.pr.new/@prisma-next/family-mongo@883

@prisma-next/sql-runtime

npm i https://pkg.pr.new/@prisma-next/sql-runtime@883

@prisma-next/family-sql

npm i https://pkg.pr.new/@prisma-next/family-sql@883

@prisma-next/extension-arktype-json

npm i https://pkg.pr.new/@prisma-next/extension-arktype-json@883

@prisma-next/middleware-cache

npm i https://pkg.pr.new/@prisma-next/middleware-cache@883

@prisma-next/mongo

npm i https://pkg.pr.new/@prisma-next/mongo@883

@prisma-next/extension-paradedb

npm i https://pkg.pr.new/@prisma-next/extension-paradedb@883

@prisma-next/extension-pgvector

npm i https://pkg.pr.new/@prisma-next/extension-pgvector@883

@prisma-next/extension-postgis

npm i https://pkg.pr.new/@prisma-next/extension-postgis@883

@prisma-next/postgres

npm i https://pkg.pr.new/@prisma-next/postgres@883

@prisma-next/sql-orm-client

npm i https://pkg.pr.new/@prisma-next/sql-orm-client@883

@prisma-next/sqlite

npm i https://pkg.pr.new/@prisma-next/sqlite@883

@prisma-next/extension-supabase

npm i https://pkg.pr.new/@prisma-next/extension-supabase@883

@prisma-next/target-mongo

npm i https://pkg.pr.new/@prisma-next/target-mongo@883

@prisma-next/adapter-mongo

npm i https://pkg.pr.new/@prisma-next/adapter-mongo@883

@prisma-next/driver-mongo

npm i https://pkg.pr.new/@prisma-next/driver-mongo@883

@prisma-next/contract

npm i https://pkg.pr.new/@prisma-next/contract@883

@prisma-next/utils

npm i https://pkg.pr.new/@prisma-next/utils@883

@prisma-next/config

npm i https://pkg.pr.new/@prisma-next/config@883

@prisma-next/errors

npm i https://pkg.pr.new/@prisma-next/errors@883

@prisma-next/framework-components

npm i https://pkg.pr.new/@prisma-next/framework-components@883

@prisma-next/operations

npm i https://pkg.pr.new/@prisma-next/operations@883

@prisma-next/ts-render

npm i https://pkg.pr.new/@prisma-next/ts-render@883

@prisma-next/contract-authoring

npm i https://pkg.pr.new/@prisma-next/contract-authoring@883

@prisma-next/ids

npm i https://pkg.pr.new/@prisma-next/ids@883

@prisma-next/psl-parser

npm i https://pkg.pr.new/@prisma-next/psl-parser@883

@prisma-next/psl-printer

npm i https://pkg.pr.new/@prisma-next/psl-printer@883

@prisma-next/cli

npm i https://pkg.pr.new/@prisma-next/cli@883

@prisma-next/cli-telemetry

npm i https://pkg.pr.new/@prisma-next/cli-telemetry@883

@prisma-next/config-loader

npm i https://pkg.pr.new/@prisma-next/config-loader@883

@prisma-next/emitter

npm i https://pkg.pr.new/@prisma-next/emitter@883

@prisma-next/language-server

npm i https://pkg.pr.new/@prisma-next/language-server@883

@prisma-next/migration-tools

npm i https://pkg.pr.new/@prisma-next/migration-tools@883

prisma-next

npm i https://pkg.pr.new/prisma-next@883

@prisma-next/vite-plugin-contract-emit

npm i https://pkg.pr.new/@prisma-next/vite-plugin-contract-emit@883

@prisma-next/mongo-codec

npm i https://pkg.pr.new/@prisma-next/mongo-codec@883

@prisma-next/mongo-contract

npm i https://pkg.pr.new/@prisma-next/mongo-contract@883

@prisma-next/mongo-value

npm i https://pkg.pr.new/@prisma-next/mongo-value@883

@prisma-next/mongo-contract-psl

npm i https://pkg.pr.new/@prisma-next/mongo-contract-psl@883

@prisma-next/mongo-contract-ts

npm i https://pkg.pr.new/@prisma-next/mongo-contract-ts@883

@prisma-next/mongo-emitter

npm i https://pkg.pr.new/@prisma-next/mongo-emitter@883

@prisma-next/mongo-schema-ir

npm i https://pkg.pr.new/@prisma-next/mongo-schema-ir@883

@prisma-next/mongo-query-ast

npm i https://pkg.pr.new/@prisma-next/mongo-query-ast@883

@prisma-next/mongo-orm

npm i https://pkg.pr.new/@prisma-next/mongo-orm@883

@prisma-next/mongo-query-builder

npm i https://pkg.pr.new/@prisma-next/mongo-query-builder@883

@prisma-next/mongo-lowering

npm i https://pkg.pr.new/@prisma-next/mongo-lowering@883

@prisma-next/mongo-wire

npm i https://pkg.pr.new/@prisma-next/mongo-wire@883

@prisma-next/sql-contract

npm i https://pkg.pr.new/@prisma-next/sql-contract@883

@prisma-next/sql-errors

npm i https://pkg.pr.new/@prisma-next/sql-errors@883

@prisma-next/sql-operations

npm i https://pkg.pr.new/@prisma-next/sql-operations@883

@prisma-next/sql-schema-ir

npm i https://pkg.pr.new/@prisma-next/sql-schema-ir@883

@prisma-next/sql-contract-psl

npm i https://pkg.pr.new/@prisma-next/sql-contract-psl@883

@prisma-next/sql-contract-ts

npm i https://pkg.pr.new/@prisma-next/sql-contract-ts@883

@prisma-next/sql-contract-emitter

npm i https://pkg.pr.new/@prisma-next/sql-contract-emitter@883

@prisma-next/sql-lane-query-builder

npm i https://pkg.pr.new/@prisma-next/sql-lane-query-builder@883

@prisma-next/sql-relational-core

npm i https://pkg.pr.new/@prisma-next/sql-relational-core@883

@prisma-next/sql-builder

npm i https://pkg.pr.new/@prisma-next/sql-builder@883

@prisma-next/target-postgres

npm i https://pkg.pr.new/@prisma-next/target-postgres@883

@prisma-next/target-sqlite

npm i https://pkg.pr.new/@prisma-next/target-sqlite@883

@prisma-next/adapter-postgres

npm i https://pkg.pr.new/@prisma-next/adapter-postgres@883

@prisma-next/adapter-sqlite

npm i https://pkg.pr.new/@prisma-next/adapter-sqlite@883

@prisma-next/driver-postgres

npm i https://pkg.pr.new/@prisma-next/driver-postgres@883

@prisma-next/driver-sqlite

npm i https://pkg.pr.new/@prisma-next/driver-sqlite@883

commit: 15c7aa1

@github-actions

github-actions Bot commented Jun 29, 2026

Copy link
Copy Markdown

size-limit report 📦

Path Size
postgres / no-emit 160.2 KB (0%)
postgres / emit 147.39 KB (0%)
mongo / no-emit 96.67 KB (0%)
mongo / emit 89.38 KB (0%)
cf-worker / no-emit 188.28 KB (+0.02% 🔺)
cf-worker / emit 173.72 KB (+0.02% 🔺)

@dependabot dependabot Bot changed the title chore(deps-dev)(deps-dev): bump the dev-deps group with 13 updates chore(deps-dev)(deps-dev): bump the dev-deps group across 1 directory with 13 updates Jun 30, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/main/dev-deps-f0ac018cb8 branch 2 times, most recently from 18f24ef to d96028d Compare July 2, 2026 06:09
… with 13 updates

Bumps the dev-deps group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.15` | `2.5.0` |
| [@cursor/sdk](https://github.com/cursor/cursor) | `1.0.15` | `1.0.22` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.6` | `4.1.9` |
| [dependency-cruiser](https://github.com/sverweij/dependency-cruiser) | `17.4.0` | `17.4.3` |
| [skills](https://github.com/vercel-labs/skills) | `1.5.7` | `1.5.13` |
| [turbo](https://github.com/vercel/turborepo) | `2.9.14` | `2.9.18` |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `4.20260515.1` | `4.20260621.1` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.91.0` | `4.103.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.16` | `19.2.17` |
| [@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers) | `0.16.6` | `0.16.20` |
| [@react-router/dev](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev) | `7.15.1` | `7.18.0` |
| [@prisma/compute-sdk](https://github.com/prisma/project-compute) | `0.17.0` | `0.28.0` |
| [@prisma/management-api-sdk](https://github.com/prisma/pdp-control-plane/tree/HEAD/packages/management-api-sdk) | `1.29.0` | `1.41.0` |



Updates `@biomejs/biome` from 2.4.15 to 2.5.0
- [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.5.0/packages/@biomejs/biome)

Updates `@cursor/sdk` from 1.0.15 to 1.0.22
- [Commits](https://github.com/cursor/cursor/commits)

Updates `@vitest/coverage-v8` from 4.1.6 to 4.1.9
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.9/packages/coverage-v8)

Updates `dependency-cruiser` from 17.4.0 to 17.4.3
- [Release notes](https://github.com/sverweij/dependency-cruiser/releases)
- [Changelog](https://github.com/sverweij/dependency-cruiser/blob/main/CHANGELOG.md)
- [Commits](sverweij/dependency-cruiser@v17.4.0...v17.4.3)

Updates `skills` from 1.5.7 to 1.5.13
- [Release notes](https://github.com/vercel-labs/skills/releases)
- [Commits](vercel-labs/skills@v1.5.7...v1.5.13)

Updates `turbo` from 2.9.14 to 2.9.18
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.9.14...v2.9.18)

Updates `@cloudflare/workers-types` from 4.20260515.1 to 4.20260621.1
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `wrangler` from 4.91.0 to 4.103.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.103.0/packages/wrangler)

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

Updates `@cloudflare/vitest-pool-workers` from 0.16.6 to 0.16.20
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/vitest-pool-workers/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vitest-pool-workers@0.16.20/packages/vitest-pool-workers)

Updates `@react-router/dev` from 7.15.1 to 7.18.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dev/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@react-router/dev@7.18.0/packages/react-router-dev)

Updates `@prisma/compute-sdk` from 0.17.0 to 0.28.0
- [Commits](https://github.com/prisma/project-compute/commits)

Updates `@prisma/management-api-sdk` from 1.29.0 to 1.41.0
- [Commits](https://github.com/prisma/pdp-control-plane/commits/HEAD/packages/management-api-sdk)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@cloudflare/vitest-pool-workers"
  dependency-version: 0.16.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 4.20260619.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@cursor/sdk"
  dependency-version: 1.0.19
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@prisma/compute-sdk"
  dependency-version: 0.28.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@prisma/management-api-sdk"
  dependency-version: 1.41.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@react-router/dev"
  dependency-version: 7.18.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@types/react"
  dependency-version: 19.2.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: dependency-cruiser
  dependency-version: 17.4.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: skills
  dependency-version: 1.5.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: turbo
  dependency-version: 2.9.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: wrangler
  dependency-version: 4.102.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/main/dev-deps-f0ac018cb8 branch from d96028d to 15c7aa1 Compare July 2, 2026 16:53
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants