Skip to content

Commit 47cdb5e

Browse files
committed
Bump version to 20.3.1
1 parent cdeb573 commit 47cdb5e

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,4 +1,8 @@
11
# Changelog
2+
## 20.3.1 - 2026-02-05
3+
* [#2571](https://github.com/stripe/stripe-node/pull/2571) Fix `UnhandledPromiseRejection` error on failed V2 List operations
4+
- 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`
5+
26
## 20.3.0 - 2026-01-28
37
This release changes the pinned API version to `2026-01-28.clover`.
48

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.3.0
1+
20.3.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": "20.3.0",
3+
"version": "20.3.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
@@ -60,7 +60,7 @@ export function createStripe(
6060
platformFunctions: PlatformFunctions,
6161
requestSender: RequestSenderFactory = defaultRequestSenderFactory
6262
): typeof Stripe {
63-
Stripe.PACKAGE_VERSION = '20.3.0';
63+
Stripe.PACKAGE_VERSION = '20.3.1';
6464
Stripe.API_VERSION = ApiVersion;
6565
Stripe.USER_AGENT = {
6666
bindings_version: Stripe.PACKAGE_VERSION,

0 commit comments

Comments
 (0)