Skip to content

Commit 7434b19

Browse files
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) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2fclient/6.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2fclient/6.10.1/6.11.1?slim=true)](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) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/22.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/22.15.34/22.16.0?slim=true)](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) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint/9.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint/9.30.0/9.30.1?slim=true)](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) | [![age](https://developer.mend.io/api/mc/badges/age/npm/globals/16.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/globals/16.2.0/16.3.0?slim=true)](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) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prisma/6.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prisma/6.10.1/6.11.1?slim=true)](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) | [![age](https://developer.mend.io/api/mc/badges/age/npm/typescript-eslint/8.35.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript-eslint/8.35.0/8.35.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>prisma/prisma (@&#8203;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/@&#8203;prisma/studio-core) npm package. ![](https://cdn.sanity.io/images/p2zxqf70/production/d2c35b8243dd6f86ff9a353d5bb64ad79510920f-2836x981.png) [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. ![](https://cdn.sanity.io/images/p2zxqf70/production/a6a82eb9c6a5a6ab82a0d8073bf07032aa5d2fc9-2028x2082.png) ##### 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 ([#&#8203;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

8 files changed

+467
-467
lines changed

package-lock.json

Lines changed: 112 additions & 112 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@
2424
},
2525
"devDependencies": {
2626
"@8hobbies/eslint-conf-baseline": "6.0.0",
27-
"@prisma/client": "6.10.1",
27+
"@prisma/client": "6.11.1",
2828
"@types/eslint": "9.6.1",
29-
"@types/node": "22.15.34",
30-
"eslint": "9.30.0",
31-
"globals": "16.2.0",
29+
"@types/node": "22.16.0",
30+
"eslint": "9.30.1",
31+
"globals": "16.3.0",
3232
"prettier": "3.6.2",
33-
"prisma": "6.10.1",
33+
"prisma": "6.11.1",
3434
"tsx": "4.20.3",
3535
"typescript": "5.8.3",
36-
"typescript-eslint": "8.35.0",
36+
"typescript-eslint": "8.35.1",
3737
"vitest": "3.2.4"
3838
}
3939
}

packages/api-server/package-lock.json

Lines changed: 112 additions & 112 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/api-server/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@
1919
"@8hobbies/eslint-conf-baseline": "6.0.0",
2020
"@types/eslint": "9.6.1",
2121
"@types/jest": "30.0.0",
22-
"@types/node": "22.15.34",
22+
"@types/node": "22.16.0",
2323
"@vitest/coverage-v8": "3.2.4",
24-
"eslint": "9.30.0",
25-
"globals": "16.2.0",
24+
"eslint": "9.30.1",
25+
"globals": "16.3.0",
2626
"prettier": "3.6.2",
27-
"prisma": "6.10.1",
27+
"prisma": "6.11.1",
2828
"typescript": "5.8.3",
29-
"typescript-eslint": "8.35.0",
29+
"typescript-eslint": "8.35.1",
3030
"vitest": "3.2.4"
3131
},
3232
"dependencies": {
3333
"@8hobbies/utils": "4.2.0",
3434
"@fastify/type-provider-json-schema-to-ts": "5.0.0",
35-
"@prisma/client": "6.10.1",
35+
"@prisma/client": "6.11.1",
3636
"fastify": "5.4.0",
3737
"fastify-plugin": "5.0.1",
3838
"redis": "4.7.1"

packages/common/package-lock.json

Lines changed: 108 additions & 108 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/common/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"@8hobbies/eslint-conf-baseline": "6.0.0",
1919
"@types/eslint": "9.6.1",
2020
"@types/jest": "30.0.0",
21-
"@types/node": "22.15.34",
21+
"@types/node": "22.16.0",
2222
"@vitest/coverage-v8": "3.2.4",
23-
"eslint": "9.30.0",
24-
"globals": "16.2.0",
23+
"eslint": "9.30.1",
24+
"globals": "16.3.0",
2525
"prettier": "3.6.2",
26-
"prisma": "6.10.1",
26+
"prisma": "6.11.1",
2727
"typescript": "5.8.3",
28-
"typescript-eslint": "8.35.0"
28+
"typescript-eslint": "8.35.1"
2929
}
3030
}

0 commit comments

Comments
 (0)