Catalog
stripe/upgrade-stripe

stripe

upgrade-stripe

Guide for upgrading Stripe API versions and SDKs

global
New~1.4k
v1.1Saved Jun 28, 2026

The latest Stripe API version is 2026-06-24.dahlia - use this version when upgrading unless the user specifies a different target version.

Upgrading Stripe Versions

This guide covers upgrading Stripe API versions, server-side SDKs, Stripe.js, and mobile SDKs.

Understanding Stripe API Versioning

Stripe uses date-based API versions (e.g., 2026-06-24.dahlia, 2025-08-27.basil, 2024-12-18.acacia). Your account’s API version determines request/response behavior.

Types of Changes

Backward-Compatible Changes (don’t require code updates):

  • New API resources
  • New optional request parameters
  • New properties in existing responses
  • Changes to opaque string lengths (e.g., object IDs)
  • New webhook event types

Breaking Changes (require code updates):

  • Field renames or removals
  • Behavioral modifications
  • Removed endpoints or parameters

Review the API Changelog for all changes between versions.

Server-Side SDK Versioning

See SDK Version Management for details.

Dynamically-Typed Languages (Ruby, Python, PHP, Node.js)

These SDKs offer flexible version control:

Global Configuration:

import stripe
stripe.api_version = '2026-06-24.dahlia'
Stripe.api_version = '2026-06-24.dahlia'
const stripe = require('stripe')('sk_test_xxx', {
  apiVersion: '2026-06-24.dahlia'
});

Per-Request Override:

stripe.Customer.create(
  email="customer@example.com",
  stripe_version='2026-06-24.dahlia'
)

Strongly-Typed Languages (Java, Go, .NET)

These use a fixed API version matching the SDK release date. Don’t set a different API version for strongly-typed languages because response objects might not match the strong types in the SDK. Instead, update the SDK to target a new API version.

Best Practice

Always specify the API version you’re integrating against in your code instead of relying on your account’s default API version:

// Good: Explicit version
const stripe = require('stripe')('sk_test_xxx', {
  apiVersion: '2026-06-24.dahlia'
});

// Avoid: Relying on account default
const stripe = require('stripe')('sk_test_xxx');

Stripe.js Versioning

See Stripe.js Versioning for details.

Stripe.js uses an evergreen model with major releases (Acacia, Basil, Clover, Dahlia) on a biannual basis.

Loading Versioned Stripe.js

Via Script Tag:

<script src="https://js.stripe.com/dahlia/stripe.js"></script>

Via npm:

npm install @stripe/stripe-js

Major npm versions correspond to specific Stripe.js versions.

API Version Pairing

Each Stripe.js version automatically pairs with its corresponding API version. For instance:

  • Dahlia Stripe.js uses 2026-06-24.dahlia API
  • Acacia Stripe.js uses 2024-12-18.acacia API

You can’t override this association.

Migrating from v3

  1. Identify your current API version in code
  2. Review the changelog for relevant changes
  3. Consider gradually updating your API version before switching Stripe.js versions
  4. Stripe continues supporting v3 indefinitely

Mobile SDK Versioning

See Mobile SDK Versioning for details.

iOS and Android SDKs

Both platforms follow semantic versioning (MAJOR.MINOR.PATCH):

  • MAJOR: Breaking API changes
  • MINOR: New functionality (backward-compatible)
  • PATCH: Bug fixes (backward-compatible)

New features and fixes release only on the latest major version. Upgrade regularly to access improvements.

React Native SDK

Uses a different model (0.x.y schema):

  • Minor version changes (x): Breaking changes AND new features
  • Patch updates (y): Critical bug fixes only

Backend Compatibility

All mobile SDKs work with any Stripe API version you use on your backend unless documentation specifies otherwise.

Upgrade Checklist

  1. Review the API Changelog for changes between your current and target versions
  2. Check Upgrades Guide for migration guidance
  3. Update server-side SDK package version (e.g., npm update stripe, pip install --upgrade stripe)
  4. Update the apiVersion parameter in your Stripe client initialization
  5. Test your integration against the new API version using the Stripe-Version header
  6. Update webhook handlers to handle new event structures
  7. Update Stripe.js script tag or npm package version if needed
  8. Update mobile SDK versions in your package manager if needed
  9. Store Stripe object IDs in databases that accommodate up to 255 characters (case-sensitive collation)

Testing API Version Changes

Use the Stripe-Version header to test your code against a new version without changing your default:

curl https://api.stripe.com/v1/customers \
  -u sk_test_xxx: \
  -H "Stripe-Version: 2026-06-24.dahlia"

Or in code:

const stripe = require('stripe')('sk_test_xxx', {
  apiVersion: '2026-06-24.dahlia'  // Test with new version
});

Important Notes

  • Your webhook listener should handle unfamiliar event types gracefully
  • Test webhooks with the new version structure before upgrading
  • Breaking changes are tagged by affected product areas (Payments, Billing, Connect, etc.)
  • Multiple API versions coexist simultaneously, enabling staged adoption
Files1
1 files · 1.1 KB

Select a file to preview

Overall Score

82/100

Grade

B

Good

Safety

88

Quality

83

Clarity

85

Completeness

78

Summary

This skill guides developers through upgrading Stripe API versions, SDKs, and Stripe.js libraries. It explains Stripe's date-based versioning model, covers best practices for setting API versions in different language SDKs, and provides a comprehensive upgrade checklist with testing guidance. The skill is read-only documentation with no destructive operations or credential harvesting.

Static Analysis Findings

1 finding

Patterns detected by deterministic static analysis before AI scoring. Hover over any finding code for detailed information and remediation guidance.

Network Access
SEC-060Outbound Network Request

Outbound network request (curl/wget/fetch)

SKILL.mdcurl https://

Detected Capabilities

HTTP request (curl in examples)Read documentationCode examples and configuration snippets

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

upgrade stripe versionstripe api migrationstripe.js updatestripe sdk versionstripe breaking changestest api compatibility

Risk Signals

INFO

Outbound network request (curl to api.stripe.com)

SKILL.md | Testing API Version Changes section

Referenced Domains

External domains referenced in skill content, detected by static analysis.

api.stripe.comdocs.stripe.comjs.stripe.com

Use Cases

  • Upgrade Stripe API version in production
  • Migrate Stripe.js to a new major version
  • Update Stripe server SDKs to latest version
  • Review breaking changes between API versions
  • Test API version compatibility before upgrading
  • Understand Stripe mobile SDK versioning strategy

Quality Notes

  • Clear structure with well-organized sections covering API versioning, SDKs, and Stripe.js
  • Comprehensive upgrade checklist provides actionable step-by-step guidance
  • Includes language-specific code examples (Python, Ruby, JavaScript) for different SDK types
  • Distinguishes between breaking and backward-compatible changes upfront
  • Practical testing guidance with curl example and per-request override instructions
  • Well-defined boundaries: documentation and guidance only, no file modifications or destructive operations
  • Links to external Stripe documentation (changelog, upgrade guide) provide additional context
  • Includes important caveats about webhook handling and database schema considerations
Model: claude-haiku-4-5-20251001Analyzed: Jun 28, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Version History

  1. v1.1

    Content updated

    ✦ AIUpdates recommended Stripe API version from 2026-04-22.dahlia to 2026-06-24.dahlia throughout examples and documentation.

    2026-06-28

    Latest
  2. v1.0

    2026-05-02

    Initial version

Use stripe/upgrade-stripe in your dev environment

Command Palette

Search for a command to run...