Compare commits

..

No commits in common. "7bf9cace9e7d94dcdf5d2e1c2e61ce134f253884" and "fe794f4868ba2ddd9a60fb13bbdf31b4a6eaede3" have entirely different histories.

8 changed files with 4 additions and 31 deletions

View File

@ -1,11 +1,5 @@
# Changelog # Changelog
## 8.2.0-beta.1 - 2023-01-12
* [#1167](https://github.com/stripe/stripe-ruby/pull/1167) API Updates for beta branch
* 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`
* Add support for `Tax::Register` resource
## 8.1.0 - 2023-01-12 ## 8.1.0 - 2023-01-12
* [#1162](https://github.com/stripe/stripe-ruby/pull/1162) Improve request events instrumentation * [#1162](https://github.com/stripe/stripe-ruby/pull/1162) Improve request events instrumentation

View File

@ -1 +1 @@
v219 v218

View File

@ -253,11 +253,7 @@ a success or error. Receives `RequestEndEvent` with the following properties:
- `path`: Request path. (`String`) - `path`: Request path. (`String`)
- `user_data`: A hash on which users may have set arbitrary data in - `user_data`: A hash on which users may have set arbitrary data in
`request_begin`. See above for more information. (`Hash`) `request_begin`. See above for more information. (`Hash`)
- `request_id`: HTTP request identifier. (`String`) - `request_id`. HTTP request identifier.
- `response_header`: The response headers. (`Hash`)
- `response_body` = The response body. (`String`)
- `request_header` = The request headers. (`Hash`)
- `request_body` = The request body. (`String`)
#### Example #### Example

View File

@ -1 +1 @@
8.2.0-beta.1 8.1.0-beta.4

View File

@ -99,7 +99,6 @@ module Stripe
SubscriptionSchedule::OBJECT_NAME => SubscriptionSchedule, SubscriptionSchedule::OBJECT_NAME => SubscriptionSchedule,
Tax::Calculation::OBJECT_NAME => Tax::Calculation, Tax::Calculation::OBJECT_NAME => Tax::Calculation,
Tax::Registration::OBJECT_NAME => Tax::Registration, Tax::Registration::OBJECT_NAME => Tax::Registration,
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

@ -86,7 +86,6 @@ 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/registration" require "stripe/resources/tax/registration"
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

@ -1,15 +0,0 @@
# 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: [Account settings](https://stripe.com/docs/tax/connect/settings).
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.2.0-beta.1" VERSION = "8.1.0-beta.4"
end end