Skip to content

Bump the backend-minor-patch group with 12 updates - #61

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/backend/backend-minor-patch-e270f66a95
Open

Bump the backend-minor-patch group with 12 updates#61
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/backend/backend-minor-patch-e270f66a95

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 29, 2026

Copy link
Copy Markdown

Updated BouncyCastle.Cryptography from 2.6.2 to 2.7.0.

Release notes

Sourced from BouncyCastle.Cryptography's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated FluentAssertions from 7.0.0 to 7.2.2.

Release notes

Sourced from FluentAssertions's releases.

7.2.2

What's Changed

Fixes

Building

Full Changelog: fluentassertions/fluentassertions@7.2.1...7.2.2

7.2.1

What's Changed

Fixes

Full Changelog: fluentassertions/fluentassertions@7.2.0...7.2.1

7.2.0

What's Changed

Improvements

Fixes

Others

Full Changelog: fluentassertions/fluentassertions@7.1.0...7.2.0

7.1.0

What's Changed

Improvements

Others

Full Changelog: fluentassertions/fluentassertions@7.0.0...7.1.0

Commits viewable in compare view.

Updated Microsoft.EntityFrameworkCore from 10.0.10 to 10.0.11.

Release notes

Sourced from Microsoft.EntityFrameworkCore's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Caching.StackExchangeRedis from 10.0.10 to 10.0.11.

Release notes

Sourced from Microsoft.Extensions.Caching.StackExchangeRedis's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Logging.Abstractions from 10.0.10 to 10.0.11.

Release notes

Sourced from Microsoft.Extensions.Logging.Abstractions's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.NET.Test.Sdk from 17.12.0 to 17.14.1.

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

17.14.1

What's Changed

Full Changelog: microsoft/vstest@v17.14.0...v17.14.1

17.14.0

What's Changed

.NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:

  • Updating to the latest VS, and running tests from net6.0 test projects.
  • Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

Changes

Internal version updates and fixes

New Contributors

17.14.0-preview-25107-01

What's Changed

.NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:

  • Updating to the latest VS, and running tests from net6.0 test projects.
  • Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

Changes

Internal version updates and fixes

Will probably revert before release:

New Contributors

Full Changelog: microsoft/vstest@v17.13.0...v17.14.0-preview-25107-01

17.13.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v17.12.0...v17.13.0

Commits viewable in compare view.

Updated QuestPDF from 2026.7.1 to 2026.8.0.

Release notes

Sourced from QuestPDF's releases.

2026.8.0

🚀 This release is dedicated to performance, parallelism, and use of available resources. 🚀

Documents render faster, allocate a fraction of the memory they used to, and scale across all available CPU cores. No code changes are required — existing documents benefit simply by upgrading the package.

The numbers below were measured on a MacBook Pro M5 (18-core CPU), using the invoice document from the Getting Started tutorial, across various levels of parallelism, over a sample of 5,000 documents.

  • Reduced allocated memory amount and allocated object count by 85%.
  • Improved single-threaded performance by around 15%.
  • Substantially improved parallel scaling: throughput previously peaked at 4 threads and flattened beyond that, and now scales with available CPU cores — with around 4x better scaling.
  • Improved performance and scalability for text-heavy documents.
  • Improved cache usage (mainly for fonts) and significantly reduced locking.

✨ Other improvements:

  • Added support for soft hyphens: the library does not hyphenate text automatically, but soft hyphen characters (U+00AD) are now correctly interpreted as optional break points and rendered as hyphens when a line breaks.
  • Added the TextStyle.BreakAnywhere API, which allows a text span to break between any two characters, not only at word boundaries such as spaces or hyphens. Useful for content without natural break points, e.g. long URLs, identifiers, hashes, or file paths.
  • Improved the visual position of the underline and double underline text decorations.
  • Improved reliability of the Companion App integration: document previews are now refreshed from a consistent snapshot, and rendered pages are transferred more efficiently.
  • Increased the zlib compression level used for PDF generation from 1 to 3, which produces significantly smaller files (for text-heavy documents) with a minimal increase in generation time.
  • Updated the Skia native dependency to version m152.

⚠️ Breaking change

XPS generation has been removed. The format was supported only on Windows, had several rendering issues that could not be reliably resolved, and had negligible adoption. The GenerateXps and GenerateXpsAndShow methods are still present, but calling them now results in a compilation error, and code compiled against an earlier version throws an exception at runtime. Please use PDF generation instead.

2026.7.3

  • Breaking change: The Rotate API now rotates elements around their center instead of the top-left corner. Center-origin rotation is the expected behavior in virtually all use cases.
  • Behavioral change: Generated images now use a white background by default, so the output matches how the document appears in a PDF viewer. Previously, PNG and WEBP images had a transparent background. To restore the old behavior, enable ImageGenerationSettings.UseTransparentBackground (applies only to formats supporting transparency: PNG and WEBP).
  • Automated table semantic tagging is now applied whenever a Table element is placed inside a SemanticTable container, even indirectly. Nested semantic captions are now supported as well.
  • Image elements now emit the /BBox attribute, improving PDF/UA-1 compliance with validators that require it.
  • Improved the stability and speed of the QuestPDF Companion integration. The integration now requires .NET 8 or newer.
  • Improved the developer experience of the GeneratePdfAndShow and GenerateXpsAndShow methods.
  • Deprecated AsSemanticHorizontalHeader in favor of SemanticHorizontalHeader for API naming consistency.
  • Deprecated RotateLeft and RotateRight in favor of RotateLayoutCounterclockwise and RotateLayoutClockwise, which better describe what these methods do.

2026.7.2

  • Fixed a rare Windows x64 concurrency issue where generated PDF documents appeared correct in viewers, but selected and copied text was corrupted.
  • Improved text rendering representation to resolve rare compatibility issues in certain PDF viewers that could cause incorrect results when selecting or copying text.
  • Improved compatibility for complex glyphs, such as ligatures, by annotating them with the /ActualText tag. This improves text selection, copying, extraction, and screen-reader accessibility. Ligatures remain disabled by default.
  • Added support for the AllowModification permission in DocumentOperations when encrypting PDF documents with 128-bit or 256-bit keys.
  • Added minor fixes and expanded test coverage for the DocumentOperations API.

Commits viewable in compare view.

Updated StackExchange.Redis from 3.0.17 to 3.1.31.

Release notes

Sourced from StackExchange.Redis's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Stripe.net from 52.1.1 to 52.4.0.

Release notes

Sourced from Stripe.net's releases.

52.4.0

