Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 12, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@auth/prisma-adapter (source) 2.9.0 -> 2.9.1 age adoption passing confidence
@prisma/client (source) 6.6.0 -> 6.8.2 age adoption passing confidence
@shikijs/transformers (source) 3.3.0 -> 3.4.2 age adoption passing confidence
@storybook/addon-a11y (source) 8.6.12 -> 8.6.14 age adoption passing confidence
@storybook/addon-essentials (source) 8.6.12 -> 8.6.14 age adoption passing confidence
@storybook/addon-interactions (source) 8.6.12 -> 8.6.14 age adoption passing confidence
@storybook/addon-links (source) 8.6.12 -> 8.6.14 age adoption passing confidence
@storybook/docs-tools (source) 8.6.12 -> 8.6.14 age adoption passing confidence
@storybook/react (source) 8.6.12 -> 8.6.14 age adoption passing confidence
@storybook/react-vite (source) 8.6.12 -> 8.6.14 age adoption passing confidence
@storybook/sveltekit (source) 8.6.12 -> 8.6.14 age adoption passing confidence
@sveltejs/adapter-auto (source) 6.0.0 -> 6.0.1 age adoption passing confidence
@sveltejs/kit (source) 2.20.8 -> 2.21.1 age adoption passing confidence
@testing-library/svelte 5.2.7 -> 5.2.8 age adoption passing confidence
@vitest/coverage-v8 (source) 3.1.2 -> 3.1.4 age adoption passing confidence
effect (source) 3.14.18 -> 3.16.2 age adoption passing confidence
flexsearch 0.8.158 -> 0.8.204 age adoption passing confidence
happy-dom 17.4.6 -> 17.5.6 age adoption passing confidence
lefthook 1.11.12 -> 1.11.13 age adoption passing confidence
lucide-react (source) 0.507.0 -> 0.511.0 age adoption passing confidence
lucide-solid (source) 0.507.0 -> 0.511.0 age adoption passing confidence
lucide-vue-next (source) 0.507.0 -> 0.511.0 age adoption passing confidence
match-sorter 8.0.1 -> 8.0.2 age adoption passing confidence
next (source) 15.3.1 -> 15.3.2 age adoption passing confidence
next-auth (source) 5.0.0-beta.27 -> 5.0.0-beta.28 age adoption passing confidence
nuxt (source) 3.17.2 -> 3.17.4 age adoption passing confidence
prettier-plugin-svelte 3.3.3 -> 3.4.0 age adoption passing confidence
prisma (source) 6.6.0 -> 6.8.2 age adoption passing confidence
react-hook-form (source) 7.56.2 -> 7.56.4 age adoption passing confidence
shiki (source) 3.3.0 -> 3.4.2 age adoption passing confidence
solid-js (source) 1.9.6 -> 1.9.7 age adoption passing confidence
storybook (source) 8.6.12 -> 8.6.14 age adoption passing confidence
svelte (source) 5.28.2 -> 5.33.9 age adoption passing confidence
svelte-check 4.1.7 -> 4.2.1 age adoption passing confidence
ts-pattern 5.7.0 -> 5.7.1 age adoption passing confidence
tsup (source) 8.4.0 -> 8.5.0 age adoption passing confidence
turbo (source) 2.5.2 -> 2.5.3 age adoption passing confidence
velite 0.2.2 -> 0.2.4 age adoption passing confidence
vercel (source) 41.7.0 -> 41.7.8 age adoption passing confidence
vite-plugin-dts 4.5.3 -> 4.5.4 age adoption passing confidence
vitest (source) 3.1.2 -> 3.1.4 age adoption passing confidence
vue (source) 3.5.13 -> 3.5.16 age adoption passing confidence

Release Notes

nextauthjs/next-auth (@​auth/prisma-adapter)

v2.9.1

Compare Source

