Update dependencies and add Stripe customer_account fields#130
Merged
janhesters merged 1 commit intomainfrom Feb 25, 2026
Merged
Update dependencies and add Stripe customer_account fields#130janhesters merged 1 commit intomainfrom
janhesters merged 1 commit intomainfrom
Conversation
Upgrade all dependencies and devDependencies using npm-check-updates. Notable changes: - React Router 7.10.1 → 7.13.1 - Stripe 20.0.0 → 20.4.0 (added customer_account and payto fields) - Biome 2.3.8 → 2.4.4 (updated schema) - Prisma 7.1.0 → 7.4.1 - Tailwind CSS 4.1.18 → 4.2.1 - Vite 7.2.7 → 7.3.1 - React 19.2.3 → 19.2.4 https://claude.ai/code/session_01QvwNCtbDXXZQ7aVYGpaMmQ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR updates project dependencies to their latest versions and adds support for the
customer_accountfield in Stripe API factories to align with the latest Stripe API schema.Key Changes
Dependency Updates: Updated 60+ dependencies across the project, including:
Stripe API Schema Updates: Added
customer_accountfield (initialized tonull) to Stripe factory functions:createStripeCustomerPortalSessionFactorycreateStripeSubscriptionFactorycreateStripeCheckoutSessionFactorycreateStripeSubscriptionScheduleFactorycreateStripeCustomerSubscriptionCreatedEventFactory(addedpaytofield)Code Formatting: Fixed test formatting in Playwright E2E tests for consistency
Configuration Updates: Updated Biome schema reference to 2.4.4
Implementation Details
The
customer_accountfield additions ensure the Stripe factory mocks remain compatible with the latest Stripe API schema (v20.4.0+), where this field was introduced. All instances are initialized tonullto maintain backward compatibility with existing test scenarios.https://claude.ai/code/session_01QvwNCtbDXXZQ7aVYGpaMmQ