This release changes the pinned API version to 2026-08-26.dahlia.

  • #​3426 Add new EventNotificationHandler class for better thin event management

  • #​3436 Update generated code

    • Add support for new resource Billing.FeedbackOption
    • Add support for Create, Deactivate, Get, List, and Update methods on resource Billing.FeedbackOption
    • Add support for PaymentMethodSettings on AccountSession.Components and AccountSessionComponentsOptions
    • Add support for FeedbackOptions on BillingPortal.Configuration.Features.SubscriptionCancel.CancellationReason and BillingPortalConfigurationFeaturesSubscriptionCancelCancellationReasonOptions
    • Add support for CustomerUpdate on BillingPortal.Session.Flow
    • Add support for FundingSourceGroup on Charge.PaymentMethodDetails.Card.Wallet.Link and Charge.PaymentMethodDetails.Link
    • Add support for FundingTypesBlocked on Checkout.Session.PaymentMethodOptions.Card.Restrictions and CheckoutSessionPaymentMethodOptionsCardRestrictionsOptions
    • Add support for Metadata on ConfirmationToken
    • Add support for ActiveEntitlements and CustomerPortal on CustomerSession.Components and CustomerSessionComponentsOptions
    • Add support for Country on FinancialConnections.Session.Filters
    • Add support for FrozenFields on InvoiceItem
    • Add support for Billie on Invoice.PaymentSettings.PaymentMethodOptions, InvoicePaymentSettingsPaymentMethodOptionsOptions, Subscription.PaymentSettings.PaymentMethodOptions, and SubscriptionPaymentSettingsPaymentMethodOptionsOptions
    • ⚠️ Remove support for Cryptogram on PaymentAttemptRecord.PaymentMethodDetails.Card.ThreeDSecure and PaymentRecord.PaymentMethodDetails.Card.ThreeDSecure
    • Add support for ApplicationFeeAmount, ApplicationFeePercent, OnBehalfOf, and TransferData on PaymentLinkUpdateOptions
    • Add support for FeedbackOption on Subscription.CancellationDetails and SubscriptionCancellationDetailsOptions
    • Add support for Igic on Tax.Registration.CountryOptions.At, Tax.Registration.CountryOptions.Be, Tax.Registration.CountryOptions.Bg, Tax.Registration.CountryOptions.Cy, Tax.Registration.CountryOptions.Cz, Tax.Registration.CountryOptions.De, Tax.Registration.CountryOptions.Dk, Tax.Registration.CountryOptions.Ee, Tax.Registration.CountryOptions.Es, Tax.Registration.CountryOptions.Fi, Tax.Registration.CountryOptions.Fr, Tax.Registration.CountryOptions.Gr, Tax.Registration.CountryOptions.Hr, Tax.Registration.CountryOptions.Hu, Tax.Registration.CountryOptions.Ie, Tax.Registration.CountryOptions.It, Tax.Registration.CountryOptions.Lt, Tax.Registration.CountryOptions.Lu, Tax.Registration.CountryOptions.Lv, Tax.Registration.CountryOptions.Mt, Tax.Registration.CountryOptions.Nl, Tax.Registration.CountryOptions.Pl, Tax.Registration.CountryOptions.Pt, Tax.Registration.CountryOptions.Ro, Tax.Registration.CountryOptions.Se, Tax.Registration.CountryOptions.Si, Tax.Registration.CountryOptions.Sk, TaxRegistrationCountryOptionsAtOptions, TaxRegistrationCountryOptionsBeOptions, TaxRegistrationCountryOptionsBgOptions, TaxRegistrationCountryOptionsCyOptions, TaxRegistrationCountryOptionsCzOptions, TaxRegistrationCountryOptionsDeOptions, TaxRegistrationCountryOptionsDkOptions, TaxRegistrationCountryOptionsEeOptions, TaxRegistrationCountryOptionsEsOptions, TaxRegistrationCountryOptionsFiOptions, TaxRegistrationCountryOptionsFrOptions, TaxRegistrationCountryOptionsGrOptions, TaxRegistrationCountryOptionsHrOptions, TaxRegistrationCountryOptionsHuOptions, TaxRegistrationCountryOptionsIeOptions, TaxRegistrationCountryOptionsItOptions, TaxRegistrationCountryOptionsLtOptions, TaxRegistrationCountryOptionsLuOptions, TaxRegistrationCountryOptionsLvOptions, TaxRegistrationCountryOptionsMtOptions, TaxRegistrationCountryOptionsNlOptions, TaxRegistrationCountryOptionsPlOptions, TaxRegistrationCountryOptionsPtOptions, TaxRegistrationCountryOptionsRoOptions, TaxRegistrationCountryOptionsSeOptions, TaxRegistrationCountryOptionsSiOptions, and TaxRegistrationCountryOptionsSkOptions

See the changelog for more details.

52.4.0-alpha.2

  • #​3423 Update generated code for private-preview
    • Add support for new resources Billing.FeedbackOption and PaymentPlan
    • ⚠️ Remove support for resource Billing.FeedbackOptions
    • Add support for Create, Get, List, and Update methods on resource PaymentPlan
    • Add support for Update method on resource V2.MoneyManagement.Transaction
    • Add support for WechatPayPayments on Account.Settings and AccountSettingsOptions
    • ⚠️ Change type of BillingPortal.Configuration.Features.SubscriptionCancel.CancellationReason.FeedbackOptions from $Billing.FeedbackOptions to $Billing.FeedbackOption
    • Add support for SubscriptionPause on BillingPortal.Session.Flow
    • Add support for ActiveEntitlements on CustomerSession.Components
    • Add support for SharedPaymentIssuedToken on DelegatedCheckout.RequestedSessionConfirmOptions
    • Add support for ManagedPayments on InvoiceCreateOptions, InvoiceItemCreateOptions, InvoiceItem, Invoice, and QuotePreviewInvoice
    • Add support for PaymentPlan on Invoice
    • Add support for EstimatedFeeDetails and EstimatedFee on Issuing.Authorization.PendingRequest.HoldAmountDetails and Issuing.Authorization.RequestHistory.HoldAmountDetails
    • ⚠️ Remove support for Cryptogram on PaymentAttemptRecord.PaymentMethodDetails.Card.ThreeDSecure and PaymentRecord.PaymentMethodDetails.Card.ThreeDSecure
    • ⚠️ Change type of ProductCatalog.TrialOffer.EndBehavior.Transition.Price from $Price to deletable($Price)
    • ⚠️ Change type of Subscription.CancellationDetails.FeedbackOption from $Billing.FeedbackOptions to $Billing.FeedbackOption
    • Add support for CancelAtPeriodEnd on Subscription.PendingUpdate
    • Add support for Igic on Tax.Registration.CountryOptions.At, Tax.Registration.CountryOptions.Be, Tax.Registration.CountryOptions.Bg, Tax.Registration.CountryOptions.Cy, Tax.Registration.CountryOptions.Cz, Tax.Registration.CountryOptions.De, Tax.Registration.CountryOptions.Dk, Tax.Registration.CountryOptions.Ee, Tax.Registration.CountryOptions.Es, Tax.Registration.CountryOptions.Fi, Tax.Registration.CountryOptions.Fr, Tax.Registration.CountryOptions.Gr, Tax.Registration.CountryOptions.Hr, Tax.Registration.CountryOptions.Hu, Tax.Registration.CountryOptions.Ie, Tax.Registration.CountryOptions.It, Tax.Registration.CountryOptions.Lt, Tax.Registration.CountryOptions.Lu, Tax.Registration.CountryOptions.Lv, Tax.Registration.CountryOptions.Mt, Tax.Registration.CountryOptions.Nl, Tax.Registration.CountryOptions.Pl, Tax.Registration.CountryOptions.Pt, Tax.Registration.CountryOptions.Ro, Tax.Registration.CountryOptions.Se, Tax.Registration.CountryOptions.Si, and Tax.Registration.CountryOptions.Sk
    • Add support for Metadata on V2.Billing.Contract.PricingLines.Data.Pricing.PriceDetails.PricingOverrides.Data, V2.Billing.Contract.PricingOverrides.Data, V2.Billing.ContractUpdateOptions, V2.MoneyManagement.Transaction, V2BillingContractPricingLineActionUpdateOptions, V2BillingContractPricingOverrideActionAddOptions, V2BillingContractPricingOverrideActionUpdateOptions, and V2BillingContractPricingOverrideOptions
    • Add support for TaxAmount on V2.MoneyManagement.OutboundPaymentQuote.EstimatedFee
    • Add support for PayoutMethodOptions on V2.MoneyManagement.OutboundPaymentQuote.To and V2MoneyManagementOutboundPaymentQuoteToOptions
    • Change type of V2BillingContractPricingLineActionUpdatePricingPriceDetailsPricingOverrideActionUpdateOptions.Metadata from string to emptyable(string)
    • Add support for snapshot events PaymentPlanCreated, PaymentPlanInstallmentDue, PaymentPlanInstallmentPaid, PaymentPlanInstallmentWillBeDue, and PaymentPlanUpdated with resource PaymentPlan

