stripe 8.4.0 → 8.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/OPENAPI_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/stripe/api_operations/save.rb +3 -1
- data/lib/stripe/resources/tax/transaction.rb +0 -2
- data/lib/stripe/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69907e69481fc6350f4a226975cf5988a770b61eb1d6eed36f4d935452dcada1
|
|
4
|
+
data.tar.gz: 982881d50f24782e00eeb5f5c3daa6e508eccb9991b7ef02caed9e51719a8ba4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7de7cb6d5319da3553d0663ef6bcaa5a5231578ed204ab756b9ff0e0d7396a137944b7bb7032d731257fb65089ca00da510d9f0e26c2502a6e7bd473e7c8913d
|
|
7
|
+
data.tar.gz: e46980b615f80e4c6a4656ad85fd83acdae65bca8a76f808572ecdccc903aae5bfcf85fab9f3c234b746a193ebec98ab216d3b65606a2e77f91a344595e10f5a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 8.5.0 - 2023-03-30
|
|
4
|
+
* [#1203](https://github.com/stripe/stripe-ruby/pull/1203) Update generated code
|
|
5
|
+
* Remove support for `create` method on resource `Tax.Transaction`
|
|
6
|
+
* 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.
|
|
7
|
+
* [#1201](https://github.com/stripe/stripe-ruby/pull/1201) Update save deprecation message
|
|
8
|
+
|
|
3
9
|
## 8.4.0 - 2023-03-23
|
|
4
10
|
* [#1197](https://github.com/stripe/stripe-ruby/pull/1197) Update generated code (new)
|
|
5
11
|
* Add support for new resources `Tax.CalculationLineItem`, `Tax.Calculation`, `Tax.TransactionLineItem`, and `Tax.Transaction`
|
data/OPENAPI_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
v285
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
8.
|
|
1
|
+
8.5.0
|
|
@@ -72,7 +72,9 @@ module Stripe
|
|
|
72
72
|
initialize_from(resp.data, opts)
|
|
73
73
|
end
|
|
74
74
|
extend Gem::Deprecate
|
|
75
|
-
deprecate :save,
|
|
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 = {})
|
data/lib/stripe/version.rb
CHANGED
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.
|
|
4
|
+
version: 8.5.0
|
|
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-
|
|
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.
|