Skip to content

Commit efb2cb5

Browse files
Bump version to 32.1.0-alpha.4
1 parent 013d391 commit efb2cb5

5 files changed

Lines changed: 34 additions & 6 deletions

File tree

CHANGELOG.md

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

3+
## 32.1.0-alpha.4 - 2026-04-15
4+
* [#2204](https://github.com/stripe/stripe-java/pull/2204) Update generated code for private-preview
5+
* Add support for `latestVersion` on `v2.billing.LicenseFee`, `v2.billing.PricingPlan`, and `v2.billing.RateCard`
6+
* Add support for `serviceIntervalCount` and `serviceInterval` on `v2.billing.LicenseFee` and `v2.billing.RateCard`
7+
* [#2202](https://github.com/stripe/stripe-java/pull/2202) Update generated code for private-preview
8+
* Add support for new resources `v2.core.WorkflowRun` and `v2.core.Workflow`
9+
* Add support for `report_authorized` method on resource `PaymentAttemptRecord`
10+
* Add support for `list` and `retrieve` methods on resource `v2.core.WorkflowRun`
11+
* Add support for `invoke`, `list`, and `retrieve` methods on resource `v2.core.Workflow`
12+
* Add support for `nextAction` and `status` on `sharedpayment.IssuedToken`
13+
* ⚠️ Remove support for `networkId` on `sharedpayment.IssuedToken.seller_details`
14+
* Add support for `bills` on `AccountSession.components`
15+
* Add support for `settlementCurrencies` on `BalanceSettings.payments` and `BalanceSettingsUpdateParams.payments`
16+
* Add support for `defaultSettlementCurrency` on `BalanceSettings.payments`
17+
* Add support for `accountFunding` on `Charge.payment_method_details.card`
18+
* Add support for `automaticSurcharge` on `PaymentLinkCreateParams`, `PaymentLink`, `checkout.SessionCreateParams`, and `checkout.Session`
19+
* Add support for `bizum` on `checkout.Session.payment_method_options` and `checkout.SessionCreateParams.payment_method_options`
20+
* Add support for `surchargeCost` on `checkout.Session`
21+
* Add support for `amountSurcharge` on `checkout.Session.total_details`
22+
* Add support for `sharedPaymentGrantedToken` on `ConfirmationTokenCreateParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_data`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
23+
* Add support for new value `email` on enums `identity.VerificationReportListParams.type`, `identity.VerificationSessionCreateParams.type`, and `identity.VerificationSessionUpdateParams.type`
24+
* Add support for `details` on `identity.VerificationReport.email`
25+
* Add support for `confirm` on `identity.VerificationSessionCreateParams` and `identity.VerificationSessionUpdateParams`
26+
* Add support for `subscription` on `InvoiceItem.parent.schedule_details`
27+
* ⚠️ Remove support for `sharedPaymentGrantedToken` on `PaymentIntentConfirmParams` and `PaymentIntentCreateParams`
28+
* Add support for `moneyServices` on `PaymentIntent.payment_details`
29+
* ⚠️ Remove support for `externalReference` on `Plan`
30+
331
## 32.1.0-alpha.3 - 2026-04-08
432
* [#2199](https://github.com/stripe/stripe-java/pull/2199) Update generated code for private-preview
533
* Add support for `paymentRecord` on `ApplicationFee.fee_source`

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-v32.1.0-alpha.3-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
3+
[![Maven Central](https://img.shields.io/badge/maven--central-v32.1.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:32.1.0-alpha.3"
29+
implementation "com.stripe:stripe-java:32.1.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>32.1.0-alpha.3</version>
40+
<version>32.1.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-
32.1.0-alpha.3
1+
32.1.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=32.1.0-alpha.3
2+
VERSION_NAME=32.1.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 = "32.1.0-alpha.3";
18+
public static final String VERSION = "32.1.0-alpha.4";
1919

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

0 commit comments

Comments
 (0)