Compare commits

..

No commits in common. "7233155b4230007cf2d5e2d7f81d9f65f4209974" and "080fddce5aa1f57bd6ca22be1a47509e379a97c1" have entirely different histories.

5 changed files with 22 additions and 20 deletions

View File

@ -1,12 +1,5 @@
# Changelog # Changelog
## 8.4.0-beta.2 - 2023-03-03
* [#1183](https://github.com/stripe/stripe-ruby/pull/1183) API Updates for beta branch
* Updated stable APIs to the latest version
* Add support for new resources `Issuing.CardBundle` and `Issuing.CardDesign`
* Add support for `list` and `retrieve` methods on resource `CardBundle`
* Add support for `list`, `retrieve`, and `update` methods on resource `CardDesign`
## 8.4.0-beta.1 - 2023-02-23 ## 8.4.0-beta.1 - 2023-02-23
* [#1182](https://github.com/stripe/stripe-ruby/pull/1182) API Updates for beta branch * [#1182](https://github.com/stripe/stripe-ruby/pull/1182) API Updates for beta branch
* Updated stable APIs to the latest version * Updated stable APIs to the latest version

View File

@ -1 +1 @@
v249 v237

View File

@ -1 +1 @@
8.4.0-beta.2 8.4.0-beta.1

View File

@ -35,6 +35,15 @@ module Stripe
opts: opts opts: opts
) )
end end
def self.list_transactions(params = {}, opts = {})
request_stripe_object(
method: :get,
path: "/v1/tax/transactions",
params: params,
opts: opts
)
end
end end
end end
end end

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module Stripe module Stripe
VERSION = "8.4.0-beta.2" VERSION = "8.4.0-beta.1"
end end