See the changelog for more details.

52.4.0-alpha.1

This release changes the pinned API version to 2026-08-12.preview.

  • #​3421 Update generated code for private-preview
    • Add support for new resource V2.Tax.OperationsResolveAddressResult
    • Add support for ResolveAddress method on resource V2.Tax.OperationsResolveAddressResult
    • Add support for Confirm and FxQuote methods on resource V2.MoneyManagement.PayoutIntent
    • Add support for CustomerUpdate on BillingPortal.Session.Flow
    • Add support for FundingSourceGroup on Charge.PaymentMethodDetails.Link
    • ⚠️ Remove support for PricingGroup on Charge.PaymentMethodDetails.Link
    • Add support for Celo on Crypto.OnrampSession.TransactionDetails.WalletAddresses
    • Add support for CustomerPortal on CustomerSession.Components
    • Add support for AppliedToInvoice and Type on CustomerCustomerBalanceTransactionCreateOptions
    • Add support for ClassificationState and EnrichmentState on FinancialConnections.Account
    • Add support for Country on FinancialConnections.Session.Filters
    • Add support for Classifications and Enrichments on FinancialConnections.Transaction
    • Add support for CustomerBalance on Invoice and QuotePreviewInvoice
    • Add support for Billie on Invoice.PaymentSettings.PaymentMethodOptions, QuotePreviewInvoice.PaymentSettings.PaymentMethodOptions, and Subscription.PaymentSettings.PaymentMethodOptions
    • Add support for HoldAmountDetails and HoldAmount on Issuing.Authorization.PendingRequest and Issuing.Authorization.RequestHistory
    • Add support for NetworkDeclineCode on PaymentAttemptRecordPaymentMethodDetailsCardOptions and PaymentRecordPaymentMethodDetailsCardOptions
    • Add support for SetupFutureUsage on PaymentIntent.PaymentMethodOptions.Sequra
    • Add support for Status on QuotePreviewSubscriptionSchedule.PauseSchedule.Pause, QuotePreviewSubscriptionSchedule.PauseSchedule.Resume, SubscriptionSchedule.PauseSchedule.Pause, and SubscriptionSchedule.PauseSchedule.Resume
    • Change type of SubscriptionSchedulePauseSchedulesOptions.Resume from pause_schedule_update_resume_params to emptyable(pause_schedule_update_resume_params)
    • Add support for Acquirer on EventsV2CoreHealthAuthorizationRateDropFiringEventImpactDimension, EventsV2CoreHealthAuthorizationRateDropResolvedEventImpactDimension, V2.Core.Health.Alert.AuthorizationRateDrop.Dimension, and V2.Core.Health.AlertHistoryEntry.AuthorizationRateDrop.Dimension
    • ⚠️ Change type of EventsV2CoreHealthAuthorizationRateDropFiringEventImpactDimension.Type, EventsV2CoreHealthAuthorizationRateDropResolvedEventImpactDimension.Type, V2.Core.Health.Alert.AuthorizationRateDrop.Dimension.Type, and V2.Core.Health.AlertHistoryEntry.AuthorizationRateDrop.Dimension.Type from literal('issuer') to enum('acquirer'|'issuer')
    • Add support for ConfirmationMethod on V2.MoneyManagement.PayoutIntentCreateOptions and V2.MoneyManagement.PayoutIntent
    • Add support for EstimatedFees and FxQuote on V2.MoneyManagement.PayoutIntent
    • Add support for Debited on V2.MoneyManagement.PayoutIntent.From
    • Add support for Confirm on V2.MoneyManagement.PayoutIntent.NextAction
    • ⚠️ Change type of V2.MoneyManagement.PayoutIntent.NextAction.Type from literal('handle_failure') to enum('confirm'|'handle_failure')
    • Add support for Credited on V2.MoneyManagement.PayoutIntent.To
    • Add support for event notification V1BalanceSettingsUpdatedEvent with related object BalanceSettings
    • Add support for event notification V1BillingCreditBalanceTransactionCreatedEvent with related object Billing.CreditBalanceTransaction
    • Add support for event notifications V1BillingCreditGrantCreatedEvent and V1BillingCreditGrantUpdatedEvent with related object Billing.CreditGrant
    • Add support for event notifications V1BillingMeterCreatedEvent, V1BillingMeterDeactivatedEvent, V1BillingMeterReactivatedEvent, and V1BillingMeterUpdatedEvent with related object Billing.Meter
    • Add support for event notifications V1FinancialConnectionsAccountAccountNumbersUpdatedEvent, V1FinancialConnectionsAccountExpectedDeactivationDateUpdatedEvent, V1FinancialConnectionsAccountSupportedPaymentMethodTypesUpdatedEvent, V1FinancialConnectionsAccountUpcomingAccountNumberExpiryEvent, and V1FinancialConnectionsAccountUpcomingDeactivationEvent with related object FinancialConnections.Account
    • Add support for event notification V1InvoicePaymentAttemptRequiredEvent with related object Invoice
    • Add support for error type FxQuoteNeedsRefreshException

See the changelog for more details.

52.3.0

  • #​3422 Surface object property on EventNotification

  • #​3416 add/adjust event parsing helpers

    • Added methods that return which return their respective Event/EventNotification class instances without verifying authenticity. Use them when you've previously verified an event (e.g. you verified, put the event in a queue, and are now processing). Supports events from AWS EventBridge and Azure Event Grid natively.
      • EventUtility.ConstructEventWithoutVerification(json)
      • StripeClient.ParseEventNotificationWithoutVerification(json)
    • Added EventUtility.GenerateSignatureHeader(payload, secret), which computes a full Stripe-Signature header for the given payload. Useful for unit tests!
  • #​3420 Add stripe.major_api_version constant

