Skip to content

fix(deps): update all (major) #1246

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

fix(deps): update all (major) #1246

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 8, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@adyen/api-library 25.0.0 -> 28.1.0 age confidence dependencies major
@commercetools/api-request-builder (source) 6.0.0 -> 7.0.1 age confidence dependencies major
@commercetools/sdk-client (source) 3.0.0 -> 4.0.1 age confidence dependencies major
@commercetools/sdk-middleware-auth (source) 7.0.1 -> 8.0.1 age confidence dependencies major
@commercetools/sdk-middleware-http (source) 7.0.4 -> 8.0.1 age confidence dependencies major
@commercetools/sdk-middleware-queue (source) 3.0.0 -> 4.0.1 age confidence dependencies major
@commercetools/sdk-middleware-user-agent (source) 3.0.0 -> 4.0.1 age confidence dependencies major
@commercetools/sync-actions (source) 6.1.1 -> 7.3.0 age confidence dependencies major
actions/checkout v4 -> v5 age confidence action major
lint-staged 15.5.2 -> 16.1.5 age confidence devDependencies major
node 18.x -> 22.x age confidence uses-with major
sinon (source) 19.0.5 -> 21.0.0 age confidence devDependencies major

Release Notes

Adyen/adyen-node-api-library (@​adyen/api-library)

v28.1.0: Adyen Node API Library v28.1.0

Compare Source

What's Changed

Balance Platform API:
  • Added support for additionalbankIdentificationRequirement (auBsbCode, caRoutingNumber, gbSortCode or usRoutingNumber)
  • Added approvalExpired ReasonEnum to CreateSweepConfigurationV2, UpdateSweepConfigurationV2 and SweepConfigurationV2
Configuration Webhooks
  • Added usage field - Specifies how many times the card can be used: singleUse or multiUse.
  • Added transactionRulesResult (wallet, cof) in networkTokenNotificationDataV2
  • Added networkTokenRiskRuleData, networkTokenRiskRuleSource, networkTokenTransactionRulesResult and networkTokenTriggeredRiskRule
  • Added approvalExpired to sweepConfigurationV2 webhooks

Transfers API

  • Added approvalExpired to transfer, transferData and transferEvent
  • Added email and url to partyIdentification and ultimatePartyIdentification.
Transfers Webhooks

  • Added email and url fields to partyIdentification
  • Added approvalExpired to transferData and transferEvent.

OpenAPI spec files or templates have been modified on 30-07-2025 by commit.

Other Changes 🖇️

Full Changelog: Adyen/adyen-node-api-library@v28.0.0...v28.1.0

v28.0.0: Adyen Node API Library v28.0.0

Compare Source

What's Changed

This release brings significant improvements, new features, and few breaking changes to the Adyen Node API Library. It marks a major milestone in aligning the library more closely with Adyen’s OpenAPI specifications and improving the ✨ Developer Experience ✨

Find below what's new as well as a detailed summary of the Breaking Changes, and what you should do or consider.

Please review the Breaking Changes and update your integrations accordingly. For any questions, feel free to open an issue or consult our API Explorer.


🚀 Highlights

  • Enhanced OpenAPI Code Generation: Source code is now more idiomatic, flexible, and better aligned with Adyen's OpenAPI specifications.
  • Automated Webhook Handler Generation: Webhook handlers and models are now automatically generated and updated with each release.
  • Refined Package Structure: Several APIs have been moved to more specific packages for better discoverability and maintainability.
  • Improved Error Handling: Make the API Error object available, alongside the raw JSON
  • Revised Enum Values Deserialization: During the response deserialization unknown enums are ignored, instead of causing an error affecting the integrations

🛠 Breaking Changes

🔒 Honouring required attributes

