Commit 7434b19
authored
fix(deps): update all non-major dependencies (#115)
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| [@prisma/client](https://www.prisma.io)
([source](https://redirect.github.com/prisma/prisma/tree/HEAD/packages/client))
| [`6.10.1` ->
`6.11.1`](https://renovatebot.com/diffs/npm/@prisma%2fclient/6.10.1/6.11.1)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node))
| [`22.15.34` ->
`22.16.0`](https://renovatebot.com/diffs/npm/@types%2fnode/22.15.34/22.16.0)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [eslint](https://eslint.org)
([source](https://redirect.github.com/eslint/eslint)) | [`9.30.0` ->
`9.30.1`](https://renovatebot.com/diffs/npm/eslint/9.30.0/9.30.1) |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [globals](https://redirect.github.com/sindresorhus/globals) |
[`16.2.0` ->
`16.3.0`](https://renovatebot.com/diffs/npm/globals/16.2.0/16.3.0) |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [prisma](https://www.prisma.io)
([source](https://redirect.github.com/prisma/prisma/tree/HEAD/packages/cli))
| [`6.10.1` ->
`6.11.1`](https://renovatebot.com/diffs/npm/prisma/6.10.1/6.11.1) |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint)
([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint))
| [`8.35.0` ->
`8.35.1`](https://renovatebot.com/diffs/npm/typescript-eslint/8.35.0/8.35.1)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
<details>
<summary>prisma/prisma (@​prisma/client)</summary>
###
[`v6.11.1`](https://redirect.github.com/prisma/prisma/releases/tag/6.11.1)
[Compare
Source](https://redirect.github.com/prisma/prisma/compare/6.11.0...6.11.1)
Today, we are issuing a 6.11.1 patch release.
##### Bug fixes
- In Prisma ORM version 6.11.0, we shipped a bug fix for Prisma that
allows using Prisma Postgres with direct TCP connections with Prisma
Driver Adapters. This fix, however, required refactoring the of the
Prisma Client initialization logic, and while several test cases were
added, an edge case was missing, causing
[https://github.com/prisma/prisma/issues/27569](https://redirect.github.com/prisma/prisma/issues/27569).
Namely, using `@prisma/client` with `@prisma/extension-accelerate` on a
`prisma+postgres://...` connection string, while generating the Prisma
Client definitions via `prisma generate`, resulted in a
`PrismaClientInitializationError`.
This is now fixed, so we highly recommend upgrading to version 6.11.1.
Reminder: when using Prisma Accelerate, we highly encourage you to
generate your Prisma Client definitions via `prisma generate
--no-engine`.
- We've fixed an issue that would occur when using arrays as aggregation
fields with the query compiler. These queries would fail with a
confusing data mapping error. They should now work as expected.
###
[`v6.11.0`](https://redirect.github.com/prisma/prisma/releases/tag/6.11.0)
[Compare
Source](https://redirect.github.com/prisma/prisma/compare/6.10.1...6.11.0)
Today, we are excited to share the `6.11.0` stable release 🎉
**🌟 Star this repo for notifications about new releases, bug fixes &
features — or [follow us on X](https://pris.ly/x)!**
### Highlights
##### Prisma ORM without Rust engines for MySQL/MariaDB, Neon &
CockroachDB (Preview)
We are in the process of [removing the Rust engines from Prisma
ORM](https://www.prisma.io/blog/from-rust-to-typescript-a-new-chapter-for-prisma-orm).
This week, we're adding Preview support for the Rust-free Prisma ORM
version for MySQL via a new `@prisma/adapter-mariadb` driver adapter, as
well as for Neon and CockroachDB via the already existing
`@prisma/adapter-neon` and `@prisma/adapter-pg` adapters.
> **Note:** The
[`mariadb`](https://redirect.github.com/mariadb-corporation/mariadb-connector-nodejs)
driver is compatible with all MySQL databases. It's the recommended
option to use MySQL with Prisma ORM when using [driver
adapters.](https://www.prisma.io/docs/orm/overview/databases/database-drivers)
To use it, enable the `queryCompiler` and `driverAdapters` feature flags
on your `generator` block, install the driver adapter for your database
and start querying!
```prisma
generator client {
provider = "prisma-client-js" // or `prisma-client`
output = "../generated/prisma"
previewFeatures = ["queryCompiler", "driverAdapters"]
}
```
📚Learn more in the
[docs](https://www.prisma.io/docs/orm/prisma-client/setup-and-configuration/no-rust-engine).
##### Stop and remove local Prisma Postgres instances via CLI
You can start a *local* Prisma Postgres instance using the `prisma dev
--name mydb` command or via the [Prisma VS Code extension
UI](https://www.prisma.io/docs/postgres/integrations/vscode-extension#database-management-ui).
If you start a local instance via the Prisma CLI, you can simply kill
the process to stop the instance. However, when you start instances via
the VS Code extension UI, you could also only stop them via the UI—not
via the CLI.
This changes in this release: You can now also *stop* local Prisma
Postgres instances and *remove* them from your file system via the
Prisma CLI:
- `prisma dev stop <globs>`: Stops one or more local Prisma Postgres
instances
- `prisma dev rm <globs>`: Removes one or more local Prisma Postgres
instances from your file system
📚Learn more in the
[docs](https://www.prisma.io/docs/postgres/database/local-development).
##### Ready-to-run examples for new `prisma-client` generator
Our new
[`prisma-client`](https://www.prisma.io/docs/orm/prisma-schema/overview/generators#prisma-client-early-access)
generator is more flexible, provides more control about the generated
code, works with various JS runtimes and comes with ESM support
out-of-the-box.
To make it easier for you to try it out, we created a few ready-to-run
example projects so you can see the new generator in action:
-
[`nextjs-starter-webpack`](https://redirect.github.com/prisma/prisma-examples/tree/latest/generator-prisma-client/nextjs-starter-webpack)
-
[`nextjs-starter-turbopack`](https://redirect.github.com/prisma/prisma-examples/tree/latest/generator-prisma-client/nextjs-starter-turbopack)
-
[`neextjs-starter-webpack-monorepo`](https://redirect.github.com/prisma/prisma-examples/tree/latest/generator-prisma-client/neextjs-starter-webpack-monorepo)
-
[`nextjs-starter-webpack-with-middleware`](https://redirect.github.com/prisma/prisma-examples/tree/latest/generator-prisma-client/nextjs-starter-webpack-with-middleware)
##### Bug fixes in VS Code embedded Prisma Studio
Have you already seen the new look of Prisma Studio when it's embedded
directly in VS Code via the [Prisma VS Code
extension](https://marketplace.visualstudio.com/items?itemName=Prisma.prisma)?
In this release, we fixed a few bugs that you all have reported:
- Fixed an issue with writing and deleting from tables with UUIDs
- Fixed an issue with saving data in fullscreen mode
- Fixed an issue with updating the schema when the refresh button is
clicked
Let us know in case you hit any snags with Prisma ORM by [opening a new
issue](https://redirect.github.com/prisma/prisma/issues/new).
### Other news
##### Embed Prisma Studio in your own tools and projects
If you're using Prisma Postgres (yourself or by offering it to your own
users), you can now embed Prisma Studio to offer an amazing data editing
experience to your users via the
[`@prisma/studio-core`](https://www.npmjs.com/package/@​prisma/studio-core)
npm package.

[Try out the demo](https://www.github.com/prisma/studio-core-demo) that
shows how to integrate Prisma Studio in your own apps!
##### Predict your Prisma Postgres bill with our new Pricing Calculator
Prisma Postgres comes with a pricing model that seems too simple to be
true: You're charged based on *storage* and *operations*—not CPU,
compute hours or any other resource-based metrics.
While it's simple, it may feel unfamiliar because it's so different from
existing pricing models. To understand how much you'd pay for Prisma
Postgres running your app, you can now use our [Pricing
Calculator](https://www.prisma.io/pricing?calculator). Put in the
predicted storage and number of operations to see how much you're going
to be charged on each plan.

##### Prisma Postgres now available for *all* Postgres templates in
Vercel Marketplace
On vercel.com/templates, you can find lots of one-click-deploy
application templates! We recently worked with the Vercel team to get
Prisma Postgres working with *all* templates requiring a PostgreSQL
database, for example:
- [Next.js SaaS Starter with Drizzle
ORM](https://vercel.com/templates/authentication/next-js-saas-starter)
- [Postgres SvelteKit Starter with
Postgres.js](https://vercel.com/templates/svelte/postgres-sveltekit)
- [Next.js + PostgreSQL Auth Starter with Drizzle
ORM](https://vercel.com/templates/authentication/drizzle-postgres-auth-starter)
- … and a lot more
##### Connecting to Prisma Postgres with any tool is now faster
We recently enabled the option to connect to Prisma Postgres with any
tool via [direct TCP
connections](https://www.prisma.io/docs/postgres/database/direct-connections).
In this release, we have reduced the connection latency so your first
request is now faster.
##### New region for Prisma Postgres: Frankfurt (`eu-central-1`)
We keep expanding Prisma Postgres availability across the globe! After
having added San Francisco just a few weeks ago, we're now adding
Frankfurt based on another [poll we ran on
X](https://x.com/prisma/status/1932784967945499021). Here are all the
regions where you can spin up Prisma Postgres instances today:
- **`eu-central-1`: Frankfurt (*new!*)**
- `eu-west-3`: Paris
- `us-west-1`: San Francisco
- `us-east-1`: North Virginia
- `ap-northeast-1`: Tokyo
- `ap-southeast-1`: Singapore
[Keep an eye on our X account](https://pris.ly/x) to take part in the
poll and vote for the next availability zone of Prisma Postgres!
</details>
<details>
<summary>eslint/eslint (eslint)</summary>
###
[`v9.30.1`](https://redirect.github.com/eslint/eslint/compare/v9.30.0...6769b5fa11ecfb2c2cf78472d3d90564a1e01d3c)
[Compare
Source](https://redirect.github.com/eslint/eslint/compare/v9.30.0...v9.30.1)
</details>
<details>
<summary>sindresorhus/globals (globals)</summary>
###
[`v16.3.0`](https://redirect.github.com/sindresorhus/globals/releases/tag/v16.3.0)
[Compare
Source](https://redirect.github.com/sindresorhus/globals/compare/v16.2.0...v16.3.0)
- Update globals
([#​304](https://redirect.github.com/sindresorhus/globals/issues/304))
[`8c029d9`](https://redirect.github.com/sindresorhus/globals/commit/8c029d9)
***
</details>
<details>
<summary>typescript-eslint/typescript-eslint
(typescript-eslint)</summary>
###
[`v8.35.1`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8351-2025-06-30)
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.35.0...v8.35.1)
This was a version bump only for typescript-eslint to align it with
other projects, there were no code changes.
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "on Sunday" (UTC), Automerge - At any
time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/8hobbies/commitrack).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMy4yIiwidXBkYXRlZEluVmVyIjoiNDEuMjMuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent b6f3340 commit 7434b19
File tree
8 files changed
+467
-467
lines changed- packages
- api-server
- common
- updater
8 files changed
+467
-467
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | | - | |
30 | | - | |
31 | | - | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
32 | 32 | | |
33 | | - | |
| 33 | + | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
| 36 | + | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
23 | 23 | | |
24 | | - | |
25 | | - | |
| 24 | + | |
| 25 | + | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | | - | |
24 | | - | |
| 23 | + | |
| 24 | + | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | | - | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
0 commit comments