fix(deps): update all non-major dependencies#154
Merged
alexolivier merged 2 commits intomainfrom Mar 5, 2026
Merged
Conversation
ef1c45a to
adcab81
Compare
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
adcab81 to
5469942
Compare
Cerbos PDP now returns KIND_CONDITIONAL instead of KIND_ALWAYS_DENIED for policies with conditional DENY + unconditional ALLOW rules. Signed-off-by: Alex Olivier <alex@alexolivier.me>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.27.0→^0.28.0^0.24.0→^0.25.07.3.0→7.4.27.3.0→7.4.220.1.8→20.1.920.1.8→20.1.924.10.9→24.11.024.10.13→24.11.0v6.2.0→v6.3.012.4.1→12.6.23.2.2→3.3.11.31.7→1.32.0v4.4.1→v4.4.49.1.5→9.2.47.3.0→7.4.26.1.2→6.1.36.1.0→6.1.32.1.3→2.1.52.0.16→2.0.172.18.2→2.21.11.20.4→1.21.41.20.4→1.21.41.20.4→1.21.45.11.4→5.14.34.27.1→4.34.00.13.0→0.18.0Release Notes
cerbos/cerbos-sdk-javascript (@cerbos/core)
v0.28.0Compare Source
Added
Client.deletePolicyandClient.deletePoliciesmethods to delete policies (#1344)Requires a policy decision point server running Cerbos 0.51+.
PolicyStoreIntegrityViolatederror, thrown when disabling or deleting a policy violates the integrity of the store (#1344)Requires a policy decision point server running Cerbos 0.51+.
Support for additional request context (#1344)
Requires a policy decision point server running Cerbos 0.51+.
OutputResult.actionproperty (#1344)Requires a policy decision point server running Cerbos 0.51+.
Support for versioned role policies (#1344)
Requires a policy decision point server running Cerbos 0.51+.
Client.purgeStoreRevisionsmethod to clear history from dynamic policy stores (#1344)Requires a policy decision point server running Cerbos 0.51+.
Changed
Bump dependency on [@bufbuild/protobuf] to 2.11.0 (#1355)
Bump dependency on [@cerbos/api] to 0.6.0 (#1358)
cerbos/cerbos-sdk-javascript (@cerbos/grpc)
v0.25.0Compare Source
Added
Client.deletePolicyandClient.deletePoliciesmethods to delete policies (#1344)Requires a policy decision point server running Cerbos 0.51+.
PolicyStoreIntegrityViolatederror, thrown when disabling or deleting a policy violates the integrity of the store (#1344)Requires a policy decision point server running Cerbos 0.51+.
Support for additional request context (#1344)
Requires a policy decision point server running Cerbos 0.51+.
OutputResult.actionproperty (#1344)Requires a policy decision point server running Cerbos 0.51+.
Support for versioned role policies (#1344)
Requires a policy decision point server running Cerbos 0.51+.
Client.purgeStoreRevisionsmethod to clear history from dynamic policy stores (#1344)Requires a policy decision point server running Cerbos 0.51+.
Changed
Bump dependency on [@bufbuild/protobuf] to 2.11.0 (#1355)
Bump dependency on [@cerbos/api] to 0.6.0 (#1358)
Bump dependency on [@cerbos/core] to 0.28.0 (#1361)
prisma/prisma (@prisma/adapter-better-sqlite3)
v7.4.2Compare Source
Today, we are issuing a 7.4.2 patch release focused on bug fixes and quality improvements.
🛠 Fixes
Prisma Client
INandNOT INfilter regression (#29243)Uint8Arrayserialization in nested JSON fields (#29268)Driver Adapters
relationJoinscompatibility check for MariaDB 8.x versions (#29246)Schema Engine
🙏 Huge thanks to our community
Many of the fixes in this release were contributed by our amazing community members. We're grateful for your continued support and contributions that help make Prisma better for everyone!
v7.4.1Compare Source
Today, we are issuing a 7.4.1 patch release focused on bug fixes and quality improvements.
🛠 Fixes
Prisma Client
Prisma.skipthrough query extension argument cloning (#29198)Driver Adapters
Prisma Schema Language
whereargument on field-level@uniquefor partial indexes (prisma/prisma-engines#5774)🙏 Huge thanks to our community
Many of the fixes in this release were contributed by our amazing community members. We're grateful for your continued support and contributions that help make Prisma better for everyone!
v7.4.0Compare Source
Today, we are excited to share the
7.4.0stable release 🎉🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!
Highlights
ORM
Caching in Prisma Client
Today’s release is a big one, as we introduce a new caching layer into Prisma ORM. But why the need for a caching layer?
In Prisma 7, the query compiler runs as a WebAssembly module directly on the JavaScript main thread. While this simplified the architecture by eliminating the separate engine process, it introduced a trade-off: every query now synchronously blocks the event loop during compilation.
For individual queries, compilation takes between 0.1ms and 1ms, which is barely noticeable in isolation. But under high concurrency this overhead adds up and creates event loop contention that affects overall application throughput.
For instance, say we have a query that is run over and over, but is a similar shape:
Prior to v7.4.0, this would be reevaluated ever time the query is run. Now, Prisma Client will extract the user-provided values and replaces them with typed placeholders, producing a normalized query shape:
This normalized shape is used as a cache key. On the first call, the query is compiled as usual and the resulting plan is stored in an LRU cache. On every subsequent call with the same query shape, regardless of the actual values, the cached plan is reused instantly without invoking the compiler.
We have more details on the impact of this change and some deep dives into Prisma architecture in an upcoming blog post!
Partial Indexes (Filtered Indexes) Support
We're excited to announce Partial Indexes support in Prisma! This powerful community-contributed feature allows you to create indexes that only include rows matching specific conditions, significantly reducing index size and improving query performance.
Partial indexes are available behind the
partialIndexespreview feature for PostgreSQL, SQLite, SQL Server, and CockroachDB, with full migration and introspection support.Basic usage
Enable the preview feature in your schema:
generator client { provider = "prisma-client-js" previewFeatures = ["partialIndexes"] }Raw SQL syntax
For maximum flexibility, use the
raw()function with database-specific predicates:Type-safe object syntax
For better type safety, use the object literal syntax for simple conditions:
Bug Fixes
Most of these fixes are community contributions - thank you to our amazing contributors!
CREATE INDEX CONCURRENTLYin migrationsOpen roles at Prisma
Interested in joining Prisma? We’re growing and have several exciting opportunities across the company for developers who are passionate about building with Prisma. Explore our open positions on our Careers page and find the role that’s right for you.
Enterprise support
Thousands of teams use Prisma and many of them already tap into our Enterprise & Agency Support Program for hands-on help with everything from schema integrations and performance tuning to security and compliance.
With this program you also get priority issue triage and bug fixes, expert scalability advice, and custom training so that your Prisma-powered apps stay rock-solid at any scale. Learn more or join: https://prisma.io/enterprise.
tsconfig/bases (@tsconfig/node20)
v20.1.9Compare Source
actions/setup-node (actions/setup-node)
v6.3.0Compare Source
What's Changed
Enhancements:
devEnginesfield by @susnux in #1283Dependency updates:
Bug fixes:
New Contributors
Full Changelog: actions/setup-node@v6...v6.3.0
WiseLibs/better-sqlite3 (better-sqlite3)
v12.6.2Compare Source
What's Changed
Full Changelog: WiseLibs/better-sqlite3@v12.6.1...v12.6.2
v12.6.0Compare Source
What's Changed
Full Changelog: WiseLibs/better-sqlite3@v12.5.0...v12.6.0
v12.5.0Compare Source
What's Changed
Full Changelog: WiseLibs/better-sqlite3@v12.4.6...v12.5.0
v12.4.6Compare Source
What's Changed
Full Changelog: WiseLibs/better-sqlite3@v12.4.5...v12.4.6
v12.4.5Compare Source
What's Changed
Full Changelog: WiseLibs/better-sqlite3@v12.4.4...v12.4.5
get-convex/convex-js (convex)
v1.32.0Improved the API documentation with more examples to help AI agents.
Added a new
npx convex insightsCLI command to show the insightsfor a deployment.
Added
insightsMCP tool for diagnosing OCC conflicts and resource limit issueson cloud deployments.
The
insightsMCP tool works on production deployments without requiring--dangerously-enable-production-deployments.When using a local Convex backend (local dev deployment, agent mode or
anonymous mode), the deployment’s data is now stored in a
.convexdirectory in the project root (instead of
~/.convex). This changeis helpful when using multiple worktrees, since each worktree can get
its own isolated storage. Existing local deployments are not affected.
Added new options
maximumRowsReadandmaximumBytesReadto
PaginationOptionsto get more fine-grained control overthe number of rows read when using pagination.
When creating a new dev deployment, the Convex CLI now asks you which
deployment region you want to use if you haven’t set a team default.
Increased the default value for
authRefreshTokenLeewaySecondsto 10 seconds.
The CLI now uses
VITE_CONVEX_*environment variables when using Remixalongside Vite, instead of
CONVEX_*.Fixed an issue where the CLI would sometimes be affected by GitHub API
rate limits when downloading the local deployment binary.
Fixed an issue where websockets would disconnect when using Bun.
Fixed an issue with the WorkOS integration that caused crashes
when running
npx convex deploywith a deployment that hasits own WorkOS credentials.
Fixed an issue with the WorkOS integration where the
WORKOS_API_KEYenvironment variable from the shellwould incorrectly be used.
Fixed an issue where some modifications to
auth.config.tswould cause the push process to fail.
Fixed an issue on Windows that caused arrow key presses to be ignored when the “cloud or local deployment” prompt is shown.
gradle/actions (gradle/actions)
v4.4.4Compare Source
What's Changed
Full Changelog: gradle/actions@v4...v4.4.4
v4.4.3Compare Source
What's Changed
Full Changelog: gradle/actions@v4.4.2...v4.4.3
v4.4.2Compare Source
This patch release updates a bunch of dependency versions
What's Changed
Full Changelog: gradle/actions@v4.4.1...v4.4.2
Automattic/mongoose (mongoose)
v9.2.4Compare Source
==================
@returnsdeclarations #16036 #16018v9.2.3Compare Source
==================
v9.2.2Compare Source
==================
pathsToSavefilter all update operators and preserve unsaved state #16027refPathwork as a function, including map paths with$*#16035 #16028pathsToSaveand indexed-path checks for subdocumentsUUIDToJSONtype #16029extraOptionsunderautoEncryption#16026 #16015v9.2.1Compare Source
==================
v9.2.0Compare Source
==================
v9.1.6Compare Source
==================
isaacs/rimraf (rimraf)
v6.1.3Compare Source
bahmutov/start-server-and-test (start-server-and-test)
v2.1.5Compare Source
Bug Fixes
v2.1.4Compare Source
Bug Fixes
testcontainers/testcontainers-java (org.testcontainers:elasticsearch)
v1.21.4Compare Source
This release makes version 1.21.x works with recent Docker Engine changes.
v1.21.3Compare Source
What's Changed
v1.21.2Compare Source
What's Changed
📖 Documentation
📦 Dependency updates
v1.21.1Compare Source
What's Changed
🚀 Features & Enhancements
🐛 Bug Fixes
📖 Documentation
📦 Dependency updates
v1.21.0Compare Source
What's Changed
startcommand required in Solr 10 (#10174) @epughConfiguration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (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 was generated by Mend Renovate. View the repository job log.