Skip to content

Commit 32d1c2d

Browse files
committed
Bump version to 20.4.0-beta.2
1 parent 76e9440 commit 32d1c2d

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

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

3+
## 20.4.0-beta.2 - 2026-02-05
4+
* [#2571](https://github.com/stripe/stripe-node/pull/2571) Fix `UnhandledPromiseRejection` error on failed V2 List operations
5+
- Fixes a bug where any error returned from the Stripe API on a V2 List call (e.g. a 4xx or 5xx) would crash Node due to an `UnhandledPromiseRejection`
6+
37
## 20.4.0-beta.1 - 2026-01-28
48
This release changes the pinned API version to `2026-01-28.preview`.
59

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.4.0-beta.1
1+
20.4.0-beta.2

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": "20.4.0-beta.1",
3+
"version": "20.4.0-beta.2",
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
@@ -61,7 +61,7 @@ export function createStripe(
6161
platformFunctions: PlatformFunctions,
6262
requestSender: RequestSenderFactory = defaultRequestSenderFactory
6363
): typeof Stripe {
64-
Stripe.PACKAGE_VERSION = '20.4.0-beta.1';
64+
Stripe.PACKAGE_VERSION = '20.4.0-beta.2';
6565
Stripe.API_VERSION = ApiVersion;
6666
Stripe.USER_AGENT = {
6767
bindings_version: Stripe.PACKAGE_VERSION,

0 commit comments

Comments
 (0)