Bugfixes

  • adapter-prisma: import PrismaClientKnownRequestError for edge runtime compatibility (#​12755) (c7409f3)
prisma/prisma (@​prisma/client)

v6.8.2

Compare Source

Today, we are issuing the 6.8.2 patch release. It fully resolves an issue with the prisma init and prisma dev commands for some Windows users who were still facing problems after the previous incomplete fix in version 6.8.1.

Fixes:

v6.8.1

Compare Source

Today, we are issuing the 6.8.1 patch release. It fixes an issue with the prisma init and prisma dev commands on Windows.

Fixes

v6.8.0

Compare Source

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

🌟 Help us spread the word about Prisma by starring the repo ☝️ or posting on X about the release.

Highlights

Local development with Prisma Postgres via prisma dev (Early Access)

In this release, we're releasing a way to develop against Prisma Postgres locally — no Docker required!

To get started, run the new prisma dev command:

npx prisma dev # starts a local Prisma Postgres server

This command spins up a local Prisma Postgres instance and prints the connection URL that you'll need to set as the url of your datasource block to point to a local Prisma Postgres instance. It looks similar to this:

datasource db {
  provider = "postgresql"
  url      = "prisma+postgres://localhost:51213/?api_key=ey..." 
}

You can then run migrations and execute queries against this local Prisma Postgres instance as with any remote one. Note that you need to keep the prisma dev process running in order to interact with the local Prisma Postgres instance.

📚 Learn more in the docs.

Native Deno support in prisma-client generator (Preview)

In this release, we're removing the deno Preview feature from the prisma-client-js generator. If you want to use Prisma ORM with Deno, you can now do so with the new prisma-client generator:

generator client {
  provider = "prisma-client"
  output   = "../src/generated/prisma"
  runtime = "deno"
}

📚 Learn more in the docs.

VS Code Agent Mode: AI support with your database workflows

Have you tried agent mode in VS Code already?

"The agent acts as an autonomous pair programmer that performs multi-step coding tasks at your command, such as analyzing your codebase, proposing file edits, and running terminal commands."

As of this release, your agent is capable of supporting you with your database workflows more than ever! If you're using VS Code and have the Prisma VS Code extension installed, your agent now is able to help you with your database workflows, such as:

  • checking the status of your migrations (e.g. telling you if migrations haven't been applied)
  • creating and running schema migrations for you
  • authenticating you with the Prisma Console
  • provisioning new Prisma Postgres instances so you can start coding right away

All you need to do is make sure you're using the latest version of Prisma's VS Code extension and your agent is ready to go 🚀

📚 Learn more in the docs.

Other news

You voted, we acted: New Singapore region for Prisma Postgres

We recently ran a poll where we asked you which region you'd like to see next for Prisma Postgres. The majority vote went to Asia Pacific (Singapore), so as of today, you're able to spin up new Prisma Postgres instances in the ap-southeast-1 region.

We're not stopping here — keep an eye out on X for another poll asking for your favorite regions that we should add!

v6.7.0

Compare Source

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

🌟 Help us spread the word about Prisma by starring the repo ☝️ or posting on X about the release.

Highlights

Prisma ORM without Rust engines (Early Access)

If you're a regular visitor of our company blog, you may already know that we're currently working on moving the core of Prisma from Rust to TypeScript. We have written extensively about why we're moving away from Rust and already shared the first measurements of performance boosts we saw from the re-write.

This re-write is not just a move from one programming language to another. It fundamentally improves the architecture of Prisma ORM and replaces the Query Engine (which is written in Rust and deployed as a standalone binary) with a much leaner and more efficient approach that we call Query Compiler.

In this release, we're excited to give you Early Access to the new Query Compiler for PostgreSQL and SQLite database 🥳 Support for more database will follow very soon!

To use the new "Rust-free" version of Prisma ORM, add the queryCompiler (new) and driverAdapters feature flags to your client generator:

generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["queryCompiler", "driverAdapters"]
  output          = "../generated/prisma"
}

Now run prisma generate to re-generate Prisma Client. If you didn't use a driver adapter before, you'll need to install one. For example, the one for PostgreSQL:

npm install @​prisma/adapter-pg

Once installed, you can instantiate PrismaClient as follows:

import { PrismaPg } from '@​prisma/adapter-pg'
import { PrismaClient } from './generated/prisma'

const adapter = new PrismaPg({ connectionString: process.env.DATABASE_URL })
const prisma = new PrismaClient({ adapter })

This version of PrismaClient doesn't have a Query Engine binary and you can use it in the exact same way as before.

📚 Learn more in the docs.

Support for better-sqlite3 JavaScript driver (Preview)

Driver adapters are Prisma ORM's way of letting you use JS-native drivers (like pg) to interact with your database. In this release, we're introducing a new driver adapter for using the better-sqlite3 package, so you can now interact with SQLite database in a JS-native way.

To use it, first enable the driverAdapters Preview feature flag in on your client generator, then install these libraries:

npm install @​prisma/adapter-better-sqlite3

Now you can instantiate Prisma Client as follows:

import { PrismaBetterSQLite3 } from '@​prisma/adapter-better-sqlite3';
import { PrismaClient } from './generated/prisma';

const adapter = new PrismaBetterSQLite3({
  url: "file:./prisma/dev.db"
});
const prisma = new PrismaClient({ adapter });

📚 Learn more in the docs.

Multi-file Prisma schemas are now production-ready

The prismaSchemaFolder Preview feature is moving into General Availability 🎉 With that change, Prisma ORM now by default supports splitting your Prisma schema file and e.g. lets you organize your schema as follows:

prisma/schema.prisma → defines data source and generator

datasource db {
  provider = "postgresql"
  url      = env("DATABASE_URL")
}

generator client {
  provider = "prisma-client-js"
}

prisma/models/posts.prisma → defines Post model

model Post {
  id        Int     @​id @​default(autoincrement())
  title     String
  content   String?
  published Boolean @​default(false)
  author    User?   @​relation(fields: [authorId], references: [id])
  authorId  Int?
}

prisma/models/users.prisma → defines User model

model User {
  id    Int     @​id @​default(autoincrement())
  email String  @​unique
  name  String?
  posts Post[]
}

⚠️ Note that there have been breaking changes to the prismaSchemaFolder Preview feature in the last 6.6.0 release. If you've been using this feature to split your Prisma schema, make sure to read the release notes and update your project accordingly.

📚 Learn more in the docs.

Splitting generated output with new prisma-client generator (Preview)

With the prisma-client-js generator, the generated Prisma Client library is put into a single index.d.ts file. This sometimes led to issues with large schemas where the size of the generated output could slow down code editors and breaking auto-complete.

As of this release, our new prisma-client generator (that was released in 6.6.0) now splits the generated Prisma Client library into multiple files and thus avoids the problems of a single, large output file.

Also: As a bonus, we now ensure that generated files do not raise any ESLint and TypeScript errors!

Before

generated/
└── prisma
    ├── client.ts
    ├── index.ts # -> this is split into multiple files in 6.7.0
    └── libquery_engine-darwin.dylib.node

After

generated/
└── prisma
    ├── client.ts
    ├── commonInputTypes.ts
    ├── enums.ts
    ├── index.ts
    ├── internal
    │   ├── class.ts
    │   └── prismaNamespace.ts
    ├── libquery_engine-darwin.dylib.node
    ├── models
    │   ├── Post.ts
    │   └── User.ts
    └── models.ts

📚 Learn more in the docs.

Company news

Our team has been busy shipping more than just the ORM! Check out these articles to learn what else we've been up to recently:

shikijs/shiki (@​shikijs/transformers)

v3.4.2

Compare Source

   🚀 Features
    View changes on GitHub

v3.4.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v3.4.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
storybookjs/storybook (@​storybook/addon-a11y)

v8.6.14

Compare Source

v8.6.13

Compare Source

storybookjs/storybook (@​storybook/addon-essentials)

v8.6.14

Compare Source

v8.6.13

Compare Source

storybookjs/storybook (@​storybook/addon-links)

v8.6.14

Compare Source

v8.6.13

Compare Source

sveltejs/kit (@​sveltejs/adapter-auto)

v6.0.1

Compare Source

Patch Changes
sveltejs/kit (@​sveltejs/kit)

v2.21.1

Compare Source

Patch Changes
  • chore: clarify which functions handleFetch affects (#​13788)

  • fix: ensure $env and $app/environment are correctly set while analysing server nodes (#​13790)

v2.21.0

Compare Source

Minor Changes
  • feat: allow running client-side code at the top-level of universal pages/layouts when SSR is disabled and page options are only boolean or string literals (#​13684)
Patch Changes
  • chore: remove import-meta-resolve dependency (#​13629)

  • fix: remove component code from server nodes that are never used for SSR (#​13684)

testing-library/svelte-testing-library (@​testing-library/svelte)

v5.2.8

Compare Source

Bug Fixes
  • configure dom-testing-library to flush Svelte changes (#​439) (492dbd1)
vitest-dev/vitest (@​vitest/coverage-v8)

v3.1.4

Compare Source

v3.1.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
Effect-TS/effect (effect)

v3.16.2

[Compare Source](https://redirect.github.com/Effect-TS/effect/compare/effect@3.16.1...ef


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone UTC, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel
Copy link

vercel bot commented May 12, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated (UTC)
ark-docs ❌ Failed (Inspect) May 29, 2025 6:23pm

@pkg-pr-new
Copy link

pkg-pr-new bot commented May 12, 2025

Open in StackBlitz

npm i https://pkg.pr.new/chakra-ui/ark/@ark-ui/react@3467
npm i https://pkg.pr.new/chakra-ui/ark/@ark-ui/solid@3467
npm i https://pkg.pr.new/chakra-ui/ark/@ark-ui/svelte@3467
npm i https://pkg.pr.new/chakra-ui/ark/@ark-ui/vue@3467

commit: 1da9fe6

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6ea501e to 4ecfd57 Compare May 12, 2025 07:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4ecfd57 to 35a9115 Compare May 12, 2025 11:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 35a9115 to eb63dd0 Compare May 12, 2025 16:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from eb63dd0 to 87cb8ee Compare May 12, 2025 18:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 87cb8ee to 5a26743 Compare May 12, 2025 22:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5a26743 to e878edf Compare May 13, 2025 03:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e878edf to 05f31a0 Compare May 13, 2025 16:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 05f31a0 to 3658ec4 Compare May 13, 2025 22:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3658ec4 to a59409b Compare May 14, 2025 06:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a59409b to 19aac86 Compare May 14, 2025 12:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 19aac86 to 3e1b173 Compare May 14, 2025 19:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3e1b173 to 8b11dd7 Compare May 14, 2025 22:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8b11dd7 to dbca69f Compare May 15, 2025 03:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1f95b44 to cd91859 Compare May 26, 2025 16:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cd91859 to 108642d Compare May 26, 2025 20:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 108642d to 382fb71 Compare May 27, 2025 01:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 382fb71 to 6ed0308 Compare May 27, 2025 13:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6ed0308 to 3fe12d1 Compare May 27, 2025 15:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3fe12d1 to 9a8a86a Compare May 27, 2025 16:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9a8a86a to f8e5b2a Compare May 27, 2025 22:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f8e5b2a to 597411d Compare May 28, 2025 04:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 597411d to a69e58d Compare May 28, 2025 20:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a69e58d to 226ff7b Compare May 29, 2025 01:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 226ff7b to b275201 Compare May 29, 2025 05:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b275201 to cca047f Compare May 29, 2025 11:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cca047f to 7dd205f Compare May 29, 2025 15:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants