mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-08-16 00:02:21 -04:00
Compare commits
2 Commits
9d0c0147d7
...
ded501370d
Author | SHA1 | Date | |
---|---|---|---|
|
ded501370d | ||
|
45d7e30a61 |
29
CHANGELOG.md
29
CHANGELOG.md
@ -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`
|
||||||
|
@ -1 +1 @@
|
|||||||
v406
|
v413
|
@ -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,
|
||||||
|
@ -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"
|
||||||
|
15
lib/stripe/resources/tax/settings.rb
Normal file
15
lib/stripe/resources/tax/settings.rb
Normal 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
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user