Skip to content

Commit 72c84ae

Browse files
committed
Bump version to 31.4.0-alpha.2
1 parent dda61d4 commit 72c84ae

File tree

5 files changed

+29
-6
lines changed

5 files changed

+29
-6
lines changed

CHANGELOG.md

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

3+
## 31.4.0-alpha.2 - 2026-02-04
4+
* [#2151](https://github.com/stripe/stripe-java/pull/2151) Update generated code for private-preview
5+
* Add support for new resource `v2.core.ConnectionSession`
6+
* Add support for `create` and `retrieve` methods on resource `v2.core.ConnectionSession`
7+
* Add support for `list` method on resources `v2.payments.SettlementAllocationIntentSplit` and `v2.payments.SettlementAllocationIntent`
8+
* Add support for `agenticCommerceSettings` on `AccountSessionCreateParams.components`
9+
* Add support for `terminalHardwareOrders` and `terminalHardwareShop` on `AccountSession.components` and `AccountSessionCreateParams.components`
10+
* Add support for `networkCostPassthroughReport` on `AccountSession.components`
11+
* Add support for `cadenceData` on `v2.billing.IntentCreateParams` and `v2.billing.Intent`
12+
* Add support for `cancellationDetails` on `v2.billing.IntentAction.deactivate`, `v2.billing.IntentCreateParams.actions[].deactivate`, and `v2.billing.PricingPlanSubscription`
13+
* Add support for `contactPhone` on `v2.core.AccountCreateParams`, `v2.core.AccountTokenCreateParams`, `v2.core.AccountUpdateParams`, and `v2.core.Account`
14+
* Add support for `registrationDate` on `v2.core.Account.identity.business_details`, `v2.core.AccountCreateParams.identity.business_details`, `v2.core.AccountTokenCreateParams.identity.business_details`, and `v2.core.AccountUpdateParams.identity.business_details`
15+
* Add support for `reference` on `v2.moneymanagement.Adjustment`
16+
* Add support for `accruedFees` on `v2.moneymanagement.FinancialAccount`
17+
* Add support for `startingBalance` on `v2.moneymanagement.FinancialAccount.payments`
18+
* Add support for `accountHolderAddress` and `accountHolderName` on `v2.moneymanagement.FinancialAddress.credentials.us_bank_account`
19+
* Add support for `fingerprint` on `v2.moneymanagement.PayoutMethod.card`
20+
* Add support for `cardSpend` on `v2.moneymanagement.ReceivedCredit` and `v2.moneymanagement.ReceivedDebit`
21+
* Add support for `applicationFeeRefund`, `applicationFee`, `charge`, `dispute`, `payout`, `refund`, `reserveHold`, `reserveRelease`, `topup`, `transferReversal`, and `transfer` on `v2.moneymanagement.Transaction.flow` and `v2.moneymanagement.TransactionEntry.transaction_details.flow`
22+
* Add support for new value `accrued_fees` on enum `v2.moneymanagement.FinancialAccountListParams.types`
23+
* Add support for new value `gb_vat` on enums `v2.core.AccountCreateParams.identity.business_details.id_numbers[].type`, `v2.core.AccountTokenCreateParams.identity.business_details.id_numbers[].type`, and `v2.core.AccountUpdateParams.identity.business_details.id_numbers[].type`
24+
* Change `v2.billing.RateCardRateCreateParams.meteredItem` to be required
25+
326
## 31.4.0-alpha.1 - 2026-01-28
427
This release changes the pinned API version to `2026-01-28.preview`.
528

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.4.0-alpha.1-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
3+
[![Maven Central](https://img.shields.io/badge/maven--central-v31.4.0-alpha.2-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

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

2525
```groovy
26-
implementation "com.stripe:stripe-java:31.4.0-alpha.1"
26+
implementation "com.stripe:stripe-java:31.4.0-alpha.2"
2727
```
2828

2929
### Maven users
@@ -34,7 +34,7 @@ Add this dependency to your project's POM:
3434
<dependency>
3535
<groupId>com.stripe</groupId>
3636
<artifactId>stripe-java</artifactId>
37-
<version>31.4.0-alpha.1</version>
37+
<version>31.4.0-alpha.2</version>
3838
</dependency>
3939
```
4040

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
31.4.0-alpha.1
1+
31.4.0-alpha.2

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.4.0-alpha.1
2+
VERSION_NAME=31.4.0-alpha.2
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.4.0-alpha.1";
18+
public static final String VERSION = "31.4.0-alpha.2";
1919

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

0 commit comments

Comments
 (0)