stripe 8.5.0.pre.beta.1 → 8.6.0.pre.beta.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6edd2851f27d78a812305d91437e211b82d8042d4a13724f0e4a7d3d9c23c0bf
4
- data.tar.gz: 9d30ba6a7a56e175f3ea2872c825ef55462aabd6acb2a3e8783a32d713f76de6
3
+ metadata.gz: 0bb18aa99427adfd4362824cf23ec3860ebe83d291e40a6006ac9fc59242fbcc
4
+ data.tar.gz: 82a2ec4c057b6537d643d0c6e900eb5c2965654ba98dba5affb3c11440c83ed1
5
5
  SHA512:
6
- metadata.gz: bdef2a42feb77e8b27c9f9b622ec6cdad691da6f12a758f66e03cfdaf396ab2f53eb70c14478ec875dac3054c4bfa14cc093ef2c24dc93a5d202bb7ad4628121
7
- data.tar.gz: dd29a3e0969396b4b98818153f465a811374d1840e025a27fffc10900db2eb24745b2d9447a61fe3ca7f4a64ac92651a20fc16c6891746e9f5be93e1fbc5fa60
6
+ metadata.gz: acf1af5b7188d27e6f9d064127d13ff22d713a743b81035a210f0881e261a21b49511f1019bf3cfff842979199d372b7d97cd38c7a8e6c201b6c1544d2d07537
7
+ data.tar.gz: 2791cbf6e65421c6fb891bb4972146b52d289d8257e8a86ebcc073d03aedb66d83e71d8b66d94cec1d8ba06028fc9434aa98be64277d98410a116d16b5e67e88
data/CHANGELOG.md CHANGED
@@ -1,10 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## 8.6.0-beta.1 - 2023-03-30
4
+ * [#1202](https://github.com/stripe/stripe-ruby/pull/1202) Update generated code for beta
5
+
6
+
7
+ ## 8.5.0 - 2023-03-30
8
+ * [#1203](https://github.com/stripe/stripe-ruby/pull/1203) Update generated code
9
+ * Remove support for `create` method on resource `Tax.Transaction`
10
+ * This is not a breaking change, as this method was deprecated before the Tax Transactions API was released in favor of the `create_from_calculation` method.
11
+ * [#1201](https://github.com/stripe/stripe-ruby/pull/1201) Update save deprecation message
12
+
3
13
  ## 8.5.0-beta.1 - 2023-03-23
4
14
  * [#1194](https://github.com/stripe/stripe-ruby/pull/1194) Update generated code for beta (new)
5
15
  * Add support for new resources `Tax.CalculationLineItem` and `Tax.TransactionLineItem`
6
16
  * Add support for `collect_inputs` method on resource `Terminal.Reader`
7
17
 
18
+ ## 8.4.0 - 2023-03-23
19
+ * [#1197](https://github.com/stripe/stripe-ruby/pull/1197) Update generated code (new)
20
+ * Add support for new resources `Tax.CalculationLineItem`, `Tax.Calculation`, `Tax.TransactionLineItem`, and `Tax.Transaction`
21
+ * Add support for `create` and `list_line_items` methods on resource `Calculation`
22
+ * Add support for `create_from_calculation`, `create_reversal`, `create`, `list_line_items`, and `retrieve` methods on resource `Transaction`
23
+ * [#1152](https://github.com/stripe/stripe-ruby/pull/1152) Symbolize hash keys inside `convert_to_stripe_object_with_params`
24
+
8
25
  ## 8.4.0-beta.4 - 2023-03-16
9
26
  * [#1189](https://github.com/stripe/stripe-ruby/pull/1189) Update generated code for beta (new)
10
27
  * Add support for `create_from_calculation` method on resource `Tax.Transaction`
data/OPENAPI_VERSION CHANGED
@@ -1 +1 @@
1
- v277
1
+ v287
data/VERSION CHANGED
@@ -1 +1 @@
1
- 8.5.0-beta.1
1
+ 8.6.0-beta.1
@@ -72,7 +72,9 @@ module Stripe
72
72
  initialize_from(resp.data, opts)
73
73
  end
74
74
  extend Gem::Deprecate
75
- deprecate :save, :update, 2022, 11
75
+ deprecate :save, "the `update` class method (for examples"\
76
+ " see https://github.com/stripe/stripe-ruby"\
77
+ "/wiki/Migration-guide-for-v8)", 2022, 11
76
78
 
77
79
  def self.included(base)
78
80
  # Set `metadata` as additive so that when it's set directly we remember
@@ -5,8 +5,6 @@ module Stripe
5
5
  module Tax
6
6
  # A Tax transaction records the tax collected from or refunded to your customer.
7
7
  class Transaction < APIResource
8
- extend Stripe::APIOperations::Create
9
-
10
8
  OBJECT_NAME = "tax.transaction"
11
9
 
12
10
  def list_line_items(params = {}, opts = {})
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "8.5.0-beta.1"
4
+ VERSION = "8.6.0-beta.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stripe
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.5.0.pre.beta.1
4
+ version: 8.6.0.pre.beta.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stripe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-23 00:00:00.000000000 Z
11
+ date: 2023-03-30 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Stripe is the easiest way to accept payments online. See https://stripe.com
14
14
  for details.