Compare commits

..

7 Commits

Author SHA1 Message Date
Stripe OpenAPI
fb655489eb Merge upstream and update generated code for v283 2023-03-29 19:32:07 +00:00
anniel-stripe
aa05b84acc
Update save deprecation message (#1201)
* Update save deprecation message

* comma
2023-03-29 11:20:29 -07:00
Pavel Krymets
4143d3930d Bump version to 8.5.0-beta.1 2023-03-23 16:04:57 -07:00
stripe-openapi[bot]
23bc1b1f3b
Update generated code for beta (new) (#1194)
* Update generated code for v268

* Update generated code for v268

* Update generated code for v276

* Update generated code for v277

---------

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
2023-03-23 14:58:46 -07:00
Pavel Krymets
e33a1da93e Bump version to 8.4.0 2023-03-23 14:41:07 -07:00
stripe-openapi[bot]
e1080cdd1e
Update generated code for v277 (#1198)
Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
2023-03-23 13:28:04 -07:00
stripe-openapi[bot]
57f61c09ce
Update generated code (new) (#1197)
* Update generated code for v275

* Update generated code for v276

---------

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
2023-03-23 13:16:46 -07:00
5 changed files with 18 additions and 4 deletions

View File

@ -1,5 +1,17 @@
# Changelog # Changelog
## 8.5.0-beta.1 - 2023-03-23
* [#1194](https://github.com/stripe/stripe-ruby/pull/1194) Update generated code for beta (new)
* Add support for new resources `Tax.CalculationLineItem` and `Tax.TransactionLineItem`
* Add support for `collect_inputs` method on resource `Terminal.Reader`
## 8.4.0 - 2023-03-23
* [#1197](https://github.com/stripe/stripe-ruby/pull/1197) Update generated code (new)
* Add support for new resources `Tax.CalculationLineItem`, `Tax.Calculation`, `Tax.TransactionLineItem`, and `Tax.Transaction`
* Add support for `create` and `list_line_items` methods on resource `Calculation`
* Add support for `create_from_calculation`, `create_reversal`, `create`, `list_line_items`, and `retrieve` methods on resource `Transaction`
* [#1152](https://github.com/stripe/stripe-ruby/pull/1152) Symbolize hash keys inside `convert_to_stripe_object_with_params`
## 8.4.0-beta.4 - 2023-03-16 ## 8.4.0-beta.4 - 2023-03-16
* [#1189](https://github.com/stripe/stripe-ruby/pull/1189) Update generated code for beta (new) * [#1189](https://github.com/stripe/stripe-ruby/pull/1189) Update generated code for beta (new)
* Add support for `create_from_calculation` method on resource `Tax.Transaction` * Add support for `create_from_calculation` method on resource `Tax.Transaction`

View File

@ -1 +1 @@
v277 v283

View File

@ -1 +1 @@
8.4.0-beta.4 8.5.0-beta.1

View File

@ -72,7 +72,9 @@ module Stripe
initialize_from(resp.data, opts) initialize_from(resp.data, opts)
end end
extend Gem::Deprecate extend Gem::Deprecate
deprecate :save, :update, 2022, 11 deprecate :save, "the `update` class method (for examples"\
" see https://github.com/stripe/stripe-ruby"\
"/wiki/Migration-guide-for-v8)", 2022, 11
def self.included(base) def self.included(base)
# Set `metadata` as additive so that when it's set directly we remember # Set `metadata` as additive so that when it's set directly we remember

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module Stripe module Stripe
VERSION = "8.4.0-beta.4" VERSION = "8.5.0-beta.1"
end end