See the changelog for more details.

52.3.0-beta.1

This release changes the pinned API version to 2026-07-29.preview.

  • #​3406 Update generated code for beta
    • Add support for Get and List methods on resource ProductCatalog.TrialOffer
    • Add support for TaxItems on ChargePaymentDetailsCarRentalDataTotalTaxOptions, ChargePaymentDetailsFlightDataTotalTaxOptions, ChargePaymentDetailsLodgingDataTotalTaxOptions, PaymentIntent.PaymentDetails.CarRentalDatum.Total.Tax, PaymentIntent.PaymentDetails.FlightDatum.Total.Tax, PaymentIntent.PaymentDetails.LodgingDatum.Total.Tax, PaymentIntentPaymentDetailsCarRentalDataTotalTaxOptions, PaymentIntentPaymentDetailsFlightDataTotalTaxOptions, and PaymentIntentPaymentDetailsLodgingDataTotalTaxOptions
    • ⚠️ Remove support for Taxes on ChargePaymentDetailsCarRentalDataTotalTaxOptions, ChargePaymentDetailsFlightDataTotalTaxOptions, ChargePaymentDetailsLodgingDataTotalTaxOptions, PaymentIntent.PaymentDetails.CarRentalDatum.Total.Tax, PaymentIntent.PaymentDetails.FlightDatum.Total.Tax, PaymentIntent.PaymentDetails.LodgingDatum.Total.Tax, PaymentIntentPaymentDetailsCarRentalDataTotalTaxOptions, PaymentIntentPaymentDetailsFlightDataTotalTaxOptions, and PaymentIntentPaymentDetailsLodgingDataTotalTaxOptions
    • Add support for TaxId on Checkout.Session.CollectedInformation
    • ⚠️ Remove support for TaxIds on Checkout.Session.CollectedInformation
    • Add support for Mode on FinancialConnections.Session.ManualEntry
    • Add support for Name on Issuing.CardholderUpdateOptions
    • Add support for CustomFields, Description, and Footer on QuotePreviewSubscriptionSchedule.DefaultSettings.InvoiceSettings and QuotePreviewSubscriptionSchedule.Phase.InvoiceSettings
    • Add support for Trial on QuotePreviewSubscriptionSchedule.Phase
    • ⚠️ Remove support for AcssDebit, AfterpayClearpay, Alipay, Alma, AmazonPay, AuBecsDebit, BacsDebit, Bancontact, Billie, Bizum, Blik, Boleto, CardPresent, Cashapp, Crypto, CustomerBalance, Eps, Fpx, Giropay, Gopay, Grabpay, IdBankTransfer, Ideal, InteracPresent, KakaoPay, Konbini, KrCard, MbWay, Mobilepay, Multibanco, NaverPay, NzBankAccount, Oxxo, P24, PayByBank, Payco, Paynow, Paypal, Paypay, Payto, Pix, Promptpay, Qris, Rechnung, RevolutPay, SamsungPay, Satispay, Scalapay, SepaDebit, Shopeepay, Sofort, StripeBalance, Sunbit, Swish, Twint, Upi, UsBankAccount, WechatPay, and Zip on SharedPayment.GrantedToken.PaymentMethodDetails
    • Add support for UseStripeSdk on SharedPayment.IssuedTokenCreateOptions and SharedPayment.IssuedToken
    • Add support for RedirectToUrl on SharedPayment.IssuedToken.NextAction
    • ⚠️ Change type of SharedPayment.IssuedToken.NextAction.Type from literal('use_stripe_sdk') to enum('redirect_to_url'|'use_stripe_sdk')
    • Add support for Livemode on Tax.Location
    • Add support for Source on V2.Iam.ActivityLog.Details.UserRoles
    • Add support for Payout on V2.MoneyManagement.ReceivedCredit.BalanceTransfer
    • ⚠️ Remove support for PayoutV1 on V2.MoneyManagement.ReceivedCredit.BalanceTransfer

See the changelog for more details.

52.3.0-alpha.2

  • #​3419 Update generated code for private-preview
    • Add support for new resource Billing.FeedbackOptions
    • Add support for SequraPayments on Account.Capabilities
    • Add support for FeedbackOptions on BillingPortal.Configuration.Features.SubscriptionCancel.CancellationReason
    • Add support for Sequra on Charge.PaymentMethodDetails, Checkout.Session.PaymentMethodOptions, ConfirmationToken.PaymentMethodPreview, PaymentAttemptRecord.PaymentMethodDetails, PaymentIntent.PaymentMethodOptions, and PaymentRecord.PaymentMethodDetails
    • Add support for RetrievalReferenceNumber on Charge.PaymentMethodDetails.CardPresent, ConfirmationToken.PaymentMethodPreview.Card.GeneratedFrom.PaymentMethodDetails.CardPresent, PaymentAttemptRecord.PaymentMethodDetails.CardPresent, PaymentMethod.Card.GeneratedFrom.PaymentMethodDetails.CardPresent, and PaymentRecord.PaymentMethodDetails.CardPresent
    • Add support for PricingGroup on Charge.PaymentMethodDetails.Link
    • Add support for TaxRates on Checkout.Session.ShippingOption, CheckoutSessionShippingOptionOptions, and CheckoutSessionShippingOptionsOptions
    • Add support for FundingTypesBlocked on Checkout.Session.PaymentMethodOptions.Card.Restrictions
    • Add support for Healthcare on Issuing.TestHelpersAuthorizationCreateOptions, IssuingAuthorizationPurchaseDetailsOptions, and IssuingTransactionPurchaseDetailsOptions
    • Add support for IsAnomalous on PaymentAttemptRecordReportGuaranteedOptions
    • Add support for AadeData on PaymentIntent.PaymentMethodOptions.CardPresent
    • Add support for FeedbackOption on Subscription.CancellationDetails
    • Add support for Application on V2.Payments.OffSessionPayment
    • Add support for Status on V2.MoneyManagement.FinancialAccountStatementListOptions

See the changelog for more details.

52.3.0-alpha.1

