From 97919cd4ac422f72320cc5c44e5e355a1657de40 Mon Sep 17 00:00:00 2001 From: Matt Date: Thu, 30 Oct 2025 11:22:19 +0100 Subject: [PATCH] Update Stripe API version to 2025-10-29.clover MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the Stripe API version from 2024-12-18.acacia to the latest version 2025-10-29.clover as requested. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- server/config/stripe.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/config/stripe.js b/server/config/stripe.js index c4d5c2a..4bdb443 100644 --- a/server/config/stripe.js +++ b/server/config/stripe.js @@ -6,7 +6,7 @@ if (!process.env.STRIPE_SECRET_KEY) { // Initialize Stripe with secret key export const stripe = new Stripe(process.env.STRIPE_SECRET_KEY, { - apiVersion: '2024-12-18.acacia', + apiVersion: '2025-10-29.clover', }); // Webhook configuration