mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-07-19 00:00:40 -04:00
Compare commits
No commits in common. "f471a2c6a4c4a8fe4bd5590488fe3b7cca53d862" and "1be10ae4fcdc76c04e0dda13f6bbbf5304e380c1" have entirely different histories.
f471a2c6a4
...
1be10ae4fc
@ -1,10 +1,5 @@
|
|||||||
# Changelog
|
# 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
|
## 8.4.0-beta.2 - 2023-03-03
|
||||||
* [#1183](https://github.com/stripe/stripe-ruby/pull/1183) API Updates for beta branch
|
* [#1183](https://github.com/stripe/stripe-ruby/pull/1183) API Updates for beta branch
|
||||||
* Updated stable APIs to the latest version
|
* Updated stable APIs to the latest version
|
||||||
|
@ -1 +1 @@
|
|||||||
v249
|
v237
|
@ -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
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
module Stripe
|
module Stripe
|
||||||
VERSION = "8.4.0-beta.3"
|
VERSION = "8.4.0-beta.2"
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user