Skip to content

Commit a06f892

Browse files
committed
Bump version to 30.1.0-alpha.4
1 parent b17db4f commit a06f892

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

CHANGELOG.md

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

3+
## 30.1.0-alpha.4 - 2025-10-23
4+
* [#2088](https://github.com/stripe/stripe-java/pull/2088) Update generated code for private-preview
5+
* Add support for new resource `v2.billing.PricingPlanSubscriptionComponents`
6+
* Add support for `retrieve` method on resource `v2.billing.PricingPlanSubscriptionComponents`
7+
* Add support for `dimensionPayloadKeys` on `billing.MeterCreateParams` and `billing.Meter`
8+
* Add support for `dimensionFilters` and `dimensionGroupByKeys` on `billing.MeterEventSummaryListParams`
9+
* Add support for `dimensions` on `billing.MeterEventSummary`
10+
* Add support for `fulfillmentDetails` and `paymentMethodData` on `delegatedcheckout.RequestedSessionCreateParams` and `delegatedcheckout.RequestedSessionUpdateParams`
11+
* Add support for `lineItemDetails`, `metadata`, `paymentMethod`, and `sharedMetadata` on `delegatedcheckout.RequestedSessionCreateParams`, `delegatedcheckout.RequestedSessionUpdateParams`, and `delegatedcheckout.RequestedSession`
12+
* Add support for `currency`, `customer`, and `riskDetails` on `delegatedcheckout.RequestedSessionCreateParams`
13+
* Add support for `sellerDetails` and `setupFutureUsage` on `delegatedcheckout.RequestedSessionCreateParams` and `delegatedcheckout.RequestedSession`
14+
* Add support for `amountSubtotal`, `amountTotal`, `createdAt`, `expiresAt`, `orderDetails`, `sharedPaymentIssuedToken`, `status`, `totalDetails`, and `updatedAt` on `delegatedcheckout.RequestedSession`
15+
* Add support for `address`, `email`, `fulfillmentOptions`, `name`, `phone`, and `selectedFulfillmentOption` on `delegatedcheckout.RequestedSession.fulfillment_details`
16+
* Add support for new values `billie`, `crypto`, `kr_card`, `kriya`, `mb_way`, `mondu`, `ng_bank_transfer`, `ng_bank`, `ng_card`, `ng_market`, `ng_ussd`, `ng_wallet`, `payco`, `paypay`, `rechnung`, `samsung_pay`, `satispay`, `scalapay`, `sequra`, `sunbit`, `us_bank_account`, and `vipps` on enums `EventsV2CoreHealthAuthorizationRateDropFiringEvent.impact.paymentMethodType`, `EventsV2CoreHealthAuthorizationRateDropResolvedEvent.impact.paymentMethodType`, `EventsV2CoreHealthPaymentMethodErrorFiringEvent.impact.paymentMethodType`, and `EventsV2CoreHealthPaymentMethodErrorResolvedEvent.impact.paymentMethodType`
17+
318
## 30.1.0-alpha.3 - 2025-10-17
419
* [#2087](https://github.com/stripe/stripe-java/pull/2087) Update generated code for private-preview
520
* Add support for new resources `delegatedcheckout.RequestedSession` and `identity.BlocklistEntry`

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

@@ -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:30.1.0-alpha.3"
26+
implementation "com.stripe:stripe-java:30.1.0-alpha.4"
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>30.1.0-alpha.3</version>
37+
<version>30.1.0-alpha.4</version>
3838
</dependency>
3939
```
4040

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
30.1.0-alpha.3
1+
30.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=30.1.0-alpha.3
2+
VERSION_NAME=30.1.0-alpha.4
33

44
POM_URL=https://github.com/stripe/stripe-java
55
POM_SCM_URL=[email protected]: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 = "30.1.0-alpha.3";
18+
public static final String VERSION = "30.1.0-alpha.4";
1919

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

0 commit comments

Comments
 (0)