fix(deps): update all non-major dependencies #321
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.
RicardoGEsteves all-non-major update, dependency @clerk/nextjs to v6.11.0
This PR contains the following updates:
6.9.15
->6.11.0
6.2.1
->6.3.1
1.1.4
->1.1.5
2.1.4
->2.1.5
22.12.0
->22.13.1
0.473.0
->0.474.0
15.1.5
->15.1.6
4.79.1
->4.82.0
6.3.0
->6.3.1
17.5.0
->17.6.0
Release Notes
clerk/javascript (@clerk/nextjs)
v6.11.0
Compare Source
Minor Changes
NEXT_PUBLIC_CLERK_KEYLESS_DISABLED=1
. (#4898) by @panteliselefPatch Changes
v6.10.6
Compare Source
Patch Changes
d3152be7f01fbb5ca26aeddc2437021f4b7ecc83
,f976349243da2b75023e59e802460e6f3592ebbd
]:v6.10.5
Compare Source
Patch Changes
Previously the
createPathMatcher()
function was re-implemented both in@clerk/astro
and@clerk/nextjs
, this PR moves this logic to@clerk/shared
. (#5043) by @wobsorianoYou can use it like so:
Improve JSDoc comments to provide better IntelliSense in your IDE (#5053) by @LekoArts
Updated dependencies [
26225f2c31a22560f7ece2e02f1d0080b5b89520
,833693a6792b621e72162d70673e7bdfa84a69b6
]:v6.10.4
Compare Source
Patch Changes
Mark keyless onboarding as complete when stored keys match explicit keys (#4971) by @panteliselef
Gracefully handle failure to create keyless. (#5015) by @panteliselef
Bug fix: Remove warning for accessing Node APIs when running
next build
withclerkMiddleware
imported. (#5028) by @panteliselefUpdated dependencies [
a309be354275b91a7b17d5a67e8ef6aa230a9935
,4773d0ad4ed27928fa53357906c0f3a349b9f871
,1345cb487970a7347351897e80dfb829d85c41ea
]:v6.10.3
Compare Source
Patch Changes
Improve error messages when
clerkMiddleware
is missing by suggesting the correct path to place themiddleware.ts
file. (#4979) by @panteliselefImprove JSDoc comments to provide you with better IntelliSense information in your IDE (#4994) by @LekoArts
Updated dependencies [
57c983fdc2b8d883623a2294daae0ac6c02c48f6
,a26cf0ff10c76244975c454fdf6c615475d4bcd5
,dd58c2507f8a7af4ebfc1241e2672a5678a83eaa
]:v6.10.2
Compare Source
Patch Changes
Avoid calling
safeParseClerkFile
before checking if keyless is allowed. (#4981) by @panteliselefUpdated dependencies [
2179690c10a61b117e82fdd566b34939f4d28bc1
,bdb537a9902c0f0ae58ca1d4b7590d929f28fedb
]:v6.10.1
Compare Source
Patch Changes
Append
return_url
when logging the claimUrl for on Keyless. (#4958) by @panteliselefUpdated dependencies [
f87ede848265d75ea1e880a3ab80c53a250f42cf
,e0cea9a9bf8b90858067154cba9c149d1634dc91
,6126cc98281bca96797fd8a55b6ec6aeda397e46
,6e096564a459db4eaf953e99e570905b10be6c84
]:v6.10.0
Compare Source
Minor Changes
Patch Changes
Decrease frequency of logs related to Keyless. (#4953) by @panteliselef
Updated dependencies [
fe3e49f61acefe8d7f1992405f7cb415fea2e5c8
,4427c4702f64d4f28f7564ce5889d41e260aa519
]:prisma/prisma (@prisma/client)
v6.3.1
Compare Source
This patch releases introduces improvements to the
prisma init
output when invoked to with the--db
option.Run
npx prisma@latest init --db
to get an instant Prisma Postgres database.v6.3.0
Compare Source
Today, we are excited to share the
6.3.0
stable release 🎉🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release. 🌟
Highlights
A brand new Prisma Studio
In this release we've included several great improvements to Prisma Studio's developer experience. You can learn all about the changes we've made in our release blog post, but here's a short list:
Prisma Studio is back in the Console
Fans of Prisma Data Browser rejoice! The new Prisma Studio is now in the Prisma Console and is available for all PostgreSQL and MySQL databases.
A new model viewer
Previously, switching from model to model in Prisma Studio would require backing all the way out to the model view, then digging in again. With our new UI, it's easy to switch from model to model while keeping your place.
A new editing experience
If you're trying to edit a given field in a model, Prisma Studio made it quite easy. However, if you're trying to edit every field in a given row, it could get quite annoying to keep scrolling left to right. Our new edit sidebar resolves that with the ability to edit all fields for a given row at once.
Clean up at the click of a button
When editing a number of models, it can get difficult to get back to a clean slate. In the new Prisma Studio, we've added a "Close all" button that puts you back to a fresh start.
Add
limit
toupdateMany()
anddeleteMany()
Previously,
limit
has not existed as a valid option in top levelupdateMany()
anddeleteMany()
queries. In 6.3.0limit
is now available in these queries, bringing their features more in line with other query types.You can use
limit
like the following:This will limit the number of deleted users to 100 at maximum.
Sort
generator
fields deterministicallyIn previous version of Prisma ORM, the fields inside of a
generator
block in your Prisma Schema were not deterministically sorted. This could lead to cases whereprisma db pull
could lead to re-ordering of fields.In 6.3.0, the sorting of fields in this block is now deterministic. You may see re-ordering on the first
prisma db pull
after you upgrade, but it will remain consistent afterwards.Replace
NOT IN
withNOT EXISTS
for PostgreSQL relation filtersIn previous versions of Prisma ORM, when using the
none
orsome
relation filters, the SQL queries generated usedNOT IN
. In many cases this lead to performance issues as the size of the related table grew. In 6.3.0, we’ve replaced these usages ofIN
withEXISTS
in order to improve query performance.A special thank you
We'd like to extend our heartfelt thanks to @loren and his team for the collaboration and trust in our enterprise support plan. Working closely with them allowed us to address important issues like #19249 and #17303. Their insights and partnership have been invaluable in improving our product.
If your team could benefit from dedicated support and tailored solutions, learn more about our enterprise support plan.
Fixes and improvements
Prisma Client
take
orlimit
toupdateMany()
&deleteMany()
Prisma
prisma db pull
non-deterministically sorts generator fieldsno entry found for key
error on views<->model relationsonUpdate
data to the DMMF in@prisma/generator-helper
Credits
Huge thanks to @WhyAsh5114 for their contributions to this release!
radix-ui/primitives (@radix-ui/react-dialog)
v1.1.5
Compare Source
lucide-icons/lucide (lucide-react)
v0.474.0
: New icons 0.474.0Compare Source
Modified Icons 🔨
expand
(#2677) by @jguddasvercel/next.js (next)
v15.1.6
Compare Source
openai/openai-node (openai)
v4.82.0
Compare Source
Full Changelog: v4.81.0...v4.82.0
Features
Bug Fixes
session.update
call (#1293) (ad800b4)v4.81.0
Compare Source
Full Changelog: v4.80.1...v4.81.0
Features
v4.80.1
Compare Source
Full Changelog: v4.80.0...v4.80.1
Bug Fixes
Documentation
v4.80.0
Compare Source
Full Changelog: v4.79.4...v4.80.0
Features
v4.79.4
Compare Source
Full Changelog: v4.79.3...v4.79.4
Bug Fixes
Chores
Documentation
v4.79.3
Compare Source
Full Changelog: v4.79.2...v4.79.3
Bug Fixes
v4.79.2
Compare Source
Full Changelog: v4.79.1...v4.79.2
Chores
Documentation
stripe/stripe-node (stripe)
v17.6.0
Compare Source
close
method on resourceTreasury.FinancialAccount
pay_by_bank_payments
onAccount.capabilities
,AccountCreateParams.capabilities
, andAccountUpdateParams.capabilities
directorship_declaration
andownership_exemption_reason
onAccount.company
,AccountCreateParams.company
,AccountUpdateParams.company
, andTokenCreateParams.account.company
proof_of_ultimate_beneficial_ownership
onAccountCreateParams.documents
andAccountUpdateParams.documents
financial_account
onAccountSession.components
,AccountSessionCreateParams.components
, andTreasury.OutboundTransfer.destination_payment_method_details
financial_account_transactions
,issuing_card
, andissuing_cards_list
onAccountSession.components
andAccountSessionCreateParams.components
advice_code
onCharge.outcome
,Invoice.last_finalization_error
,PaymentIntent.last_payment_error
,SetupAttempt.setup_error
,SetupIntent.last_setup_error
, andStripeError
Billing.CreditBalanceTransaction.credit.credits_application_invoice_voided
,Card.regulated_status
,Charge.payment_method_details.card.network_transaction_id
,Charge.payment_method_details.card.regulated_status
,ConfirmationToken.payment_method_preview.card.regulated_status
,CreditNote.pretax_credit_amounts
,Invoice.total_pretax_credit_amounts
,Issuing.Authorization.merchant_data.tax_id
,Issuing.Transaction.merchant_data.tax_id
, andPaymentMethod.card.regulated_status
to be requiredpay_by_bank
onCharge.payment_method_details
,Checkout.SessionCreateParams.payment_method_options
,ConfirmationToken.payment_method_preview
,ConfirmationTokenCreateParams.testHelpers.payment_method_data
,PaymentIntent.payment_method_options
,PaymentIntentConfirmParams.payment_method_data
,PaymentIntentConfirmParams.payment_method_options
,PaymentIntentCreateParams.payment_method_data
,PaymentIntentCreateParams.payment_method_options
,PaymentIntentUpdateParams.payment_method_data
,PaymentIntentUpdateParams.payment_method_options
,PaymentMethodConfigurationCreateParams
,PaymentMethodConfigurationUpdateParams
,PaymentMethodConfiguration
,PaymentMethodCreateParams
,PaymentMethodUpdateParams
,PaymentMethod
,SetupIntentConfirmParams.payment_method_data
,SetupIntentCreateParams.payment_method_data
, andSetupIntentUpdateParams.payment_method_data
country
onCharge.payment_method_details.paypal
,ConfirmationToken.payment_method_preview.paypal
, andPaymentMethod.paypal
pay_by_bank
on enumsCheckout.SessionCreateParams.payment_method_types[]
,CustomerListPaymentMethodsParams.type
,PaymentMethodCreateParams.type
, andPaymentMethodListParams.type
SD
on enumsCheckout.Session.shipping_address_collection.allowed_countries[]
,Checkout.SessionCreateParams.shipping_address_collection.allowed_countries[]
,PaymentLink.shipping_address_collection.allowed_countries[]
,PaymentLinkCreateParams.shipping_address_collection.allowed_countries[]
, andPaymentLinkUpdateParams.shipping_address_collection.allowed_countries[]
discounts
onCheckout.Session
pay_by_bank
on enumsConfirmationTokenCreateParams.testHelpers.payment_method_data.type
,PaymentIntentConfirmParams.payment_method_data.type
,PaymentIntentCreateParams.payment_method_data.type
,PaymentIntentUpdateParams.payment_method_data.type
,SetupIntentConfirmParams.payment_method_data.type
,SetupIntentCreateParams.payment_method_data.type
, andSetupIntentUpdateParams.payment_method_data.type
pay_by_bank
on enumsConfirmationToken.payment_method_preview.type
andPaymentMethod.type
pay_by_bank
on enumsPaymentLink.payment_method_types[]
,PaymentLinkCreateParams.payment_method_types[]
, andPaymentLinkUpdateParams.payment_method_types[]
phone_number_collection
onPaymentLinkUpdateParams
jpy
onTerminal.Configuration.tipping
,Terminal.ConfigurationCreateParams.tipping
, andTerminal.ConfigurationUpdateParams.tipping
nickname
onTreasury.FinancialAccountCreateParams
,Treasury.FinancialAccountUpdateParams
, andTreasury.FinancialAccount
forwarding_settings
onTreasury.FinancialAccountUpdateParams
is_default
onTreasury.FinancialAccount
destination_payment_method_data
onTreasury.OutboundTransferCreateParams
Treasury.OutboundTransfer.destination_payment_method_details.type
fromliteral('us_bank_account')
toenum('financial_account'|'us_bank_account')
outbound_transfer
on enumsTreasury.ReceivedCredit.linked_flows.source_flow_details.type
andTreasury.ReceivedCreditListParams.linked_flows.source_flow_type
outbound_transfer
onTreasury.ReceivedCredit.linked_flows.source_flow_details
2025-01-27.acacia
on enumWebhookEndpointCreateParams.api_version
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.