Skip to content

Commit 870df04

Browse files
Bump version to 18.1.1
1 parent 8445f62 commit 870df04

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Changelog
2+
## 18.1.1 - 2025-05-19
3+
* [#2308](https://github.com/stripe/stripe-node/pull/2308) RawRequest can use custom host
4+
* RawRequest now allows you set `host` and `streaming` in request options.
5+
```typescript
6+
const file = await stripe.rawRequest(
7+
'GET',
8+
'/v1/files/file_123/contents',
9+
{},
10+
{host: 'files.stripe.com', streaming: true}
11+
);
12+
```
13+
* [#2320](https://github.com/stripe/stripe-node/pull/2320) fix: examples/webhook-signing/nestjs/package.json to reduce vulnerabi…
14+
* [#2326](https://github.com/stripe/stripe-node/pull/2326) Adds CONTRIBUTING.md
15+
216
## 18.1.0 - 2025-04-30
317

418
This release changes the pinned API version to `2025-04-30.basil`.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.1.0
1+
18.1.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": "18.1.0",
3+
"version": "18.1.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
@@ -59,7 +59,7 @@ export function createStripe(
5959
platformFunctions: PlatformFunctions,
6060
requestSender: RequestSenderFactory = defaultRequestSenderFactory
6161
): typeof Stripe {
62-
Stripe.PACKAGE_VERSION = '18.1.0';
62+
Stripe.PACKAGE_VERSION = '18.1.1';
6363
Stripe.USER_AGENT = {
6464
bindings_version: Stripe.PACKAGE_VERSION,
6565
lang: 'node',

0 commit comments

Comments
 (0)