Skip to content

Commit 6d91dc6

Browse files
Bump version to 31.5.0-alpha.4
1 parent 6978cd9 commit 6d91dc6

5 files changed

Lines changed: 37 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog
22

3+
## 31.5.0-alpha.4 - 2026-03-18
4+
* [#2183](https://github.com/stripe/stripe-java/pull/2183) Update generated code for private-preview
5+
* Add support for `simulate_crypto_deposit` test helper method on resource `PaymentIntent`
6+
* Add support for `depositOptions` and `mode` on `PaymentIntent.payment_method_options.crypto`, `PaymentIntentConfirmParams.payment_method_options.crypto`, `PaymentIntentCreateParams.payment_method_options.crypto`, and `PaymentIntentUpdateParams.payment_method_options.crypto`
7+
* Add support for `cryptoDisplayDetails` on `PaymentIntent.next_action`
8+
* [#2177](https://github.com/stripe/stripe-java/pull/2177) Update generated code for private-preview
9+
* Add support for new resources `orchestration.PaymentAttempt` and `radar.CustomerEvaluation`
10+
* Add support for `retrieve` method on resource `orchestration.PaymentAttempt`
11+
* Add support for `create` and `update` methods on resource `radar.CustomerEvaluation`
12+
* Add support for `approve` method on resource `checkout.Session`
13+
* Add support for `report_authenticated`, `report_canceled`, `report_failed`, `report_guaranteed`, `report_informational`, and `report_refund` methods on resource `PaymentAttemptRecord`
14+
* Add support for `createUsPaperCheckOnApplication` on `AccountSessionCreateParams.components.check_scanning.features`
15+
* Add support for `approvalMethod` on `checkout.SessionCreateParams` and `checkout.Session`
16+
* Add support for `currentAttempt` on `checkout.Session`
17+
* Add support for `selectedFulfillmentOptionOverrides` on `delegatedcheckout.RequestedSessionUpdateParams.fulfillment_details`
18+
* Add support for `pricingPlanSubscriptionDetails` on `InvoiceItem.parent` and `InvoiceLineItem.parent`
19+
* ⚠️ Remove support for `licenseFeeSubscriptionDetails` on `InvoiceItem.parent` and `InvoiceLineItem.parent`
20+
* ⚠️ Remove support for `pricingPlanSubscription` and `pricingPlanVersion` on `InvoiceItem.parent.rate_card_subscription_details` and `InvoiceLineItem.parent.rate_card_subscription_details`
21+
* Add support for `tokenDetails` on `issuing.Authorization`
22+
* Add support for `failureCode` on `PaymentRecordReportPaymentAttemptFailedParams`, `PaymentRecordReportPaymentAttemptParams.failed`, and `PaymentRecordReportPaymentParams.failed`
23+
* Change `PaymentRecordReportPaymentAttemptCanceledParams.canceledAt` to be optional
24+
* Change `PaymentRecordReportPaymentAttemptFailedParams.failedAt` to be optional
25+
* Change `PaymentRecordReportPaymentAttemptGuaranteedParams.guaranteedAt` to be optional
26+
* Change `PaymentRecordReportRefundParams.refunded` to be optional
27+
* ⚠️ Remove support for value `now` from enums `QuoteCreateParams.subscription_data.billing_schedules[].bill_from.type`, `QuoteCreateParams.subscription_data_overrides[].billing_schedules[].bill_from.type`, `QuoteUpdateParams.subscription_data.billing_schedules[].bill_from.type`, and `QuoteUpdateParams.subscription_data_overrides[].billing_schedules[].bill_from.type`
28+
* ⚠️ Change `radar.IssuingAuthorizationEvaluationCreateParams.card_details.binCountry` to be required
29+
* Add support for `recurringInterval` on `sharedpayment.GrantedTokenCreateParams.usage_limits`
30+
* Change `sharedpayment.GrantedTokenCreateParams.usage_limits.expiresAt` to be optional
31+
* Add support for `homeRuleTax` on `tax.Registration.country_options.us` and `tax.RegistrationCreateParams.country_options.us`
32+
* Add support for new value `home_rule_tax` on enum `tax.RegistrationCreateParams.country_options.us.type`
33+
334
## 31.5.0-alpha.3 - 2026-03-11
435
* [#2171](https://github.com/stripe/stripe-java/pull/2171) Update generated code for private-preview
536
* Add support for new resource `radar.IssuingAuthorizationEvaluation`

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Stripe Java client library
22

3-
[![Maven Central](https://img.shields.io/badge/maven--central-v31.5.0-alpha.3-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
3+
[![Maven Central](https://img.shields.io/badge/maven--central-v31.5.0-alpha.4-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
44
[![JavaDoc](http://img.shields.io/badge/javadoc-reference-blue.svg)](https://stripe.dev/stripe-java)
55
[![Build Status](https://github.com/stripe/stripe-java/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/stripe/stripe-java/actions?query=branch%3Amaster)
66

@@ -26,7 +26,7 @@ We support LTS versions of the JDK. Currently, that's Java versions:
2626
Add this dependency to your project's build file:
2727

2828
```groovy
29-
implementation "com.stripe:stripe-java:31.5.0-alpha.3"
29+
implementation "com.stripe:stripe-java:31.5.0-alpha.4"
3030
```
3131

3232
### Maven users
@@ -37,7 +37,7 @@ Add this dependency to your project's POM:
3737
<dependency>
3838
<groupId>com.stripe</groupId>
3939
<artifactId>stripe-java</artifactId>
40-
<version>31.5.0-alpha.3</version>
40+
<version>31.5.0-alpha.4</version>
4141
</dependency>
4242
```
4343

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
31.5.0-alpha.3
1+
31.5.0-alpha.4

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.stripe
2-
VERSION_NAME=31.5.0-alpha.3
2+
VERSION_NAME=31.5.0-alpha.4
33

44
POM_URL=https://github.com/stripe/stripe-java
55
POM_SCM_URL=git@github.com:stripe/stripe-java.git

src/main/java/com/stripe/Stripe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public abstract class Stripe {
1515
public static final String LIVE_API_BASE = "https://api.stripe.com";
1616
public static final String UPLOAD_API_BASE = "https://files.stripe.com";
1717
public static final String METER_EVENTS_API_BASE = "https://meter-events.stripe.com";
18-
public static final String VERSION = "31.5.0-alpha.3";
18+
public static final String VERSION = "31.5.0-alpha.4";
1919

2020
public static volatile String apiKey;
2121
public static volatile String clientId;

0 commit comments

Comments
 (0)