dependabot[bot] opened a new pull request, #22274:
URL: https://github.com/apache/camel/pull/22274

   Bumps [com.stripe:stripe-java](https://github.com/stripe/stripe-java) from 
31.4.1 to 32.0.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/stripe/stripe-java/releases";>com.stripe:stripe-java's 
releases</a>.</em></p>
   <blockquote>
   <h2>v32.0.0</h2>
   <p>This release changes the pinned API version to 
<code>2026-03-25.dahlia</code> and contains breaking changes (prefixed with ⚠️ 
below). There's also a <a 
href="https://github.com/stripe/stripe-java/wiki/Migration-guide-for-v32";>detailed
 migration guide</a> to simplify your upgrade process.</p>
   <p>Please review details for the breaking changes and alternatives in the <a 
href="https://docs.stripe.com/changelog/dahlia";>Stripe API changelog</a> before 
upgrading.</p>
   <ul>
   <li>⚠️ <strong>Breaking change:</strong> <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2182";>#2182</a> Add 
setHttpClient to StripeClientBuilder; clean up apiKey/authenticator coupling
   <ul>
   <li>⚠️ Removed <code>RequestOptions.getApiKey()</code>, 
<code>RequestOptions.RequestOptionsBuilder.getApiKey()</code>, and 
<code>StripeClient.StripeClientBuilder.getApiKey()</code>. Use 
<code>getAuthenticator()</code> instead.</li>
   <li>Added 
<code>StripeClient.StripeClientBuilder.setHttpClient(HttpClient)</code> to 
allow injecting a custom HTTP client.</li>
   </ul>
   </li>
   <li>⚠️ <strong>Breaking change:</strong> <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2187";>#2187</a> 
Regenerate with decimal_string enabled for v2 APIs
   <ul>
   <li>V2 API decimal fields changed type from <code>String</code> to 
<code>BigDecimal</code>. Code that reads or writes these fields as 
<code>String</code> will need to use <code>BigDecimal</code> instead. Affected 
fields:
   <ul>
   <li><strong>V2.Core.Account</strong> / 
<strong>V2.Core.AccountPerson</strong>: <code>percentOwnership</code></li>
   <li><strong>PaymentEvaluation.Signals.FraudulentPayment</strong>: 
<code>score</code></li>
   <li>Params: <code>AccountCreateParams</code>, 
<code>PersonCreateParams</code>, <code>AccountTokenCreateParams</code>, 
<code>PersonTokenCreateParams</code> (all: <code>percentOwnership</code>)</li>
   <li>Params: <code>InvoiceItemCreateParams</code>, 
<code>InvoiceAddLinesParams</code>, <code>InvoiceUpdateLinesParams</code>, 
<code>InvoiceCreatePreviewParams</code> (all: <code>quantityDecimal</code>)</li>
   </ul>
   </li>
   </ul>
   </li>
   <li>⚠️ <strong>Breaking change:</strong> <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2131";>#2131</a> Use 
HTTP status code in V2 errors
   <ul>
   <li><code>RateLimitException</code> now extends <code>StripeException</code> 
rather than <code>ApiException</code></li>
   <li>Non-200 status codes from V2 endpoints will throw a 
<code>StripeException</code> (e.g. <code>RateLimitException</code>, 
<code>InvalidRequestException</code>, etc.) like in V1 instead of a generic 
<code>ApiException</code></li>
   </ul>
   </li>
   <li>⚠️ <strong>Breaking change:</strong> <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2190";>#2190</a> Throw 
an error when using the wrong webhook parsing method</li>
   <li>⚠️ <strong>Breaking change:</strong> <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2172";>#2172</a> Make 
<code>RequestOptions</code> &amp; <code>RawRequestOptions</code> constructors 
private and add Stripe-Request-Trigger header</li>
   <li>⚠️ <strong>Breaking change:</strong> <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2181";>#2181</a> 
Change Automatic-Module-Name to com.stripe
   <ul>
   <li>Changes <code>Automatic-Module-Name</code> from <code>stripe.java</code> 
to <code>com.stripe</code>. Users with <code>requires stripe.java;</code> in 
their <code>module-info.java</code> will need to update to <code>requires 
com.stripe;</code>.</li>
   </ul>
   </li>
   <li><a 
href="https://redirect.github.com/stripe/stripe-java/pull/2179";>#2179</a> Add 
runtime support for V2 int64 string-encoded fields</li>
   </ul>
   <p>See <a 
href="https://github.com/stripe/stripe-java/blob/v32.0.0/CHANGELOG.md";>the 
changelog for more details</a>.</p>
   <h2>v31.5.0-beta.1</h2>
   <p>This release changes the pinned API version to 
<code>2026-02-25.preview</code>.</p>
   <ul>
   <li><a 
href="https://redirect.github.com/stripe/stripe-java/pull/2150";>#2150</a> 
Update generated code for beta
   <ul>
   <li>Add support for <code>smartDisputes</code> on 
<code>Account.settings</code>, <code>AccountCreateParams.settings</code>, 
<code>AccountUpdateParams.settings</code>, 
<code>v2.core.Account.configuration.merchant</code>, 
<code>v2.core.AccountCreateParams.configuration.merchant</code>, and 
<code>v2.core.AccountUpdateParams.configuration.merchant</code></li>
   <li>Add support for <code>emailCustomersOnSuccessfulPayment</code> on 
<code>Account.settings.payments</code>, 
<code>AccountCreateParams.settings.payments</code>, and 
<code>AccountUpdateParams.settings.payments</code></li>
   <li>Add support for <code>managedPayments</code> on 
<code>PaymentIntent</code>, <code>SetupIntent</code>, 
<code>Subscription</code>, <code>checkout.SessionCreateParams</code>, and 
<code>checkout.Session</code></li>
   <li>Add support for new value <code>lk_vat</code> on enums 
<code>OrderCreateParams.tax_details.tax_ids[].type</code> and 
<code>OrderUpdateParams.tax_details.tax_ids[].type</code></li>
   <li>Add support for <code>purpose</code> on 
<code>v2.moneymanagement.OutboundPaymentCreateParams</code> and 
<code>v2.moneymanagement.OutboundPayment</code></li>
   <li>Add support for <code>branchNumber</code> and <code>swiftCode</code> on 
<code>v2.moneymanagement.PayoutMethod.bank_account</code></li>
   </ul>
   </li>
   </ul>
   <p>See <a 
href="https://github.com/stripe/stripe-java/blob/v31.5.0-beta.1/CHANGELOG.md";>the
 changelog for more details</a>.</p>
   <h2>v31.5.0-alpha.4</h2>
   <ul>
   <li><a 
href="https://redirect.github.com/stripe/stripe-java/pull/2183";>#2183</a> 
Update generated code for private-preview
   <ul>
   <li>Add support for <code>simulate_crypto_deposit</code> test helper method 
on resource <code>PaymentIntent</code></li>
   <li>Add support for <code>depositOptions</code> and <code>mode</code> on 
<code>PaymentIntent.payment_method_options.crypto</code>, 
<code>PaymentIntentConfirmParams.payment_method_options.crypto</code>, 
<code>PaymentIntentCreateParams.payment_method_options.crypto</code>, and 
<code>PaymentIntentUpdateParams.payment_method_options.crypto</code></li>
   <li>Add support for <code>cryptoDisplayDetails</code> on 
<code>PaymentIntent.next_action</code></li>
   </ul>
   </li>
   <li><a 
href="https://redirect.github.com/stripe/stripe-java/pull/2177";>#2177</a> 
Update generated code for private-preview
   <ul>
   <li>Add support for new resources <code>orchestration.PaymentAttempt</code> 
and <code>radar.CustomerEvaluation</code></li>
   <li>Add support for <code>retrieve</code> method on resource 
<code>orchestration.PaymentAttempt</code></li>
   <li>Add support for <code>create</code> and <code>update</code> methods on 
resource <code>radar.CustomerEvaluation</code></li>
   <li>Add support for <code>approve</code> method on resource 
<code>checkout.Session</code></li>
   <li>Add support for <code>report_authenticated</code>, 
<code>report_canceled</code>, <code>report_failed</code>, 
<code>report_guaranteed</code>, <code>report_informational</code>, and 
<code>report_refund</code> methods on resource 
<code>PaymentAttemptRecord</code></li>
   <li>Add support for <code>createUsPaperCheckOnApplication</code> on 
<code>AccountSessionCreateParams.components.check_scanning.features</code></li>
   </ul>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/stripe/stripe-java/blob/master/CHANGELOG.md";>com.stripe:stripe-java's
 changelog</a>.</em></p>
   <blockquote>
   <h2>32.0.0 - 2026-03-25</h2>
   <p>This release changes the pinned API version to 
<code>2026-03-25.dahlia</code> and contains breaking changes (prefixed with ⚠️ 
below). There's also a <a 
href="https://github.com/stripe/stripe-java/wiki/Migration-guide-for-v32";>detailed
 migration guide</a> to simplify your upgrade process.</p>
   <p>Please review details for the breaking changes and alternatives in the <a 
href="https://docs.stripe.com/changelog/dahlia";>Stripe API changelog</a> before 
upgrading.</p>
   <ul>
   <li>⚠️ <strong>Breaking change:</strong> <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2182";>#2182</a> Add 
setHttpClient to StripeClientBuilder; clean up apiKey/authenticator coupling
   <ul>
   <li>⚠️ Removed <code>RequestOptions.getApiKey()</code>, 
<code>RequestOptions.RequestOptionsBuilder.getApiKey()</code>, and 
<code>StripeClient.StripeClientBuilder.getApiKey()</code>. Use 
<code>getAuthenticator()</code> instead.</li>
   <li>Added 
<code>StripeClient.StripeClientBuilder.setHttpClient(HttpClient)</code> to 
allow injecting a custom HTTP client.</li>
   </ul>
   </li>
   <li>⚠️ <strong>Breaking change:</strong> <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2187";>#2187</a> 
Regenerate with decimal_string enabled for v2 APIs
   <ul>
   <li>V2 API decimal fields changed type from <code>String</code> to 
<code>BigDecimal</code>. Code that reads or writes these fields as 
<code>String</code> will need to use <code>BigDecimal</code> instead. Affected 
fields:
   <ul>
   <li><strong>V2.Core.Account</strong> / 
<strong>V2.Core.AccountPerson</strong>: <code>percentOwnership</code></li>
   <li><strong>PaymentEvaluation.Signals.FraudulentPayment</strong>: 
<code>score</code></li>
   <li>Params: <code>AccountCreateParams</code>, 
<code>PersonCreateParams</code>, <code>AccountTokenCreateParams</code>, 
<code>PersonTokenCreateParams</code> (all: <code>percentOwnership</code>)</li>
   <li>Params: <code>InvoiceItemCreateParams</code>, 
<code>InvoiceAddLinesParams</code>, <code>InvoiceUpdateLinesParams</code>, 
<code>InvoiceCreatePreviewParams</code> (all: <code>quantityDecimal</code>)</li>
   </ul>
   </li>
   </ul>
   </li>
   <li>⚠️ <strong>Breaking change:</strong> <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2131";>#2131</a> Use 
HTTP status code in V2 errors
   <ul>
   <li><code>RateLimitException</code> now extends <code>StripeException</code> 
rather than <code>ApiException</code></li>
   <li>Non-200 status codes from V2 endpoints will throw a 
<code>StripeException</code> (e.g. <code>RateLimitException</code>, 
<code>InvalidRequestException</code>, etc.) like in V1 instead of a generic 
<code>ApiException</code></li>
   </ul>
   </li>
   <li>⚠️ <strong>Breaking change:</strong> <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2190";>#2190</a> Throw 
an error when using the wrong webhook parsing method</li>
   <li>⚠️ <strong>Breaking change:</strong> <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2172";>#2172</a> Make 
<code>RequestOptions</code> &amp; <code>RawRequestOptions</code> constructors 
private and add Stripe-Request-Trigger header</li>
   <li>⚠️ <strong>Breaking change:</strong> <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2181";>#2181</a> 
Change Automatic-Module-Name to com.stripe
   <ul>
   <li>Changes <code>Automatic-Module-Name</code> from <code>stripe.java</code> 
to <code>com.stripe</code>. Users with <code>requires stripe.java;</code> in 
their <code>module-info.java</code> will need to update to <code>requires 
com.stripe;</code>.</li>
   </ul>
   </li>
   <li><a 
href="https://redirect.github.com/stripe/stripe-java/pull/2179";>#2179</a> Add 
runtime support for V2 int64 string-encoded fields</li>
   </ul>
   <h3>⚠️ Breaking changes due to changes in the Stripe API</h3>
   <ul>
   <li>Generated changes from <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2170";>#2170</a>, <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2193";>#2193</a>, <a 
href="https://redirect.github.com/stripe/stripe-java/pull/2191";>#2191</a>
   <ul>
   <li>Add support for <code>upiPayments</code> on 
<code>Account.capabilities</code>, 
<code>AccountCreateParams.capabilities</code>, and 
<code>AccountUpdateParams.capabilities</code></li>
   <li>Add support for <code>upi</code> on 
<code>Charge.payment_method_details</code>, 
<code>ConfirmationToken.payment_method_preview</code>, 
<code>ConfirmationTokenCreateParams.payment_method_data</code>, 
<code>Mandate.payment_method_details</code>, 
<code>PaymentAttemptRecord.payment_method_details</code>, 
<code>PaymentIntent.payment_method_options</code>, 
<code>PaymentIntentConfirmParams.payment_method_data</code>, 
<code>PaymentIntentConfirmParams.payment_method_options</code>, 
<code>PaymentIntentCreateParams.payment_method_data</code>, 
<code>PaymentIntentCreateParams.payment_method_options</code>, 
<code>PaymentIntentUpdateParams.payment_method_data</code>, 
<code>PaymentIntentUpdateParams.payment_method_options</code>, 
<code>PaymentMethodConfigurationCreateParams</code>, 
<code>PaymentMethodConfigurationUpdateParams</code>, 
<code>PaymentMethodConfiguration</code>, 
<code>PaymentMethodCreateParams</code>, <code>PaymentMethod</code>, 
<code>PaymentRecord.payment_method_details</code>, <
 code>SetupAttempt.payment_method_details</code>, 
<code>SetupIntent.payment_method_options</code>, 
<code>SetupIntentConfirmParams.payment_method_data</code>, 
<code>SetupIntentConfirmParams.payment_method_options</code>, 
<code>SetupIntentCreateParams.payment_method_data</code>, 
<code>SetupIntentCreateParams.payment_method_options</code>, 
<code>SetupIntentUpdateParams.payment_method_data</code>, 
<code>SetupIntentUpdateParams.payment_method_options</code>, 
<code>checkout.Session.payment_method_options</code>, and 
<code>checkout.SessionCreateParams.payment_method_options</code></li>
   <li>Add support for <code>integrationIdentifier</code> on 
<code>checkout.SessionCreateParams</code> and <code>checkout.Session</code></li>
   <li>Add support for new value <code>upi</code> on enums 
<code>PaymentIntentConfirmParams.excludedPaymentMethodTypes</code>, 
<code>PaymentIntentCreateParams.excludedPaymentMethodTypes</code>, 
<code>PaymentIntentUpdateParams.excludedPaymentMethodTypes</code>, 
<code>SetupIntentCreateParams.excludedPaymentMethodTypes</code>, 
<code>SetupIntentUpdateParams.excludedPaymentMethodTypes</code>, and 
<code>checkout.SessionCreateParams.excludedPaymentMethodTypes</code></li>
   <li>Add support for <code>crypto</code> on 
<code>checkout.SessionCreateParams.payment_method_options</code></li>
   <li>Add support for new value <code>upi</code> on enum 
<code>checkout.SessionCreateParams.paymentMethodTypes</code></li>
   <li>Add support for <code>pendingInvoiceItemInterval</code> on 
<code>checkout.SessionCreateParams.subscription_data</code></li>
   <li>Add support for new values <code>elements</code>, 
<code>embedded_page</code>, <code>form</code>, and <code>hosted_page</code> on 
enum <code>checkout.SessionCreateParams.uiMode</code></li>
   <li>Add support for new value <code>upi</code> on enums 
<code>ConfirmationTokenCreateParams.payment_method_data.type</code>, 
<code>PaymentIntentConfirmParams.payment_method_data.type</code>, 
<code>PaymentIntentCreateParams.payment_method_data.type</code>, 
<code>PaymentIntentUpdateParams.payment_method_data.type</code>, 
<code>SetupIntentConfirmParams.payment_method_data.type</code>, 
<code>SetupIntentCreateParams.payment_method_data.type</code>, and 
<code>SetupIntentUpdateParams.payment_method_data.type</code></li>
   <li>Add support for <code>metadata</code> on 
<code>CreditNoteCreateParams.lines[]</code>, <code>CreditNoteLineItem</code>, 
<code>CreditNotePreviewLinesParams.lines[]</code>, and 
<code>CreditNotePreviewParams.lines[]</code></li>
   <li>Add support for new value <code>upi</code> on enums 
<code>CustomerListPaymentMethodsParams.type</code>, 
<code>PaymentMethodCreateParams.type</code>, and 
<code>PaymentMethodListParams.type</code></li>
   <li>Add support for <code>quantityDecimal</code> on 
<code>InvoiceAddLinesParams.lines[]</code>, 
<code>InvoiceCreatePreviewParams.invoice_items[]</code>, 
<code>InvoiceItemCreateParams</code>, <code>InvoiceItemUpdateParams</code>, 
<code>InvoiceItem</code>, <code>InvoiceLineItemUpdateParams</code>, 
<code>InvoiceLineItem</code>, and 
<code>InvoiceUpdateLinesParams.lines[]</code></li>
   <li>⚠️ Add support for <code>level</code> on 
<code>issuing.AuthorizationCreateParams.risk_assessment.card_testing_risk</code>
 and 
<code>issuing.AuthorizationCreateParams.risk_assessment.merchant_dispute_risk</code></li>
   <li>⚠️ Remove support for <code>riskLevel</code> on 
<code>issuing.AuthorizationCreateParams.risk_assessment.card_testing_risk</code>
 and 
<code>issuing.AuthorizationCreateParams.risk_assessment.merchant_dispute_risk</code></li>
   <li>Add support for <code>lifecycleControls</code> on 
<code>issuing.CardCreateParams</code> and <code>issuing.Card</code></li>
   <li>Add support for <code>cryptogram</code>, 
<code>electronicCommerceIndicator</code>, 
<code>exemptionIndicatorApplied</code>, and <code>exemptionIndicator</code> on 
<code>PaymentAttemptRecord.payment_method_details.card.three_d_secure</code> 
and <code>PaymentRecord.payment_method_details.card.three_d_secure</code></li>
   <li>Add support for <code>upiHandleRedirectOrDisplayQrCode</code> on 
<code>PaymentIntent.next_action</code> and 
<code>SetupIntent.next_action</code></li>
   <li>Add support for new value <code>upi</code> on enums 
<code>PaymentLinkCreateParams.paymentMethodTypes</code> and 
<code>PaymentLinkUpdateParams.paymentMethodTypes</code></li>
   <li>Add support for <code>recommendedAction</code> and <code>signals</code> 
on <code>radar.PaymentEvaluation</code></li>
   <li>⚠️ Remove support for <code>insights</code> on 
<code>radar.PaymentEvaluation</code></li>
   <li>Add support for new value <code>crypto_fingerprint</code> on enum 
<code>radar.ValueListCreateParams.itemType</code></li>
   <li>Add support for new value <code>2026-03-25.dahlia</code> on enum 
<code>WebhookEndpointCreateParams.apiVersion</code></li>
   </ul>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/stripe/stripe-java/commit/3ae83bb645aa14c0961402b588c28fa0870bdc33";><code>3ae83bb</code></a>
 Bump version to 32.0.0</li>
   <li><a 
href="https://github.com/stripe/stripe-java/commit/c1e7f1bdfe210ce6e75879808663581c4723b12e";><code>c1e7f1b</code></a>
 ⚠️ Use HTTP status code in V2 errors (<a 
href="https://redirect.github.com/stripe/stripe-java/issues/2131";>#2131</a>)</li>
   <li><a 
href="https://github.com/stripe/stripe-java/commit/a2bc4be1f3e55bc3a070051cfdb67f9a264e96e8";><code>a2bc4be</code></a>
 Update generated code for v2205 and (<a 
href="https://redirect.github.com/stripe/stripe-java/issues/2193";>#2193</a>)</li>
   <li><a 
href="https://github.com/stripe/stripe-java/commit/fc13c71f40c57b296d5316264e3348d561efc958";><code>fc13c71</code></a>
 Update generated code for v2205 and (<a 
href="https://redirect.github.com/stripe/stripe-java/issues/2191";>#2191</a>)</li>
   <li><a 
href="https://github.com/stripe/stripe-java/commit/28de1d0330685ead8c6ace36c539196a282b3161";><code>28de1d0</code></a>
 Regenerate with decimal_string enabled for v2 APIs (<a 
href="https://redirect.github.com/stripe/stripe-java/issues/2187";>#2187</a>)</li>
   <li><a 
href="https://github.com/stripe/stripe-java/commit/150d98514326550ec8b252cb346cd281f15dbbdb";><code>150d985</code></a>
 ⚠️ Throw an error when using the wrong webhook parsing method (<a 
href="https://redirect.github.com/stripe/stripe-java/issues/2190";>#2190</a>)</li>
   <li><a 
href="https://github.com/stripe/stripe-java/commit/0085a0d223745553f0009e9a5a7a7c2a722c82df";><code>0085a0d</code></a>
 Update generated code (<a 
href="https://redirect.github.com/stripe/stripe-java/issues/2170";>#2170</a>)</li>
   <li><a 
href="https://github.com/stripe/stripe-java/commit/608ca740b272c8c15dbd786442704f2e2142e46d";><code>608ca74</code></a>
 tweak CI (<a 
href="https://redirect.github.com/stripe/stripe-java/issues/2186";>#2186</a>)</li>
   <li><a 
href="https://github.com/stripe/stripe-java/commit/0b7d4c47f03ea5f867a48a620973ef02a00fd76e";><code>0b7d4c4</code></a>
 Add setHttpClient to StripeClientBuilder; clean up apiKey/authenticator 
coupl...</li>
   <li><a 
href="https://github.com/stripe/stripe-java/commit/2bdec26a0edde7d167df473047e2280e884a8333";><code>2bdec26</code></a>
 ⚠️ Make <code>RequestOptions</code> &amp; <code>RawRequestOptions</code> 
constructors private and add S...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/stripe/stripe-java/compare/v31.4.1...v32.0.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.stripe:stripe-java&package-manager=maven&previous-version=31.4.1&new-version=32.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to