Skip to content

Commit cd37753

Browse files
Bump version to 32.3.0-alpha.1
1 parent 8072c59 commit cd37753

5 files changed

Lines changed: 25 additions & 6 deletions

File tree

CHANGELOG.md

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

3+
## 32.3.0-alpha.1 - 2026-05-27
4+
This release changes the pinned API version to 2026-05-27.private.
5+
6+
* [#2221](https://github.com/stripe/stripe-java/pull/2221) Update generated code for private-preview
7+
* Change type of `billing.AlertCreateParams.spend_threshold.groupBy` from `literal('pricing_plan_subscription')` to `enum('billing_cadence'|'pricing_plan_subscription')`
8+
* ⚠️ Change type of `billing.Alert.spend_threshold.groupBy` from `literal('pricing_plan_subscription')` to `enum('billing_cadence'|'pricing_plan_subscription')`
9+
* Add support for `wechatPay` on `Invoice.payment_settings.payment_method_options`, `InvoiceCreateParams.payment_settings.payment_method_options`, `InvoiceUpdateParams.payment_settings.payment_method_options`, `QuotePreviewInvoice.payment_settings.payment_method_options`, `Subscription.payment_settings.payment_method_options`, `SubscriptionCreateParams.payment_settings.payment_method_options`, and `SubscriptionUpdateParams.payment_settings.payment_method_options`
10+
* Add support for `giftCard` on `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_options`, and `PaymentIntentUpdateParams.payment_method_options`
11+
* Add support for `paymentDetails` on `PaymentIntentCreateParams.payments_orchestration`
12+
* Add support for `enabled` on `PaymentIntent.payment_details.benefit.fr_meal_voucher` and `SetupIntent.setup_details.benefit.fr_meal_voucher`
13+
* ⚠️ Remove support for `loginFailed`, `registrationFailed`, `registrationSuccess`, and `type` on `radar.CustomerEvaluationUpdateParams`
14+
* ⚠️ Remove support for `latestVersion` on `v2.billing.LicenseFee`, `v2.billing.PricingPlan`, and `v2.billing.RateCard`
15+
* ⚠️ Remove support for `serviceIntervalCount` and `serviceInterval` on `v2.billing.LicenseFee` and `v2.billing.RateCard`
16+
* Add support for `debitAgreement` on `v2.moneymanagement.ReceivedCredit.stripe_balance_payment`
17+
* Add support for new value `chaps` on enum `v2.FinancialAddressCreditSimulationCreditParams.network`
18+
* Add support for `canonicalPath` on `EventsV2CoreHealthTrafficVolumeDropFiringEvent.impact` and `EventsV2CoreHealthTrafficVolumeDropResolvedEvent.impact`
19+
* Add support for snapshot event `payment_intent.expired` with resource `PaymentIntent`
20+
* Add support for event notifications `V2CoreHealthElementsErrorFiringEvent`, `V2CoreHealthElementsErrorResolvedEvent`, `V2CoreHealthInvoiceCountDroppedFiringEvent`, and `V2CoreHealthInvoiceCountDroppedResolvedEvent`
21+
322
## 32.2.0-alpha.6 - 2026-05-20
423
* [#2217](https://github.com/stripe/stripe-java/pull/2217) Update generated code for private-preview
524
* Add support for new resource `PaymentLocationCapability`

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.6-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
3+
[![Maven Central](https://img.shields.io/badge/maven--central-v32.3.0-alpha.1-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.6"
29+
implementation "com.stripe:stripe-java:32.3.0-alpha.1"
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.6</version>
40+
<version>32.3.0-alpha.1</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.6
1+
32.3.0-alpha.1

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

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

0 commit comments

Comments
 (0)