File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 1
1
# 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
+
2
16
## 18.1.0 - 2025-04-30
3
17
4
18
This release changes the pinned API version to ` 2025-04-30.basil ` .
Original file line number Diff line number Diff line change 1
- 18.1.0
1
+ 18.1.1
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " stripe" ,
3
- "version" : " 18.1.0 " ,
3
+ "version" : " 18.1.1 " ,
4
4
"description" : " Stripe API wrapper" ,
5
5
"keywords" : [
6
6
" stripe" ,
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export function createStripe(
59
59
platformFunctions : PlatformFunctions ,
60
60
requestSender : RequestSenderFactory = defaultRequestSenderFactory
61
61
) : typeof Stripe {
62
- Stripe . PACKAGE_VERSION = '18.1.0 ' ;
62
+ Stripe . PACKAGE_VERSION = '18.1.1 ' ;
63
63
Stripe . USER_AGENT = {
64
64
bindings_version : Stripe . PACKAGE_VERSION ,
65
65
lang : 'node' ,
You can’t perform that action at this time.
0 commit comments