Skip to content

Commit 51f1b5d

Browse files
Bump version to 32.2.0-beta.1
1 parent 5db7b92 commit 51f1b5d

5 files changed

Lines changed: 23 additions & 6 deletions

File tree

CHANGELOG.md

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

3+
## 32.2.0-beta.1 - 2026-04-23
4+
This release changes the pinned API version to 2026-04-22.private.
5+
6+
* [#2198](https://github.com/stripe/stripe-java/pull/2198) Update generated code for beta
7+
* Add support for new resources `sharedpayment.GrantedToken` and `sharedpayment.IssuedToken`
8+
* Add support for `retrieve` method on resource `sharedpayment.GrantedToken`
9+
* Add support for `create` and `revoke` test helper methods on resource `sharedpayment.GrantedToken`
10+
* Add support for `create`, `retrieve`, and `revoke` methods on resource `sharedpayment.IssuedToken`
11+
* Add support for `blik` 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`, `SubscriptionUpdateParams.payment_settings.payment_method_options`, and `checkout.SessionCreateParams.payment_method_options`
12+
* Add support for `sharedPaymentGrantedToken` on `ConfirmationTokenCreateParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentMethod`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
13+
* Add support for new values `fo_vat`, `gi_tin`, `it_cf`, and `py_ruc` on enums `OrderCreateParams.tax_details.tax_ids[].type` and `OrderUpdateParams.tax_details.tax_ids[].type`
14+
* Add support for `validationErrors` on `privacy.RedactionJob`
15+
* Add support for `taxDetails` on `Product`
16+
* ⚠️ Change type of `QuotePreviewInvoice.total_taxes[].tax_rate_details.taxRate` from `string` to `expandable($TaxRate)`
17+
* Add support for `admissionsTax`, `attendanceTax`, `entertainmentTax`, `grossReceiptsTax`, `hospitalityTax`, `luxuryTax`, `resortTax`, and `tourismTax` on `tax.RegistrationCreateParams.country_options.us`
18+
* Add support for `purpose` on `treasury.OutboundPaymentCreateParams` and `treasury.OutboundPayment`
19+
320
## 32.1.0-beta.1 - 2026-03-25
421

522
This release changes the pinned API version to `2026-03-25.preview`. It is built on top of SDK version 32.0.0 which contains breaking changes. Please review the [changelog for 32.0.0](https://github.com/stripe/stripe-java/blob/master/CHANGELOG.md#3200---2026-03-25) if upgrading from older SDK versions.

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

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

0 commit comments

Comments
 (0)