This release changes the pinned API version to 2026-07-29.preview.

  • #​3415 Update generated code for private-preview
    • Add support for new resources V2.MoneyManagement.ReceivedDebitMandate, V2.Risk.Inquiry, V2.Signals.AccountActivity, and V2.Signals.AccountEvaluation
    • Add support for Create and Get methods on resource V2.Signals.AccountEvaluation
    • Add support for Create, Delete, and Get methods on resource V2.Signals.AccountActivity
    • Add support for Get, List, and Update methods on resource V2.Risk.Inquiry
    • Add support for Cancel, Get, and List methods on resource V2.MoneyManagement.ReceivedDebitMandate
    • Add support for RateCards on Billing.CreditGrant.ApplicabilityConfig.Scope, BillingCreditBalanceSummaryFilterApplicabilityScopeOptions, and BillingCreditGrantApplicabilityConfigScopeOptions
    • ⚠️ Change type of ConfirmationToken.PaymentMethodPreview.GiftCard.Brand, GiftCard.Brand, GiftCardCreateOptions.Brand, PaymentMethod.GiftCard.Brand, Terminal.ReaderActivateGiftCardOptions.Brand, Terminal.ReaderCashoutGiftCardOptions.Brand, Terminal.ReaderCheckGiftCardBalanceOptions.Brand, and Terminal.ReaderReloadGiftCardOptions.Brand from enum('fiserv_valuelink'|'givex'|'svs') to literal('svs')
    • Add support for Tempo on Crypto.OnrampSession.TransactionDetails.WalletAddresses
    • Add support for Healthcare on Issuing.Authorization
    • Add support for ProductCode on Issuing.CardCreateOptions, Issuing.CardUpdateOptions, and Issuing.Card
    • Add support for ProductGraduationState on Issuing.Card
    • Add support for Cvc and Number on RadarPaymentEvaluationPaymentDetailsPaymentMethodDetailsCardOptions
    • Add support for Card on Radar.PaymentEvaluation.PaymentDetails.PaymentMethodDetails
    • ⚠️ Change type of TerminalReaderCollectConfigOptions.GiftCardBrand and TerminalReaderProcessConfigOptions.GiftCardBrand from enum('fiserv_valuelink'|'givex'|'svs') to literal('svs')
    • Add support for GiftCard on Terminal.TestHelpersReaderPresentPaymentMethodOptions
    • Add support for AmountDue and CustomerBalanceApplied on V2.Billing.Intent.AmountDetails
    • ⚠️ Change type of V2.Core.AccountEvaluation.EvaluationsTriggered from literal('fraudulent_website') to enum('fraudulent_website'|'user_account_sharing'|'user_multi_accounting')
    • Add support for GrossSettlement on V2.Core.Account.Configuration.Merchant and V2CoreAccountConfigurationMerchantOptions
    • ⚠️ Change type of V2.MoneyManagement.DebitDispute.BankTransfer.Network from literal('ach') to enum('ach'|'bacs')
    • ⚠️ Remove support for ManagedBy on V2.MoneyManagement.FinancialAccount
    • Add support for PayoutIntent on V2.MoneyManagement.OutboundPayment
    • Add support for SettlesAt on V2.MoneyManagement.ReceivedDebit
    • Add support for GbBankAccount on V2.MoneyManagement.ReceivedDebit.BankTransfer
    • ⚠️ Change type of V2.MoneyManagement.ReceivedDebit.BankTransfer.OriginType from literal('us_bank_account') to enum('gb_bank_account'|'us_bank_account')
    • ⚠️ Change type of V2.MoneyManagement.ReceivedDebit.BankTransfer.PaymentMethodType from literal('us_bank_account') to enum('gb_bank_account'|'us_bank_account')
    • Add support for TargetDate on V2.Payments.OffSessionPaymentCreateOptions and V2.Payments.OffSessionPayment
    • Add support for AccountEvaluation, FraudulentWebsite, PaymentDelinquencyExposure, UserAccountSharing, and UserMultiAccounting on V2.Signals.AccountSignal
    • Change type of V2.MoneyManagement.FinancialAddressDebitSimulationDebitOptions.Network from literal('ach') to enum('ach'|'bacs')
    • Add support for ReceivedDebitMandate on V2.MoneyManagement.ReceivedDebitListOptions
    • ⚠️ Remove support for PayoutIntent on V2.MoneyManagement.OutboundPaymentCreateOptions
    • Change type of V2.Core.AccountEvaluationCreateOptions.Signals from literal('fraudulent_website') to enum('fraudulent_website'|'user_account_sharing'|'user_multi_accounting')
    • ⚠️ Remove support for Id on EventsV2SignalsAccountSignalFraudulentMerchantReadyEvent
    • Add support for event notifications V2MoneyManagementReceivedDebitCreatedEvent and V2MoneyManagementReceivedDebitScheduledEvent with related object V2.MoneyManagement.ReceivedDebit
    • Add support for event notifications V2MoneyManagementReceivedDebitMandateCanceledEvent, V2MoneyManagementReceivedDebitMandateCreatedEvent, V2MoneyManagementReceivedDebitMandateExpiredEvent, V2MoneyManagementReceivedDebitMandatePendingCancellationEvent, and V2MoneyManagementReceivedDebitMandateUpdatedEvent with related object V2.MoneyManagement.ReceivedDebitMandate
    • Add support for event notification V2SignalsAccountEvaluationCompleteEvent with related object V2.Signals.AccountEvaluation
    • Add support for event notifications V2SignalsAccountSignalFraudulentWebsiteReadyEvent and V2SignalsAccountSignalPaymentDelinquencyExposureReadyEvent with related object V2.Signals.AccountSignal

See the changelog for more details.

52.2.0

