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
@ -28,18 +21,18 @@
## 8.2.0-beta.3 - 2023-01-26 ## 8.2.0-beta.3 - 2023-01-26
* [#1172](https://github.com/stripe/stripe-ruby/pull/1172) API Updates for beta branch * [#1172](https://github.com/stripe/stripe-ruby/pull/1172) API Updates for beta branch
* Updated stable APIs to the latest version * Updated stable APIs to the latest version
* Add support for `list_transactions` method on resource `Tax.Transaction` * Add support for `list_transactions` method on resource `Tax.Transaction`
## 8.2.0-beta.2 - 2023-01-19 ## 8.2.0-beta.2 - 2023-01-19
* [#1170](https://github.com/stripe/stripe-ruby/pull/1170) API Updates for beta branch * [#1170](https://github.com/stripe/stripe-ruby/pull/1170) API Updates for beta branch
* Updated stable APIs to the latest version * Updated stable APIs to the latest version
* Add support for `Tax.Settings` resource. * Add support for `Tax.Settings` resource.
## 8.2.0-beta.1 - 2023-01-12 ## 8.2.0-beta.1 - 2023-01-12
* [#1167](https://github.com/stripe/stripe-ruby/pull/1167) API Updates for beta branch * [#1167](https://github.com/stripe/stripe-ruby/pull/1167) API Updates for beta branch
* Updated stable APIs to the latest version * Updated stable APIs to the latest version
* Change `quote.draft_quote` implementation to from calling `POST /v1/quotes/{quote}/draft` to `POST /v1/quotes/{quote}/mark_draft` * Change `quote.draft_quote` implementation to from calling `POST /v1/quotes/{quote}/draft` to `POST /v1/quotes/{quote}/mark_draft`
* Add support for `Tax::Register` resource * Add support for `Tax::Register` resource
## 8.1.0 - 2023-01-12 ## 8.1.0 - 2023-01-12
@ -47,7 +40,7 @@
## 8.1.0-beta.4 - 2023-01-05 ## 8.1.0-beta.4 - 2023-01-05
* [#1164](https://github.com/stripe/stripe-ruby/pull/1164) API Updates for beta branch * [#1164](https://github.com/stripe/stripe-ruby/pull/1164) API Updates for beta branch
* Updated stable APIs to the latest version * Updated stable APIs to the latest version
* Add support for `mark_stale_quote` method on resource `Quote` * Add support for `mark_stale_quote` method on resource `Quote`
## 8.1.0-beta.3 - 2022-12-22 ## 8.1.0-beta.3 - 2022-12-22
@ -57,12 +50,12 @@
## 8.1.0-beta.2 - 2022-12-15 ## 8.1.0-beta.2 - 2022-12-15
* [#1156](https://github.com/stripe/stripe-ruby/pull/1156) API Updates for beta branch * [#1156](https://github.com/stripe/stripe-ruby/pull/1156) API Updates for beta branch
* Updated stable APIs to the latest version * Updated stable APIs to the latest version
* Add support for new resources `TaxCalculation`, and `TaxTransaction` * Add support for new resources `TaxCalculation`, and `TaxTransaction`
* Add support for `create` and `list_line_items` methods on resource `TaxCalculation` * Add support for `create` and `list_line_items` methods on resource `TaxCalculation`
* Add support for `create_reversal`, `create`, and `retrieve` methods on resource `TaxTransaction` * Add support for `create_reversal`, `create`, and `retrieve` methods on resource `TaxTransaction`
* [#1155](https://github.com/stripe/stripe-ruby/pull/1155) API Updates for beta branch * [#1155](https://github.com/stripe/stripe-ruby/pull/1155) API Updates for beta branch
* Updated stable APIs to the latest version * Updated stable APIs to the latest version
* Add support for new resource `QuoteLine`. * Add support for new resource `QuoteLine`.
## 8.1.0-beta.1 - 2022-12-08 ## 8.1.0-beta.1 - 2022-12-08
@ -80,7 +73,7 @@ Breaking changes that arose during code generation of the library that we postpo
## 7.2.0-beta.5 - 2022-11-02 ## 7.2.0-beta.5 - 2022-11-02
* [#1139](https://github.com/stripe/stripe-ruby/pull/1139) API Updates for beta branch * [#1139](https://github.com/stripe/stripe-ruby/pull/1139) API Updates for beta branch
* Updated beta APIs to the latest stable version * Updated beta APIs to the latest stable version
* [#1135](https://github.com/stripe/stripe-ruby/pull/1135) API Updates for beta branch * [#1135](https://github.com/stripe/stripe-ruby/pull/1135) 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