Skip to content

Releases: stripe/stripe-ruby

v12.0.0

24 Jun 23:08
Compare
Choose a tag to compare
  • #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.

v11.7.0

14 Jun 06:53
Compare
Choose a tag to compare
  • #1415 Deprecate StripeClient#request
    • Add deprecation warning for StripeClient#request. This helper method will be removed in a future major version. To access response objects, use the last_response property on the returned resource instead. Refer to Accessing a response object in the README for usage details.

See the changelog for more details.

v11.7.0-beta.1

30 May 19:46
Compare
Choose a tag to compare
v11.7.0-beta.1 Pre-release
Pre-release
  • #1400 Update generated code for beta
    • Keeping up with the changes from version 11.6.0

See the changelog for more details.

v11.6.0

30 May 19:40
Compare
Choose a tag to compare
  • #1404 Add method to list invoice line items
    • Add methods list_lines() on the class Invoice to list the invoice line items

See the changelog for more details.

v11.5.0

23 May 20:24
Compare
Choose a tag to compare
  • #999 DESCRIBE CHANGES HERE (try to use the same style, tense, etc. as the other entries)

See the changelog for more details.

v11.5.0-beta.1

09 May 19:45
Compare
Choose a tag to compare
v11.5.0-beta.1 Pre-release
Pre-release
  • #1395 Update generated code for beta
    • No new beta features. Merging changes from the main branch.

See the changelog for more details.

v11.4.0

09 May 19:38
Compare
Choose a tag to compare
  • #1397 Update generated code
    • Add support for update test helper method on resources Treasury.OutboundPayment and Treasury.OutboundTransfer
  • #1399 Pass params to transfer reversal
    • Allow Stripe::Transfer.retrieve_reversal() to accept a params hash as the third argument, followed by opts. No changes to existing calls are necessary, but in a future major version this method will be updated to only accept params as the first argument. Fixes #1393
  • #1389 Removed jaro_winkler as a dependency
  • #1396 Start tracking StripeClient#request usage

See the changelog for more details.

v11.4.0-beta.1

02 May 22:23
Compare
Choose a tag to compare
v11.4.0-beta.1 Pre-release
Pre-release
  • #1386 Update generated code for beta

See the changelog for more details.

v11.3.0

02 May 20:56
Compare
Choose a tag to compare

See the changelog for more details.

v11.3.0-beta.1

18 Apr 21:44
Compare
Choose a tag to compare
v11.3.0-beta.1 Pre-release
Pre-release
  • #1383 Update generated code for beta

See the changelog for more details.