Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit c6059ef

Browse files
committed
chore(stripe): lock stripe version
1 parent b3aff39 commit c6059ef

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/stripe/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"fastify-plugin": "^4.0.0",
2727
"fastify-raw-body": "^4.2.0",
2828
"node-fetch": "^3.3.0",
29-
"stripe": "^14.7.0"
29+
"stripe": "~14.11.0"
3030
},
3131
"devDependencies": {
3232
"@types/node": "^18.0.0",

packages/stripe/src/plugins/stripe.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default fp(
99
if (!config.secretKey || !config.publicKey || !config.webhookSecret) {
1010
fastify.decorate("stripe", undefined);
1111
} else {
12-
fastify.decorate("stripe", new Stripe(config.secretKey, { apiVersion: "2023-08-16" }));
12+
fastify.decorate("stripe", new Stripe(config.secretKey, { apiVersion: "2023-10-16" }));
1313
}
1414
},
1515
{

0 commit comments

Comments
 (0)