stripe-ruby v8.0.0 Release Notes
Release Date: 2022-11-16 // over 2 years ago-
- ๐ #1144 Next major release changes
๐ฅ Breaking changes that arose during code generation of the library that we postponed for the next major version. For changes to the Stripe products, read more at https://stripe.com/docs/upgrades#2022-11-15.
"โ ๏ธ" symbol highlights breaking changes.
๐ Deprecated
- โก๏ธ The
save
method is deprecated. Prefer the staticupdate
method that doesn't require retrieval of the resource to update it. ``` ruby # before refund = Stripe::Refund.retrieve("re_123") refund.description = "Refund description" refund.save
# after Stripe::Refund.update("re_123", description: "Refund description")
### ๐ โ ๏ธ Removed - โ Removed deprecated `Sku` resource. - โ Removed deprecated `Orders` resource. - โ Removed deprecated `delete` method on `Subscription` resource. Please use `cancel` method instead. ```ruby # before Stripe::Subscription::delete("sub_12345") # after Stripe::Subscription::cancel("sub_12345")