Skip to content

Commit 9447931

Browse files
Bump version to 22.3.0-beta.1
1 parent 2c9facd commit 9447931

5 files changed

Lines changed: 27 additions & 4 deletions

File tree

CHANGELOG.md

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

3+
## 22.3.0-beta.1 - 2026-05-27
4+
This release changes the pinned API version to 2026-05-27.private.
5+
6+
* [#2720](https://github.com/stripe/stripe-node/pull/2720) Update generated code for beta
7+
* Add support for `pause` method on resource `Subscription`
8+
* Add support for `retrieve` method on resource `V2.Iam.ActivityLog`
9+
* ⚠️ Add support for new value `mastercard` on enum `Issuing.Settlement.network`
10+
* ⚠️ Change type of `ProductCatalog.TrialOffer.end_behavior.transition.price` from `string` to `expandable(Price)`
11+
* Add support for `amount_paid_off_stripe` on `QuotePreviewInvoice`
12+
* ⚠️ Add support for new value `twint` on enum `QuotePreviewInvoice.payment_settings.payment_method_types`
13+
* Add support for `discountable` on `QuotePreviewSubscriptionSchedule.phases[].add_invoice_items[]`
14+
* Add support for `bizum` and `scalapay` on `SharedPayment.GrantedToken.payment_method_details`
15+
* ⚠️ Add support for new values `bizum` and `scalapay` on enum `SharedPayment.GrantedToken.payment_method_details.type`
16+
* Change `SharedPayment.GrantedToken.agent_details` to be required
17+
* Change type of `SubscriptionItem.billed_until` from `DateTime | null` to `DateTime`
18+
* Add support for `payment_behavior` on `SubscriptionResumeParams`
19+
* Add support for `status_details` on `Subscription`
20+
* Change `Subscription.billing_schedules` to be required
21+
* ⚠️ Add support for new values `ao_bank_account`, `az_bank_account`, `bd_bank_account`, `bo_bank_account`, `br_bank_account`, `cl_bank_account`, `ga_bank_account`, `gh_bank_account`, `gi_bank_account`, `hn_bank_account`, `kr_bank_account`, `kz_bank_account`, `la_bank_account`, `ne_bank_account`, `ng_bank_account`, `ni_bank_account`, `py_bank_account`, `sa_bank_account`, `sm_bank_account`, and `uy_bank_account` on enum `V2.Core.Account.configuration.recipient.default_outbound_destination.type`
22+
* ⚠️ Change type of `V2.MoneyManagement.ReceivedCredit.bank_transfer.gb_bank_account.network` from `literal('fps')` to `enum('chaps'|'fps')`
23+
* Add support for new value `chaps` on enum `V2.FinancialAddressCreditSimulationCreditParams.network`
24+
* Add support for error codes `payment_method_microdeposit_processing_error` and `siret_invalid` on `QuotePreviewInvoice.last_finalization_error`
25+
326
## 22.2.0-beta.3 - 2026-05-07
427
* [#2706](https://github.com/stripe/stripe-node/pull/2706) Merge bug fixes from https://github.com/stripe/stripe-node/releases/tag/v22.1.1 to Public Preview
528

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.2.0-beta.3
1+
22.3.0-beta.1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stripe",
3-
"version": "22.2.0-beta.3",
3+
"version": "22.3.0-beta.1",
44
"description": "Stripe API wrapper",
55
"keywords": [
66
"stripe",

src/stripe.core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,7 @@ const defaultRequestSenderFactory: RequestSenderFactory = (stripe) =>
10551055
new RequestSender(stripe, StripeResource.MAX_BUFFERED_REQUEST_METRICS);
10561056

10571057
export class Stripe {
1058-
static PACKAGE_VERSION = '22.2.0-beta.3';
1058+
static PACKAGE_VERSION = '22.3.0-beta.1';
10591059
static API_VERSION: typeof ApiVersion = ApiVersion;
10601060
static aiAgent = '';
10611061
static AI_AGENT = '';

src/stripe.esm.node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1056,7 +1056,7 @@ const defaultRequestSenderFactory: RequestSenderFactory = (stripe) =>
10561056
new RequestSender(stripe, StripeResource.MAX_BUFFERED_REQUEST_METRICS);
10571057

10581058
export class Stripe {
1059-
static PACKAGE_VERSION = '22.2.0-beta.3';
1059+
static PACKAGE_VERSION = '22.3.0-beta.1';
10601060
static API_VERSION: typeof ApiVersion = ApiVersion;
10611061
static aiAgent = '';
10621062
static AI_AGENT = '';

0 commit comments

Comments
 (0)