Mandatory attributes are no longer marked as optional, but are expected to be provided. Although this is the correct implementation, it is a ‼️ breaking change (previously the library didn't do that) #​1502

🔁 Order of query parameters

A few method signatures have been updated to add the required query parameters before all optional parameters, to avoid causing an error (invalid order of parameters) #​1515

This change affects only:

  • Transfers API getAllTransactions: the required params createdSince an createdUntil are the first 2 parameters, before all others.
  • Transfers API getAllTransfers: the required params createdSince an createdUntil are the first 2 parameters, before all others.

🔍 Important Changes

📦 Service Class Refactoring

The following services have been moved to their own folder.
Service classes in the old location are deprecated and will be removed in a future release.

Note: There are no changes in functionality (the same code is now available in the new location), please update your code accordingly.

Old Location New Location
services.storedValueApi services.storedvalue.storedValueApi
services.binLookupApi services.binlookup.binLookupApi
services.balanceControlApi services.balancecontrol.balanceControlApi
services.dataProtectionApi services.dataprotection.dataProtectionApi
services.disputesApi services.disputes.disputesApi
services.paymentsAppApi services.paymentsapp.paymentsAppApi
services.posMobileApi services.posmobile.posMobileApi
🪝 Webhook Handling

Webhook handling is now modernized and streamlined:

  • Automation: Auto-generated handlers ensure that webhook events and models stay aligned with the changes in the OpenAPI specs
  • Deprecated: Former bankingWebhookHandler and managementWebhooksHandler classes are now deprecated
  • Recommended: Use instead the dedicated handler in the Webhook package (AcsWebhooks, ReportWebhooksHandler, ConfigurationWebhooks, TransferWebhooks, TransactionWebhooks, etc..)
 const configurationWebhooksHandler = new ConfigurationWebhooksHandler(jsonString);
 const accountHolderNotificationRequest = configurationWebhooksHandler.getAccountHolderNotificationRequest();
⚠️ Deprecation of TerminalManagementAPI

Support for the "classic" POS Terminal Management API has stopped. To automate assigning terminals, you must use Management API.

☘️ Improved Error Handling

The APIError model is readily available in the HttpClientException object when an API call fails. This eliminates the need for manual parsing of the response body by library users. #​1509
The library exports the HttpClientException class, allowing to try-catch the Adyen API exceptions without importing directly from the specific path within the library. #​1526


💎 New Features & Enhancements

Session Authentication API

Add support for Session Authentication API to create the sessions required for integrating Adyen Platform components (#​1435)

BalancePlatform
  • New: BalancesApi service now supports BalanceWebhookSetting for managing Balance Webhook criteria.

  • New: BalancesApi service now supports AuthorizedCardUsersApi to manage (add, get, delete and update) authorized users to a given card

  • Other changes:

    • In PaymentInstrumentsApi add methods createNetworkTokenActivationData and getNetworkTokenActivationData to create and retrieve network token activation data for a payment instrument.
  • In AdditionalBankIdentification add new enums auBsbCode and caRoutingNumber

  • In AccountHoldersApi.getTaxFormResponse add optional parameter legalEntityId

  • Add NetworkTokenRequestor to NetworkToken

  • Add dataMissing enum to VerificationError

  • Add walletProviderDeviceType in TransactionRuleRestrictions

  • Add enum INTEREST in TransferRoute.CategoryEnum

ACS Webhooks
  • In RelayedAuthenticationRequest add new attributes threeDSRequestorAppURL, environment, timestamp, type
Checkout
  • Add capturePspReference to PaymentRefundRequest
  • Add businessDayOnly to PixRecurring
  • In PaymentMethodRequest add attributes browserInfo, shopperEmail, shopperIP and telephoneNumber
  • In SessionResultResponse add attributes:
    • payments to provide a list of all authorised payments done for this session
    • reference to provide the unique reference in the original /sessions request
    • additionalData to provide additional information about the payment
Configuration Webhooks
  • Add NetworkTokenRequestor to NetworkTokenNotificationDataV2
  • Add Wallet class to provide information about the wallet for which the network token is provisioned.
Transfers API
  • New attribute: executionDate in TransferData
  • Add class BankAccountV3AccountIdentification
Transfers Webhooks
  • New attribute: executionDate in TransferData
  • Add class BankAccountV3AccountIdentification
Webhooks
  • In NotificationRequestItem add missing event codes INFORMATION_SUPPLIED, DISPUTE_DEFENSE_PERIOD_ENDED, ISSUER_RESPONSE_TIMEFRAME_EXPIRED, ISSUER_COMMENTS #​1506

Changes in this release:

New Contributors

Full Changelog: Adyen/adyen-node-api-library@v27.0.0...v28.0.0

v27.0.1

Compare Source

v27.0.0: Adyen Node API Library v27.0.0

Compare Source

Breaking Changes 🛠
  • Checkout API

    • Dotpay: Removed the DotpayDetails class and all related references in CheckoutPaymentMethod and test files. Direct support for Dotpay is deprecated
    • Giropay: Removed the GiropayDetails class and all related references in CheckoutPaymentMethod and test files. Direct support for Giropay is deprecated
    • Paysafecard (from PaymentDetails TypeEnum): Removed Paysafecard from the TypeEnum in the PaymentDetails model
  • Classic Payments API

    • In ResponseAdditionalDataCommon the TokenizationStoreOperationTypeEnum.AlreadyStored has been removed, and replaced by TokenizationStoreOperationTypeEnum.AlreadyExisting
  • Management API

    • Remove GiroPayInfo
    • Remove enum PAYSHOP from PaymentMethodResponse
Features 💎
  • Checkout API

    • Rakuten Pay: Add support for Rakuten Pay payment method - RakutenPayDetails
    • Add support for Surcharge in paymentRequest
    • Add Donation type field supporting the following values: roundup, fixedAmounts
    • Add email and phone number fields to AdditionalDataCommon and AdditionalDataSubMerchant
    • Add SubMerchantEmail and SubMerchantPhoneNumber fields to AdditionalDataCommon
    • Add SubMerchantSubSellerSubSellerNrEmail and SubMerchantSubSellerSubSellerNrPhoneNumber fields to AdditionalDataSubMerchant
    • Add RequestedTestAcquirerResponseCode to AdditionalDataCommon to facilitate testing scenarios for specific acquirer responses
    • Add EnhancedSchemeData property to PaymentRequest and PaymentCaptureRequest
    • Add EncryptedCard property to PaymentMethodToStore to allow storing encrypted card details.
    • Add the FraudRiskLevel enum and property to ResponseAdditionalDataCommon to indicate the risk level of a payment (e.g. VeryLow, Low, Medium, High, and VeryHigh)
    • Add Bonus enum member to the PlansEnum in CheckoutSessionInstallmentOption and Installments
  • BalancePlatform API

    • Add Bic enum in BankIdentification
    • Add Pending enum in CreateSweepConfigurationV2
    • Add message field in InvalidField
    • Add replacedById and replacementOfId attributes in PaymentInstrument and UpdatePaymentInstrument
    • Add walletProviderAccountScore and walletProviderDeviceScore attributes in TransactionRuleRestrictions
    • Add class USInstantPayoutAddressRequirement
  • Transfer API

    • Added IssuingTransactionData with captureCycleId that provides the captureCycleId associated with transfer event
    • Add enumChargebackRemainder in PlatformPayment.platformPaymentType
    • Add attribute externalReason in TransferData
    • Add enum Pending in TransferData.reason
    • Add attribute scaOnApproval in TransferReview
  • Management API

    • Add supportEmail field in AfterpayTouchInfo
    • Add enum PAYMENTDESIGNATORCONTRACT in JCBInfo
    • Add PayByBankPlaidInfo
    • Add enum PAYBYBANK_PLAID in PaymentMethodResponse
    • Add domainSuffix field in Profile model
    • In SplitConfigurationRule add enums CHARGED, DEFERRED_DEBIT and PREPAID (#​1457)
    • Add enableGratuities in Standalone model

Add support for Balance Webhooks

  • Webhooks

  • Configuration Webhooks

    • Add replacedById to PaymentInstrument
  • AcsWebhooks

    • Enum value has changed:

      • Before: OTP_SMS
      • After: PWD_OTP_PHONE_FL - OTP flow via SMS
    • Enum value has changed:

      • Before: OOB
      • After: OOB_TRIGGER_FL - Out-of-band trigger flow
    • New:

    • Add PWD_OTP_EMAIL_FL - OTP flow via Email

Fixes ⛑️
Other Changes 🖇️
cd tools/hmac
npm install 

node calculateHmacPayments.js 11223344D785FBAE710E7F943F307971BB61B21281C98C9129B3D4018A57B2EB payload.json

Check the README

New Contributors

Full Changelog: Adyen/adyen-node-api-library@v26.1.0...v27.0.0

v26.1.0: Adyen Node API Library v26.1.0

Compare Source

What's Changed

Fixes ⛑️

library/pull/1482

Other Changes 🖇️

New Contributors

Full Changelog: Adyen/adyen-node-api-library@v26.0.0...v26.1.0

v26.0.0: Adyen Node API Library v26.0.0

Compare Source

What's Changed

Breaking Changes 🛠
  • Management API:
    • In AndroidApp the field status has changed from String to StatusEnum (Archived, Error, Invalid, Processing, Ready)
  • Management webhooks:
    • In PaymentMethodRequestRemovedNotificationRequest the event type has been renamed to paymentMethodRequest.removed
    • In PaymentMethodScheduledForRemovalNotificationRequest the event type has been renamed to paymentMethodRequest.scheduledForRemoval
New Features 💎
  • Checkout:
    • New payment methods PixDetails and PixRecurring
    • In PaymentRefundResponse add attribute capturePspReference (only available for PayPal refunds)
    • In ResponseAdditionalDataCommon:
      • ⚠️ the recurring_recurringDetailReference and recurring_shopperReference are deprecated, use instead the new attribute tokenization_shopperReference
      • add tokenization_store_operationType and tokenization_storedPaymentMethodId attributes, add TokenizationStoreOperationTypeEnum enum
  • Checkout webhooks:
    • Add TechnicalCancel enum in NotificationRequestItem
  • Management API:
    • Support AffirmInfo and PayToInfo payment methods
    • in Surcharge class add attribuge excludeGratuityFromSurcharge
  • Payout:
    • In ResponseAdditionalDataCommon:
      • ⚠️ the recurring_recurringDetailReference and recurring_shopperReference are deprecated, use instead the new attribute tokenization_shopperReference
      • add tokenization_store_operationType and tokenization_storedPaymentMethodId attributes, add TokenizationStoreOperationTypeEnum enum
  • Classic Payments:
    • In ResponseAdditionalDataCommon:
      • ⚠️ the recurring_recurringDetailReference and recurring_shopperReference are deprecated, use instead the new attribute tokenization_shopperReference
      • add tokenization_store_operationType and tokenization_storedPaymentMethodId attributes, add TokenizationStoreOperationTypeEnum enum

[!IMPORTANT]
The Recurring API is deprecated. Use the Checkout API recurring endpoints instead.

Other Changes 🖇️

New Contributors

Full Changelog: Adyen/adyen-node-api-library@v25.0.0...v26.0.0

commercetools/nodejs (@​commercetools/api-request-builder)

v7.0.1

Compare Source

Patch Changes

v7.0.0

Compare Source

Major Changes
  • #​1930 5a56792 Thanks @​tdeekens! - # Requires Node.js v18 or later

    This releases migrates packages to require Node.js v18 or later. Ideally you should be already using Node.js v20 or later. According to Node.js Releases Node.js v18 will be in maintenance and reach End of Life by the end of April.

    Other than requiring Node.js v18 packages with this releases do not contain any internal breaking changes.

actions/checkout (actions/checkout)

v5

Compare Source

lint-staged/lint-staged (lint-staged)

v16.1.5

Compare Source

Patch Changes

v16.1.4

Compare Source

Patch Changes
  • #​1604 90b37b0 Thanks @​iiroj! - Add another types field to package.json to make even more sure NPM detects that lint-staged includes built-in TypeScript type definitions.

v16.1.3

Compare Source

Patch Changes
  • #​1602 7ea700b Thanks @​dword-design! - Add the types field to package.json to make sure NPM detects lint-staged includes built-in TypeScript type definitions.

v16.1.2

Compare Source

Patch Changes
  • #​1570 a7c0c88 Thanks @​ItsNickBarry! - When using --diff-filter with the D option to include deleted staged files, lint-staged no longer tries to stage the deleted files, unless they're no longer deleted. Previously this caused an error from git add like fatal: pathspec 'deleted-file' did not match any files.

  • 38f942e Thanks @​iiroj! - Removed an extraneous log entry that printed shouldHidePArtiallyStagedFiles to console output.

v16.1.1

Compare Source

Patch Changes
  • #​1565 3686977 Thanks @​iiroj! - Lint-staged now explicitly warns about potential data loss when using --no-stash.

  • #​1571 02299a9 Thanks @​iiroj! - Function tasks (introduced in v16.0.0) only received the staged files matching the conpmnfigured glob, instead of all staged files.

  • #​1563 bc61c74 Thanks @​iiroj! - This version fixes incorrect behavior where unstaged changes were committed when using the --no-stash option. This happened because --no-stash implied --no-hide-partially-staged, meaning unstaged changes to files which also had other staged changes were added to the commit by lint-staged; this is no longer the case.

    The previous (incorrect) behavior can still be achieved by using both options --no-stash --no-hide-partially-staged at the same time.

v16.1.0

Compare Source

Minor Changes
  • #​1536 e729daa Thanks @​iiroj! - A new flag --no-revert has been introduced for when task modifications should be applied to the index before aborting the commit in case of errors. By default, lint-staged will clear all task modifications and revert to the original state.

  • #​1550 b27fa3f Thanks @​iiroj! - Lint-staged now ignores symlinks and leaves them out from the list of staged files.

Patch Changes

v16.0.0

Compare Source

Major Changes
  • #​1546 158d15c Thanks @​iiroj! - Processes are spawned using nano-spawn instead of execa. If you are using Node.js scripts as tasks, you might need to explicitly run them with node, especially when using Windows:

    {
      "*.js": "node my-js-linter.js"
    }
  • #​1546 158d15c Thanks @​iiroj! - The --shell flag has been removed and lint-staged no longer supports evaluating commands directly via a shell. To migrate existing commands, you can create a shell script and invoke it instead. Lint-staged will pass matched staged files as a list of arguments, accessible via "$@​":

actions/node-versions (node)

v22.18.0: 22.18.0

Compare Source

Node.js 22.18.0

v22.17.1: 22.17.1

Compare Source

Node.js 22.17.1

v22.17.0: 22.17.0

Compare Source

Node.js 22.17.0

v22.16.0: 22.16.0

Compare Source

Node.js 22.16.0

v22.15.1: 22.15.1

Compare Source

Node.js 22.15.1

v22.15.0: 22.15.0

Compare Source

Node.js 22.15.0

v22.14.0: 22.14.0

Compare Source

Node.js 22.14.0

v22.13.1: 22.13.1

Compare Source

Node.js 22.13.1

v22.13.0: 22.13.0

Compare Source

Node.js 22.13.0

v22.12.0: 22.12.0

Compare Source

Node.js 22.12.0

v22.11.0: 22.11.0

Compare Source

Node.js 22.11.0

v22.10.0: 22.10.0

Compare Source

Node.js 22.10.0

v22.9.0: 22.9.0

Compare Source

Node.js 22.9.0

v22.8.0: 22.8.0

Compare Source

Node.js 22.8.0

v22.7.0: 22.7.0

Compare Source

Node.js 22.7.0

v22.6.0: 22.6.0

Compare Source

Node.js 22.6.0

v22.5.1: 22.5.1

Compare Source

Node.js 22.5.1

v22.5.0: 22.5.0

Compare Source

Node.js 22.5.0

v22.4.1: 22.4.1

Compare Source

Node.js 22.4.1

v22.4.0: 22.4.0

Compare Source

Node.js 22.4.0

v22.3.0: 22.3.0

Compare Source

Node.js 22.3.0

v22.2.0: 22.2.0

Compare Source

Node.js 22.2.0

v22.1.0: 22.1.0

Compare Source

Node.js 22.1.0

v22.0.0: 22.0.0

Compare Source

Node.js 22.0.0

v20.19.4: 20.19.4

Compare Source

Node.js 20.19.4

v20.19.3: 20.19.3

Compare Source

Node.js 20.19.3

v20.19.2: 20.19.2

Compare Source

Node.js 20.19.2

v20.19.1: 20.19.1

Compare Source

Node.js 20.19.1

v20.19.0: 20.19.0

Compare Source

Node.js 20.19.0

v20.18.3: 20.18.3

Compare Source

Node.js 20.18.3

v20.18.2: 20.18.2

Compare Source

Node.js 20.18.2

v20.18.1: 20.18.1

Compare Source

Node.js 20.18.1

v20.18.0: 20.18.0

Compare Source

Node.js 20.18.0

v20.17.0: 20.17.0

Compare Source

Node.js 20.17.0

v20.16.0: 20.16.0

Compare Source

Node.js 20.16.0

v20.15.1: 20.15.1

Compare Source

Node.js 20.15.1

v20.15.0: 20.15.0

Compare Source

Node.js 20.15.0

v20.14.0: 20.14.0

Compare Source

Node.js 20.14.0

v20.13.1: 20.13.1

Compare Source

Node.js 20.13.1

v20.13.0: 20.13.0

Compare Source

Node.js 20.13.0

v20.12.2: 20.12.2

Compare Source

Node.js 20.12.2

v20.12.1: 20.12.1

Compare Source

Node.js 20.12.1

v20.12.0: 20.12.0

Compare Source

Node.js 20.12.0

v20.11.1: 20.11.1

Compare Source

Node.js 20.11.1

v20.11.0: 20.11.0

Compare Source

Node.js 20.11.0

v20.10.0: 20.10.0

Compare Source

Node.js 20.10.0

v20.9.0: 20.9.0

Compare Source

Node.js 20.9.0

v20.8.1: 20.8.1

Compare Source

Node.js 20.8.1

v20.8.0: 20.8.0

[Compare Source](https://redirect.github.com/actions/node-versions/compare/20.7.0-6231175880...20.8.0-635


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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from ec3f628 to 22bec75 Compare March 14, 2025 21:05
@renovate renovate bot force-pushed the renovate/major-all branch from 22bec75 to c3c5a8b Compare March 24, 2025 20:48
@renovate renovate bot force-pushed the renovate/major-all branch from c3c5a8b to 6f1d591 Compare April 9, 2025 15:54
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from c09569a to 58a7bdb Compare April 25, 2025 15:14
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 2764310 to 3190352 Compare May 10, 2025 20:53
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from e2b4f0a to 8e0705e Compare May 14, 2025 18:26
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 245aa15 to 071f28d Compare May 27, 2025 18:50
@renovate renovate bot force-pushed the renovate/major-all branch 8 times, most recently from 581dd82 to 49dbe85 Compare June 4, 2025 17:15
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from f3b3a36 to 3e84ce3 Compare June 18, 2025 15:48
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from b349f7a to a98210c Compare June 21, 2025 07:38
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 3143f10 to 73845e0 Compare July 3, 2025 15:06
@renovate renovate bot force-pushed the renovate/major-all branch from 73845e0 to 61e2e3c Compare July 5, 2025 03:51
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 41bff11 to 474c0e5 Compare July 15, 2025 21:43
@renovate renovate bot force-pushed the renovate/major-all branch from 474c0e5 to 311ab8a Compare July 19, 2025 07:28
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 5c8d5bf to cc5ada6 Compare July 30, 2025 18:06
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from a5d9eac to 5e54e4c Compare August 9, 2025 09:44
@renovate renovate bot force-pushed the renovate/major-all branch from 5e54e4c to 7c54780 Compare August 11, 2025 16:02
@renovate renovate bot force-pushed the renovate/major-all branch from 7c54780 to 53e2339 Compare August 16, 2025 06:38
Copy link

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