Skip to content

Commit edb2e6c

Browse files
Bump version to 32.2.0-alpha.6
1 parent 6c84822 commit edb2e6c

5 files changed

Lines changed: 26 additions & 6 deletions

File tree

CHANGELOG.md

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

3+
## 32.2.0-alpha.6 - 2026-05-20
4+
* [#2217](https://github.com/stripe/stripe-java/pull/2217) Update generated code for private-preview
5+
* Add support for new resource `PaymentLocationCapability`
6+
* Add support for `list`, `retrieve`, and `update` methods on resource `PaymentLocationCapability`
7+
* Add support for `close` and `simulate_network_lifecycle_dispute_response` test helper methods on resource `issuing.Dispute`
8+
* Change type of `delegatedcheckout.RequestedSessionUpdateParams.discounts.codes` from `array(string)` to `emptyable(array(string))`
9+
* ⚠️ Remove support for `creditedItems` on `InvoiceItem.proration_details`
10+
* Add support for `balanceResponse` on `issuing.Authorization`
11+
* Add support for `paymentEvaluations` on `PaymentAttemptRecordReportCanceledParams`, `PaymentAttemptRecordReportFailedParams`, `PaymentRecordReportPaymentAttemptCanceledParams`, `PaymentRecordReportPaymentAttemptFailedParams`, `PaymentRecordReportPaymentAttemptParams.failed`, and `PaymentRecordReportPaymentParams.failed`
12+
* Add support for `enabled` on `PaymentIntentConfirmParams.payment_details.benefit.fr_meal_voucher`, `PaymentIntentCreateParams.payment_details.benefit.fr_meal_voucher`, `PaymentIntentUpdateParams.payment_details.benefit.fr_meal_voucher`, `SetupIntentConfirmParams.setup_details.benefit.fr_meal_voucher`, `SetupIntentCreateParams.setup_details.benefit.fr_meal_voucher`, and `SetupIntentUpdateParams.setup_details.benefit.fr_meal_voucher`
13+
* Add support for `advancedFeatureDetails` and `allowedPaymentMethodTypes` on `PaymentIntent`
14+
* Change type of `PaymentLocationUpdateParams.address.city` from `string` to `emptyable(string)`
15+
* Change type of `PaymentLocationUpdateParams.address.line1` from `string` to `emptyable(string)`
16+
* Change type of `PaymentLocationUpdateParams.address.line2` from `string` to `emptyable(string)`
17+
* Change type of `PaymentLocationUpdateParams.address.postalCode` from `string` to `emptyable(string)`
18+
* Change type of `PaymentLocationUpdateParams.address.state` from `string` to `emptyable(string)`
19+
* Change `SubscriptionPauseParams.type` to be optional
20+
* ⚠️ Remove support for `paymentBehavior` on `SubscriptionResumeParams`
21+
* ⚠️ Remove support for `statusDetails` on `Subscription`
22+
323
## 32.2.0-alpha.5 - 2026-05-13
424
* [#2216](https://github.com/stripe/stripe-java/pull/2216) Update generated code for private-preview
525
* Add support for new resources `v2.core.FeeBatch`, `v2.core.FeeEntry`, `v2.moneymanagement.DebitDispute`, and `v2.moneymanagement.FinancialAccountStatement`

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.2.0-alpha.5-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
3+
[![Maven Central](https://img.shields.io/badge/maven--central-v32.2.0-alpha.6-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.2.0-alpha.5"
29+
implementation "com.stripe:stripe-java:32.2.0-alpha.6"
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.2.0-alpha.5</version>
40+
<version>32.2.0-alpha.6</version>
4141
</dependency>
4242
```
4343

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
32.2.0-alpha.5
1+
32.2.0-alpha.6

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.2.0-alpha.5
2+
VERSION_NAME=32.2.0-alpha.6
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.2.0-alpha.5";
18+
public static final String VERSION = "32.2.0-alpha.6";
1919

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

0 commit comments

Comments
 (0)