This release changes the pinned API version to 2026-07-29.dahlia.

  • #​3417 Update generated code
    • Add support for new resource FinancialConnections.Authorization
    • Add support for Unreject method on resource Account
    • Add support for List method on resource PaymentRecord
    • Add support for SmartDisputesManagement on AccountSession.Components.DisputesList.Features, AccountSession.Components.PaymentDetails.Features, AccountSession.Components.PaymentDisputes.Features, AccountSession.Components.Payments.Features, AccountSessionComponentsDisputesListFeaturesOptions, AccountSessionComponentsPaymentDetailsFeaturesOptions, AccountSessionComponentsPaymentDisputesFeaturesOptions, and AccountSessionComponentsPaymentsFeaturesOptions
    • Add support for AdministrativeAddress and PrincipalPlaceOfBusiness on Account.Company, AccountCompanyOptions, and TokenAccountCompanyOptions
    • Add support for SepaDebitPayments on AccountSettingsOptions
    • Remove support for ProofOfRegistration on AccountDocumentsOptions. This field was limited-use and is being deprecated.
    • Add support for PayoutsAction on AccountRejectOptions
    • Remove support for DynamicTaxRates on CheckoutSessionLineItemOptions. This field was limited-use and is being deprecated.
    • Add support for SetupFutureUsage on Checkout.Session.PaymentMethodOptions.Payco, Checkout.Session.PaymentMethodOptions.SamsungPay, CheckoutSessionPaymentMethodOptionsPaycoOptions, CheckoutSessionPaymentMethodOptionsSamsungPayOptions, PaymentIntent.PaymentMethodOptions.Payco, PaymentIntent.PaymentMethodOptions.SamsungPay, PaymentIntentPaymentMethodOptionsPaycoOptions, PaymentIntentPaymentMethodOptionsSamsungPayOptions, and PaymentLinkPaymentIntentDataOptions
    • Add support for Network on Dispute.PaymentMethodDetails.Card
    • Add support for Limits and ManualEntry on FinancialConnections.SessionCreateOptions and FinancialConnections.Session
    • Add support for RequirePaymentMethodSupport on FinancialConnections.Session.Filters and FinancialConnectionsSessionFiltersOptions
    • Add support for BankAccountToken on FinancialConnections.Session
    • Add support for Metadata on InvoiceSubscriptionDetailsOptions
    • Add support for BusinessName on Issuing.Card.Shipping and IssuingCardShippingOptions
    • Add support for AllowedPaymentMethodTypes on PaymentIntentConfirmOptions, PaymentIntentCreateOptions, PaymentIntentUpdateOptions, PaymentIntent, SetupIntentConfirmOptions, SetupIntentCreateOptions, SetupIntentUpdateOptions, and SetupIntent
    • Add support for Referrer on PaymentIntentRadarOptionsOptions
    • Add support for ConsentCollection and ShippingOptions on PaymentLinkUpdateOptions
    • Add support for CustomFields, Description, and Footer on Quote.InvoiceSettings, QuoteInvoiceSettingsOptions, SubscriptionSchedule.DefaultSettings.InvoiceSettings, SubscriptionSchedule.Phase.InvoiceSettings, SubscriptionScheduleDefaultSettingsInvoiceSettingsOptions, and SubscriptionSchedulePhaseInvoiceSettingsOptions
    • Add support for CustomerAccount and Customer on Refund
    • Add support for PaymentMethod on Refund and Topup
    • Add support for Trial on SubscriptionSchedule.Phase
    • Add support for MassTransitParkingTax and ParkingTax on Tax.Registration.CountryOptions.Us and TaxRegistrationCountryOptionsUsOptions
    • Add support for InitiatedBy and PaymentMethodOptions on Topup
    • Add support for AdditionalAddresses on V2.Core.Account.Identity.BusinessDetails, V2CoreAccountIdentityBusinessDetailsOptions, and V2CoreAccountTokenIdentityBusinessDetailsOptions
    • Add support for snapshot events FinancialConnectionsAccountExpectedDeactivationDateUpdated, FinancialConnectionsAccountSupportedPaymentMethodTypesUpdated, and FinancialConnectionsAccountUpcomingDeactivation with resource FinancialConnections.Account
    • Add support for snapshot events FinancialConnectionsAuthorizationExpectedDeactivationDateUpdated and FinancialConnectionsAuthorizationUpcomingDeactivation with resource FinancialConnections.Authorization

See the changelog for more details.

52.2.0-beta.1

This release changes the pinned API version to 2026-06-24.preview.

  • #​3390 Update generated code for beta
    • Add support for Redaction on Card, Charge, Checkout.Session, Customer, Issuing.Authorization, Issuing.Card, Issuing.Cardholder, Issuing.Dispute, Issuing.Transaction, PaymentIntent, PaymentMethod, SetupIntent, Source, and Token
    • Add support for DisclaimerVariant on Capital.FinancingOffer and Capital.FinancingSummary.Details
    • Add support for Active on FinancialConnections.Account.StatusDetails and FinancialConnections.Authorization.StatusDetails
    • Change type of FinancialConnectionsSessionLimitsOptions.Accounts from longInteger to emptyable(longInteger)
    • Add support for Pause on InvoiceSubscriptionDetailsOptions
    • Add support for ReleaseDetails on Reserve.Hold
    • Add support for BuyerId on SharedPayment.GrantedToken.PaymentMethodDetails.Bizum and SharedPayment.GrantedToken.PaymentMethodDetails.Blik
    • Add support for Fingerprint on SharedPayment.GrantedToken.PaymentMethodDetails.Pix
    • Add support for MoneyManager on V2.Core.Account.Configuration, V2.Core.Account.Identity.Attestations.TermsOfService, V2CoreAccountConfigurationOptions, V2CoreAccountIdentityAttestationsTermsOfServiceOptions, and V2CoreAccountTokenIdentityAttestationsTermsOfServiceOptions
    • ⚠️ Remove support for Storer on V2.Core.Account.Configuration, V2.Core.Account.Identity.Attestations.TermsOfService, V2CoreAccountConfigurationOptions, V2CoreAccountIdentityAttestationsTermsOfServiceOptions, and V2CoreAccountTokenIdentityAttestationsTermsOfServiceOptions
    • ⚠️ Remove support for MaximumRps on V2.Core.BatchJobCreateOptions and V2.Core.BatchJob
    • Add support for Bic on V2.MoneyManagement.FinancialAddress.Credentials.UsBankAccount
    • ⚠️ Remove support for SwiftCode on V2.MoneyManagement.FinancialAddress.Credentials.UsBankAccount
    • Add support for Processing on V2.MoneyManagement.OutboundPayment.StatusDetails and V2.MoneyManagement.OutboundTransfer.StatusDetails
    • Add support for AccountHolderName on V2.MoneyManagement.ReceivedCredit.BankTransfer.UsBankAccount
    • Add support for Statuses on V2.MoneyManagement.FinancialAccountListOptions
    • ⚠️ Remove support for Status on V2.MoneyManagement.FinancialAccountListOptions
    • Add support for event notifications V2CoreAccountIncludingConfigurationMoneyManagerCapabilityStatusUpdatedEvent and V2CoreAccountIncludingConfigurationMoneyManagerUpdatedEvent with related object V2.Core.Account
    • Add support for event notification V2MoneyManagementOutboundPaymentUnderReviewEvent with related object V2.MoneyManagement.OutboundPayment
    • Add support for event notification V2MoneyManagementOutboundTransferUnderReviewEvent with related object V2.MoneyManagement.OutboundTransfer
    • ⚠️ Remove support for event notifications V2CoreAccountIncludingConfigurationStorerCapabilityStatusUpdatedEvent and V2CoreAccountIncludingConfigurationStorerUpdatedEvent with related object V2.Core.Account

See the changelog for more details.

