github stripe/stripe-ruby v12.0.0

6 days ago
  • #1418 Add missing static method for verify on BankAccount

  • #1419

    This release changes the pinned API version to 2024-06-20. Please read the API Upgrade Guide and carefully review the API changes before upgrading.

    ⚠️ Breaking changes

    • Singleton retrieve method now requires params to be passed as the first argument. Existing calls to singleton retrieve method with only opts argument will have to be updated to account for the addition of params argument.
    params = { expand: ["available"] }
    opts = { stripe_account: "acct_123" }
    
    # ❌ No longer works
    Stripe::Balance.retrieve(opts)
    
    # ✅ Correct way to call retrieve method
    Stripe::Balance.retrieve(params, opts)

    Additions

    • Add support for finalize_amount test helper method on resource Issuing.Authorization

See the changelog for more details.

Don't miss a new stripe-ruby release

NewReleases is sending notifications on new releases.