Compare commits

..

No commits in common. "f471a2c6a4c4a8fe4bd5590488fe3b7cca53d862" and "1be10ae4fcdc76c04e0dda13f6bbbf5304e380c1" have entirely different histories.

5 changed files with 12 additions and 8 deletions

View File

@ -1,10 +1,5 @@
# Changelog
## 8.4.0-beta.3 - 2023-03-09
* [#1184](https://github.com/stripe/stripe-ruby/pull/1184) API Updates for beta branch
* Updated stable APIs to the latest version
* Remove support for `list_transactions` method on resource `Tax.Transaction`
## 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

View File

@ -1 +1 @@
v249
v237

View File

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

View File

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

View File

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