52.2.0-alpha.5

  • #​3414 Update generated code for private-preview
    • Add support for new resources Billing.AlertNotification and Crypto.DepositAddress
    • Add support for Create, Get, and List methods on resource Crypto.DepositAddress
    • Add support for List method on resource Billing.AlertNotification
    • Add support for Vipps on ConfirmationToken.PaymentMethodPreview, ConfirmationTokenPaymentMethodDataOptions, PaymentIntent.PaymentMethodOptions, PaymentIntentPaymentMethodDataOptions, PaymentIntentPaymentMethodOptionsOptions, PaymentMethodConfigurationCreateOptions, PaymentMethodConfigurationUpdateOptions, PaymentMethodConfiguration, PaymentMethodCreateOptions, PaymentMethod, and SetupIntentPaymentMethodDataOptions
    • Add support for Sui on Crypto.OnrampSession.TransactionDetails.WalletAddresses
    • Add support for UseStripeSdk on DelegatedCheckout.RequestedSessionConfirmOptions
    • Add support for EvCharging on PaymentIntentAmountDetailsLineItem.PaymentMethodOptions.Card and PaymentIntentAmountDetailsLineItemsPaymentMethodOptionsCardOptions
    • Add support for TaxItems on PaymentIntent.PaymentDetails.CarRentalDatum.Total.Tax, PaymentIntent.PaymentDetails.FlightDatum.Total.Tax, and PaymentIntent.PaymentDetails.LodgingDatum.Total.Tax
    • ⚠️ Remove support for Taxes on PaymentIntent.PaymentDetails.CarRentalDatum.Total.Tax, PaymentIntent.PaymentDetails.FlightDatum.Total.Tax, and PaymentIntent.PaymentDetails.LodgingDatum.Total.Tax
    • Add support for Card on RadarPaymentEvaluationPaymentDetailsPaymentMethodDetailsOptions
    • ⚠️ Remove support for AcssDebit, AfterpayClearpay, Alipay, Alma, AmazonPay, AuBecsDebit, BacsDebit, Bancontact, Billie, Bizum, Blik, Boleto, CardPresent, Cashapp, Crypto, CustomerBalance, Eps, Fpx, GiftCard, Giropay, Gopay, Grabpay, IdBankTransfer, Ideal, InteracPresent, KakaoPay, Konbini, KrCard, MbWay, Mobilepay, Multibanco, NaverPay, NzBankAccount, Oxxo, P24, PayByBank, Payco, Paynow, Paypal, Paypay, Payto, Pix, Promptpay, Qris, Rechnung, RevolutPay, SamsungPay, Satispay, Scalapay, SepaDebit, Shopeepay, Sofort, StripeBalance, Sunbit, Swish, Tamara, Twint, Upi, UsBankAccount, WechatPay, and Zip on SharedPayment.GrantedToken.PaymentMethodDetails
    • Add support for SpendCard on V2.Core.Account.Configuration.CardCreator.Capabilities.Commercial.Stripe and V2CoreAccountConfigurationCardCreatorCapabilitiesCommercialStripeOptions

See the changelog for more details.

52.2.0-alpha.4

  • #​3410 Update generated code for private-preview
    • ⚠️ Remove support for resource FrMealVouchersOnboarding
    • ⚠️ Remove support for Create, Get, List, and Update methods on resource FrMealVouchersOnboarding
    • Add support for Create method on resource PaymentRecord
    • ⚠️ Remove support for FinancialAccountsTransactions, FinancialAccounts, and RecipientsList on AccountSessionComponentsOptions
    • Add support for SmartDisputesManagement on AccountSession.Components.DisputesList.Features, AccountSession.Components.PaymentDetails.Features, AccountSession.Components.PaymentDisputes.Features, and AccountSession.Components.Payments.Features
    • Add support for Mode on FinancialConnections.Session.ManualEntry
    • Add support for BusinessName on Issuing.Card.Shipping
    • Add support for PauseSchedules on QuotePreviewSubscriptionSchedule, SubscriptionScheduleCreateOptions, SubscriptionScheduleUpdateOptions, and SubscriptionSchedule
    • Add support for Trial on QuotePreviewSubscriptionSchedule.Phase and SubscriptionSchedule.Phase
    • Add support for PaymentRecord on RefundCreateOptions
    • Add support for RedirectToUrl on SharedPayment.IssuedToken.NextAction
    • ⚠️ Change type of SharedPayment.IssuedToken.NextAction.Type from literal('use_stripe_sdk') to enum('redirect_to_url'|'use_stripe_sdk')
    • Add support for snapshot events FinancialConnectionsAccountExpectedDeactivationDateUpdated, FinancialConnectionsAccountSupportedPaymentMethodTypesUpdated, and FinancialConnectionsAccountUpcomingDeactivation with resource FinancialConnections.Account
    • Add support for snapshot events FinancialConnectionsAuthorizationExpectedDeactivationDateUpdated and FinancialConnectionsAuthorizationUpcomingDeactivation with resource FinancialConnections.Authorization

See the changelog for more details.

52.2.0-alpha.3

