cerbos / query-plan-adapters

Repo of adapters converting a Cerbos Query Plan to a data fetching layer
Apache License 2.0
15 stars 9 forks source link

chore(deps): update all non-major dependencies #58

Closed renovate[bot] closed 7 months ago

renovate[bot] commented 8 months ago

Mend Renovate logo banner

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@prisma/client (source) 5.5.2 -> 5.6.0 age adoption passing confidence
@types/jest (source) 29.5.6 -> 29.5.8 age adoption passing confidence
@types/node (source) 18.18.7 -> 18.18.9 age adoption passing confidence
mongoose (source) 7.6.3 -> 7.6.4 age adoption passing confidence
prisma (source) 5.5.2 -> 5.6.0 age adoption passing confidence

Release Notes

prisma/prisma (@​prisma/client) ### [`v5.6.0`](https://togithub.com/prisma/prisma/releases/tag/5.6.0) [Compare Source](https://togithub.com/prisma/prisma/compare/5.5.2...5.6.0) 🌟 **Help us spread the word about Prisma by starring the repo or [tweeting](https://twitter.com/intent/tweet?text=Check%20out%20the%20latest%20@​prisma%20release%20v5.6.0%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/prisma/prisma/releases/tag/5.6.0) about the release.** 🌟 ##### Highlights ##### Driver adapters improvements (Preview) In version [5.4.0](https://togithub.com/prisma/prisma/releases/tag/5.4.0), we released `driverAdapters` into Preview. The `driverAdapters` feature enables Prisma Client to access your database using JavaScript or Serverless database drivers. In this release, we fixed many bugs for the existing driver adapters. We appreciate all the community feedback that has helped us improve this feature! ##### PlanetScale serverless driver adapter improvements This release also introduces a small breaking change to the `@prisma/adapter-planetscale` package to improve its stability and performance. The serverless driver adapter will now use a connection pool instead of a single connection from PlanetScale’s serverless driver. In case you’re using the `@prisma/adapter-planetscale`, update your Prisma Client instance with the following: ```diff -import { connect } from '@​planetscale/database' +import { Client } from '@​planetscale/database' import { PrismaPlanetScale } from '@​prisma/adapter-planetscale' import { PrismaClient } from '@​prisma/client' import { fetch as undiciFetch } from 'undici'; -const connection = connect({ url: connectionString, fetch: undiciFetch }) +const client = new Client({ url: connectionString, fetch: undiciFetch }) -const adapter = new PrismaPlanetScale(connection) +const adapter = new PrismaPlanetScale(client) const prisma = new PrismaClient({ adapter }) ``` ##### Request for feedback We encourage you to try out the driver adapters and share your feedback to help us move it to General Availability in either of the following GitHub discussions: - [Neon](https://togithub.com/prisma/prisma/discussions/21346) - [PlanetScale](https://togithub.com/prisma/prisma/discussions/21347) - [Turso](https://togithub.com/prisma/prisma/releases#:~:text=Let%20us%20know%20what%20you%20think) Refer to [our docs](https://www.prisma.io/docs/concepts/components/database-drivers#driver-adapters) to learn more about driver adapters. ##### New `prisma debug` command This release introduces a new command: `prisma debug`. The command provides debugging information such as environment variables that Prisma Client, Prisma Migrate, Prisma CLI, and Prisma Studio use. The command is also useful when creating a bug report as the information complements the output of the `prisma -v` command. You can learn more about the command in our [docs](https://www.prisma.io/docs/reference/api-reference/command-reference#debug). ##### Read replicas extension improvements We also released [version 0.3.0](https://togithub.com/prisma/extension-read-replicas/releases/tag/v0.3.0) of the `@prisma/extension-read-replicas` package that contains the following improvements: - A new `$replica()` method that explicitly enables you to use a replica for your query. For example, by default, the `queryRaw` and `executeRaw` methods are forwarded to the primary database, as they could try to write to the database. You can use the `$replica()` method with either of the `*Raw` methods to explicitly execute your query against a replica instead of your primary database. - Validation for when there’s an empty list of replicas. - Webpack bundling fixes We want to thank you, our community members, for your contributions! 🙏 You can find additional information on the changes in the [extension’s release](https://togithub.com/prisma/extension-read-replicas/releases/tag/v0.3.0). You can learn more about the extension in the [announcement blog post](https://www.prisma.io/blog/read-replicas-prisma-client-extension-f66prwk56wow). ##### Package provenance npm has introduced [provenance statements](https://docs.npmjs.com/generating-provenance-statements) to improve supply-chain security and transparency of packages. This allows developers to verify where and how packages are built. Starting with the 5.6.0 release, all npm packages for Prisma ORM will be published with provenance statements. If you maintain a Prisma Client extension or generator, we encourage you to enable provenance statements when publishing to npm. ##### Fixes and improvements ##### Prisma Migrate - [Weird error message on `db push` with invalid connection string: Connection string redacted, weird grammar](https://togithub.com/prisma/prisma/issues/20230) - [Regression for MongoDB introspection in 5.4.0](https://togithub.com/prisma/prisma/issues/21441) - [Inconsistent datetime column data importing to Turso](https://togithub.com/prisma/prisma/issues/21552) - [`db pull --url=...` logs full connection string on `P4001 The introspected database was empty`](https://togithub.com/prisma/prisma/issues/21733) ##### Prisma Client - [`prisma_pool_connections_idle` reports misleading number](https://togithub.com/prisma/prisma/issues/21221) - [Update and read issues with `@prisma/adapter-planetscale`](https://togithub.com/prisma/prisma/issues/21592) - [5.5.0 regression: typescript error when trying to pass `PrismaPlanetScale` adapter to the constructor](https://togithub.com/prisma/prisma/issues/21613) - [5.5.0/1: `Error: sha256 checksum of https://binaries.prisma.sh/all_commits/475c616176945d72f4330c92801f0c5e6398dc0f/windows/query_en gine.dll.node.gz (zipped) should be 748d039badd0919d022fff7d554b66b6937b79035861a6ae9a80c5a95eee76f5 but is b867ad335ee6f58c6a38f665dd641c95e6adff3061f92b7613c62cae1c3362bb`](https://togithub.com/prisma/prisma/issues/21616) ##### Prisma CLI - [`prisma debug`](https://togithub.com/prisma/prisma/issues/21619) ##### Credits Huge thanks to [@​onichandame](https://togithub.com/onichandame), [@​LucianBuzzo](https://togithub.com/LucianBuzzo), [@​RobertCraigie](https://togithub.com/RobertCraigie), [@​fqazi](https://togithub.com/fqazi), [@​KhooHaoYit](https://togithub.com/KhooHaoYit), [@​alencardc](https://togithub.com/alencardc), [@​Oreilles](https://togithub.com/Oreilles), [@​christianledgard](https://togithub.com/christianledgard), [@​skyzh](https://togithub.com/skyzh), [@​alula](https://togithub.com/alula), [@​luxaritas](https://togithub.com/luxaritas), [@​Nasfame](https://togithub.com/Nasfame), [@​lukahartwig](https://togithub.com/lukahartwig), [@​steebchen](https://togithub.com/steebchen), [@​icanipa](https://togithub.com/icanipa) for helping! ##### Miscellaneous ##### Prisma Accelerate is now Generally Available We're excited to share that [Prisma Accelerate](https://pris.ly/accelerate-home-orm-release) is now Generally Available. Prisma Accelerate is a global database cache that's available in over 280 locations and provides scalable connection pooling for serverless and edge applications. Learn more in the [announcement blog post](https://pris.ly/accelerate-ga-post-orm-release). Sign up and try out [Prisma Accelerate](https://pris.ly/pdp-console-orm-release) ##### 💼 We’re hiring! If you're interested in joining our growing team to help empower developers to build data-intensive applications, Prisma is the place for you. We're hiring for an [Engineering Manager: Prisma Data Platform](https://boards.greenhouse.io/prisma/jobs/7009408002).
Automattic/mongoose (mongoose) ### [`v7.6.4`](https://togithub.com/Automattic/mongoose/compare/7.6.3...7.6.4) [Compare Source](https://togithub.com/Automattic/mongoose/compare/7.6.3...7.6.4)

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - "after 9am and before 5pm Monday" (UTC).

🚦 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.



This PR has been generated by Mend Renovate. View repository job log here.