Compare commits

...

2 Commits

Author SHA1 Message Date
Annie Li
ded501370d Bump version to 8.6.0 2023-07-13 15:11:59 -07:00
stripe-openapi[bot]
45d7e30a61
Update generated code for v413 (#1244)
Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
2023-07-13 14:48:02 -07:00
7 changed files with 49 additions and 3 deletions

View File

@ -1,5 +1,34 @@
# Changelog # Changelog
## 8.6.0 - 2023-07-13
* [#1244](https://github.com/stripe/stripe-ruby/pull/1244) Update generated code
* Add support for new resource `Tax.Settings`
* Add support for `retrieve` and `update` methods on resource `Settings`
* [#1241](https://github.com/stripe/stripe-ruby/pull/1241) Update generated code
* [#1209](https://github.com/stripe/stripe-ruby/pull/1209) Update shoulda-context version
* [#1235](https://github.com/stripe/stripe-ruby/pull/1235) Allow "error" string as log level
* [#1238](https://github.com/stripe/stripe-ruby/pull/1238) Update log level error message to include `error`
* [#1231](https://github.com/stripe/stripe-ruby/pull/1231) fix: variable typo in README for instrumentation
* [#1234](https://github.com/stripe/stripe-ruby/pull/1234) Update generated code
* [#1230](https://github.com/stripe/stripe-ruby/pull/1230) Update generated code
* Release specs are identical.
* [#1226](https://github.com/stripe/stripe-ruby/pull/1226) Update generated code
* [#1223](https://github.com/stripe/stripe-ruby/pull/1223) Update generated code
* [#1225](https://github.com/stripe/stripe-ruby/pull/1225) Downgrade jaro_winkler
* [#1219](https://github.com/stripe/stripe-ruby/pull/1219) Update generated code
Documentation updates.
* [#1215](https://github.com/stripe/stripe-ruby/pull/1215) Update generated code
* [#1208](https://github.com/stripe/stripe-ruby/pull/1208) Update generated code
* [#1204](https://github.com/stripe/stripe-ruby/pull/1204) Update generated code
## 8.5.0 - 2023-03-30 ## 8.5.0 - 2023-03-30
* [#1203](https://github.com/stripe/stripe-ruby/pull/1203) Update generated code * [#1203](https://github.com/stripe/stripe-ruby/pull/1203) Update generated code
* Remove support for `create` method on resource `Tax.Transaction` * Remove support for `create` method on resource `Tax.Transaction`

View File

@ -1 +1 @@
v406 v413

View File

@ -1 +1 @@
8.5.0 8.6.0

View File

@ -90,6 +90,7 @@ module Stripe
SubscriptionItem::OBJECT_NAME => SubscriptionItem, SubscriptionItem::OBJECT_NAME => SubscriptionItem,
SubscriptionSchedule::OBJECT_NAME => SubscriptionSchedule, SubscriptionSchedule::OBJECT_NAME => SubscriptionSchedule,
Tax::Calculation::OBJECT_NAME => Tax::Calculation, Tax::Calculation::OBJECT_NAME => Tax::Calculation,
Tax::Settings::OBJECT_NAME => Tax::Settings,
Tax::Transaction::OBJECT_NAME => Tax::Transaction, Tax::Transaction::OBJECT_NAME => Tax::Transaction,
TaxCode::OBJECT_NAME => TaxCode, TaxCode::OBJECT_NAME => TaxCode,
TaxId::OBJECT_NAME => TaxId, TaxId::OBJECT_NAME => TaxId,

View File

@ -77,6 +77,7 @@ require "stripe/resources/subscription"
require "stripe/resources/subscription_item" require "stripe/resources/subscription_item"
require "stripe/resources/subscription_schedule" require "stripe/resources/subscription_schedule"
require "stripe/resources/tax/calculation" require "stripe/resources/tax/calculation"
require "stripe/resources/tax/settings"
require "stripe/resources/tax/transaction" require "stripe/resources/tax/transaction"
require "stripe/resources/tax_code" require "stripe/resources/tax_code"
require "stripe/resources/tax_id" require "stripe/resources/tax_id"

View File

@ -0,0 +1,15 @@
# File generated from our OpenAPI spec
# frozen_string_literal: true
module Stripe
module Tax
# You can use Tax `Settings` to manage configurations used by Stripe Tax calculations.
#
# Related guide: [Using the Settings API](https://stripe.com/docs/tax/settings-api)
class Settings < SingletonAPIResource
include Stripe::APIOperations::Save
OBJECT_NAME = "tax.settings"
end
end
end

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module Stripe module Stripe
VERSION = "8.5.0" VERSION = "8.6.0"
end end