This release changes the pinned API version to 2026-07-08.preview.

  • #​3407 Update generated code for private-preview
    • Add support for ActivateGiftCard, CashoutGiftCard, CheckGiftCardBalance, and ReloadGiftCard methods on resource Terminal.Reader
    • Add support for AggregationPeriod on Billing.AlertRecovered
    • Add support for AdministrativeAddress and PrincipalPlaceOfBusiness on Account.Company
    • Add support for AddressCollectionPrecision on Checkout.Session.AutomaticTax
    • Add support for TaxId on Checkout.Session.CollectedInformation
    • ⚠️ Remove support for TaxIds on Checkout.Session.CollectedInformation
    • Add support for SetupFutureUsage on Checkout.Session.PaymentMethodOptions.Payco, Checkout.Session.PaymentMethodOptions.SamsungPay, PaymentIntent.PaymentMethodOptions.Payco, PaymentIntent.PaymentMethodOptions.Paypay, PaymentIntent.PaymentMethodOptions.SamsungPay, and PaymentIntentPaymentMethodOptionsPaypayOptions
    • Add support for Network on Dispute.PaymentMethodDetails.Card
    • Add support for RequirePaymentMethodSupport on FinancialConnections.Session.Filters
    • Add support for NetworkData on Issuing.Authorization.RequestHistory
    • Add support for AcquiringInstitutionCountry, AcquiringInstitutionId, RetrievalReferenceNumber, RoutedNetwork, and TraceId on Issuing.Transaction.NetworkData
    • Add support for CustomFields, Description, and Footer on Quote.InvoiceSettings, QuotePreviewSubscriptionSchedule.DefaultSettings.InvoiceSettings, QuotePreviewSubscriptionSchedule.Phase.InvoiceSettings, SubscriptionSchedule.DefaultSettings.InvoiceSettings, and SubscriptionSchedule.Phase.InvoiceSettings
    • Add support for Paypay on SetupAttempt.PaymentMethodDetails
    • Add support for MassTransitParkingTax and ParkingTax on Tax.Registration.CountryOptions.Us
    • Add support for GiftCardBrand on TerminalReaderCollectConfigOptions and TerminalReaderProcessConfigOptions
    • Add support for ActivateGiftCard, CashoutGiftCard, CheckGiftCardBalance, DeactivateGiftCard, and ReloadGiftCard on Terminal.Reader.Action
    • Add support for StatusTransitions on V2.Billing.Contract
    • ⚠️ Remove support for OneTimeFees on V2.Billing.ContractCreateOptions and V2.Billing.Contract
    • ⚠️ Remove support for StatusDetails on V2.Billing.Contract
    • Add support for Id and Priority on V2.Billing.Contract.PricingLines.Data.Pricing.PriceDetails.PricingOverrides.Data
    • ⚠️ Remove support for PricingOverride on V2.Billing.Contract.PricingLines.Data.Pricing.PriceDetails.PricingOverrides.Data
    • ⚠️ Remove support for TieringMode and Tiers on V2.Billing.Contract.PricingLines.Data.Pricing.PriceDetails.PricingOverrides.Data.OverwritePrice, V2BillingContractPricingLineActionAddPricingPriceDetailsPricingOverrideOverwritePriceOptions, V2BillingContractPricingLineActionUpdatePricingPriceDetailsPricingOverrideActionAddOverwritePriceOptions, V2BillingContractPricingLinePricingPriceDetailsPricingOverrideOverwritePriceOptions, and V2BillingContractPricingOverrideActionAddOverwritePriceOptions
    • Add support for MultiplyPricing on V2.Billing.Contract.PricingOverrides.Data, V2BillingContractPricingOverrideActionAddOptions, and V2BillingContractPricingOverrideOptions
    • ⚠️ Remove support for Multiplier on V2.Billing.Contract.PricingOverrides.Data, V2BillingContractPricingOverrideActionAddOptions, and V2BillingContractPricingOverrideOptions
    • ⚠️ Change type of V2.Billing.Contract.PricingOverrides.Data.Type, V2BillingContractPricingOverrideActionAddOptions.Type, and V2BillingContractPricingOverrideOptions.Type from literal('multiplier') to literal('multiply_pricing')
    • Add support for RelatedNetworkObject on V2.Core.AccountListOptions and V2.Core.Account
    • Add support for NetworkBusinessProfileWallet on V2.MoneyManagement.PayoutMethod
    • Add support for StripeNetworkTransfer on V2.MoneyManagement.ReceivedCredit
    • ⚠️ Change type of V2BillingContractPricingLineActionAddPricingPriceDetailsPricingOverrideEndsAtOptions.Type, V2BillingContractPricingLineEndsAtOptions.Type, V2BillingContractPricingLinePricingPriceDetailsPricingOverrideEndsAtOptions.Type, and V2BillingContractPricingOverrideEndsAtOptions.Type from enum('contract_end'|'timestamp') to literal('timestamp')
    • ⚠️ Change type of V2BillingContractPricingLineActionAddPricingPriceDetailsPricingOverrideStartsAtOptions.Type, V2BillingContractPricingLinePricingPriceDetailsPricingOverrideStartsAtOptions.Type, V2BillingContractPricingLineStartsAtOptions.Type, and V2BillingContractPricingOverrideStartsAtOptions.Type from enum('contract_start'|'timestamp') to literal('timestamp')
    • ⚠️ Change type of V2BillingContractPricingLineActionAddEndsAtOptions.Type, V2BillingContractPricingLineActionUpdateEndsAtOptions.Type, V2BillingContractPricingLineActionUpdatePricingPriceDetailsPricingOverrideActionAddEndsAtOptions.Type, V2BillingContractPricingLineActionUpdatePricingPriceDetailsPricingOverrideActionUpdateEndsAtOptions.Type, V2BillingContractPricingOverrideActionAddEndsAtOptions.Type, and V2BillingContractPricingOverrideActionUpdateEndsAtOptions.Type from enum('billing_period_end'|'timestamp') to literal('timestamp')
    • ⚠️ Change type of V2BillingContractPricingLineActionAddStartsAtOptions.Type, V2BillingContractPricingLineActionUpdatePricingPriceDetailsPricingOverrideActionAddStartsAtOptions.Type, V2BillingContractPricingLineActionUpdatePricingPriceDetailsPricingOverrideActionUpdateStartsAtOptions.Type, V2BillingContractPricingLineActionUpdateStartsAtOptions.Type, V2BillingContractPricingOverrideActionAddStartsAtOptions.Type, and V2BillingContractPricingOverrideActionUpdateStartsAtOptions.Type from enum('billing_period_start'|'timestamp') to literal('timestamp')
    • Add support for event notifications V2BillingContractActivatedEvent, V2BillingContractCanceledEvent, V2BillingContractCreatedEvent, V2BillingContractEndedEvent, and V2BillingContractUpdatedEvent with related object V2.Billing.Contract

See the changelog for more details.

52.2.0-alpha.2

This release changes the pinned API version to 2026-07-01.preview.

  • #​3405 Update generated code for private-preview
    • Add support for new resources Crypto.CustomerConsumerWallet, Crypto.CustomerPaymentToken, Crypto.Customer, Crypto.OnrampSession, and Crypto.OnrampTransactionLimits
    • Add support for Get and List methods on resource Crypto.Customer
    • Add support for Checkout, Create, Get, List, and Quote methods on resource Crypto.OnrampSession
    • Add support for Get method on resource Crypto.OnrampTransactionLimits
    • Add support for ElectronicCommerceIndicator on Charge.PaymentMethodDetails.Card
    • Add support for AmountReceived and AmountRequested on Charge.PaymentMethodDetails.Crypto, PaymentAttemptRecord.PaymentMethodDetails.Crypto, and PaymentRecord.PaymentMethodDetails.Crypto
    • Add support for Fingerprint on Charge.PaymentMethodDetails.GiftCard, PaymentAttemptRecord.PaymentMethodDetails.GiftCard, and PaymentRecord.PaymentMethodDetails.GiftCard
    • Add support for AddressCollectionPrecision on CheckoutSessionAutomaticTaxOptions
    • Add support for Subscription on `Checkout.Sess.....

Description has been truncated

Bumps BouncyCastle.Cryptography from 2.6.2 to 2.7.0
Bumps FluentAssertions from 7.0.0 to 7.2.2
Bumps Microsoft.EntityFrameworkCore from 10.0.10 to 10.0.11
Bumps Microsoft.Extensions.Caching.StackExchangeRedis from 10.0.10 to 10.0.11
Bumps Microsoft.Extensions.Logging.Abstractions from 10.0.10 to 10.0.11
Bumps Microsoft.NET.Test.Sdk from 17.12.0 to 17.14.1
Bumps QuestPDF from 2026.7.1 to 2026.8.0
Bumps StackExchange.Redis from 3.0.17 to 3.1.31
Bumps Stripe.net from 52.1.1 to 52.4.0
Bumps System.IdentityModel.Tokens.Jwt from 8.19.2 to 8.22.0
Bumps Testcontainers.PostgreSql from 4.1.0 to 4.14.0
Bumps Xunit.SkippableFact from 1.5.61 to 1.5.85

---
updated-dependencies:
- dependency-name: BouncyCastle.Cryptography
  dependency-version: 2.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-minor-patch
- dependency-name: FluentAssertions
  dependency-version: 7.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-minor-patch
- dependency-name: Microsoft.EntityFrameworkCore
  dependency-version: 10.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-minor-patch
- dependency-name: Microsoft.Extensions.Caching.StackExchangeRedis
  dependency-version: 10.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-minor-patch
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-version: 10.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-minor-patch
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-minor-patch
- dependency-name: QuestPDF
  dependency-version: 2026.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-minor-patch
- dependency-name: StackExchange.Redis
  dependency-version: 3.1.31
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-minor-patch
- dependency-name: Stripe.net
  dependency-version: 52.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-minor-patch
- dependency-name: System.IdentityModel.Tokens.Jwt
  dependency-version: 8.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-minor-patch
- dependency-name: Testcontainers.PostgreSql
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-minor-patch
- dependency-name: Xunit.SkippableFact
  dependency-version: 1.5.85
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Aug 29, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: backend, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants