stripe 6.5.0 → 7.1.0.pre.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +33 -5
- data/OPENAPI_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/data/ca-certificates.crt +1241 -1937
- data/lib/stripe/api_version.rb +1 -1
- data/lib/stripe/object_types.rb +1 -7
- data/lib/stripe/resources/card.rb +1 -3
- data/lib/stripe/resources/checkout/session.rb +18 -3
- data/lib/stripe/resources/credit_note.rb +8 -8
- data/lib/stripe/resources/customer.rb +21 -38
- data/lib/stripe/resources/invoice.rb +14 -14
- data/lib/stripe/resources/issuing/card.rb +0 -18
- data/lib/stripe/resources/quote_phase.rb +28 -0
- data/lib/stripe/resources/reporting/report_type.rb +0 -1
- data/lib/stripe/resources/subscription.rb +43 -1
- data/lib/stripe/resources/subscription_item.rb +0 -11
- data/lib/stripe/resources/subscription_schedule.rb +18 -0
- data/lib/stripe/resources/transfer.rb +0 -18
- data/lib/stripe/resources.rb +1 -7
- data/lib/stripe/stripe_configuration.rb +2 -0
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe.rb +1 -0
- metadata +5 -9
- data/lib/stripe/resources/bitcoin_receiver.rb +0 -24
- data/lib/stripe/resources/bitcoin_transaction.rb +0 -16
- data/lib/stripe/resources/issuing/card_details.rb +0 -10
- data/lib/stripe/resources/recipient.rb +0 -14
- data/lib/stripe/resources/three_d_secure.rb +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 803504fb9cf5348f6c69d73dce412e713d60da6eeb583598a269fdf6e74d1519
|
4
|
+
data.tar.gz: e2ec613485ac48c5118ce5bfdf9179fbf369f62f91ba4b38e3c4918050310f26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ca2cd6e815e5acbca268b1c6be2be3651b1486c7377334e4de6b016091b9602479782b0a774d9429ac3bf753199db5c0c21ee00e34faa100a85fba8eb31ea5a
|
7
|
+
data.tar.gz: 459abca01397a4f89a6740c48e51e613e821ec7a877f24a1864d939ed993b2b45cac574a9b513f3187aa06a57987eeb10ee070b9a1f7cc81edb955285d69fbf2
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,38 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 7.1.0-beta.1 - 2022-08-03
|
4
|
+
* [#1107](https://github.com/stripe/stripe-ruby/pull/1107) API Updates for beta branch
|
5
|
+
- Updated stable APIs to the latest version
|
6
|
+
- Added the `Order` resource support
|
7
|
+
|
8
|
+
## 7.0.0 - 2022-08-02
|
9
|
+
|
10
|
+
Breaking changes that arose during code generation of the library that we postponed for the next major version. For changes to the SDK, read more detailed description at https://github.com/stripe/stripe-ruby/wiki/Migration-guide-for-v7. For changes to the Stripe products, read more at https://stripe.com/docs/upgrades#2022-08-01.
|
11
|
+
|
12
|
+
"⚠️" symbol highlights breaking changes.
|
13
|
+
|
14
|
+
* [#1106](https://github.com/stripe/stripe-ruby/pull/1106) API Updates
|
15
|
+
* [#1092](https://github.com/stripe/stripe-ruby/pull/1092) API Updates
|
16
|
+
* [#1090](https://github.com/stripe/stripe-ruby/pull/1090) Use auto-generation for `Invoice` methods
|
17
|
+
* [#1103](https://github.com/stripe/stripe-ruby/pull/1103) Next major release changes
|
18
|
+
|
19
|
+
## 6.6.0-beta.1 - 2022-07-22
|
20
|
+
* [#1100](https://github.com/stripe/stripe-ruby/pull/1100) API Updates for beta branch
|
21
|
+
- Updated stable APIs to the latest version
|
22
|
+
- Add `QuotePhase` resource
|
23
|
+
* [#1097](https://github.com/stripe/stripe-ruby/pull/1097) API Updates for beta branch
|
24
|
+
- Updated stable APIs to the latest version
|
25
|
+
- Add `SubscriptionSchedule.amend` method.
|
26
|
+
* [#1093](https://github.com/stripe/stripe-ruby/pull/1093) API Updates for beta branch
|
27
|
+
- Include `server_side_confirmation_beta=v1` beta
|
28
|
+
- Add `secretKeyConfirmation` to `PaymentIntent`
|
29
|
+
* [#1085](https://github.com/stripe/stripe-ruby/pull/1085) API Updates for beta branch
|
30
|
+
- Updated stable APIs to the latest version
|
31
|
+
* [#1075](https://github.com/stripe/stripe-ruby/pull/1075) Use the generated API version
|
32
|
+
|
3
33
|
## 6.5.0 - 2022-06-29
|
4
34
|
* [#1084](https://github.com/stripe/stripe-ruby/pull/1084) API Updates
|
5
|
-
* Add support for `deliver_card`, `fail_card`, `return_card`, and `ship_card` test helper methods on resource `Issuing.Card`
|
35
|
+
* Add support for `deliver_card`, `fail_card`, `return_card`, and `ship_card` test helper methods on resource `Issuing.Card`
|
6
36
|
* [#1076](https://github.com/stripe/stripe-ruby/pull/1076) fix: Update logging to coerce ASCII-8BIT into UTF-8.
|
7
37
|
|
8
38
|
## 6.4.0 - 2022-06-17
|
@@ -12,7 +42,7 @@
|
|
12
42
|
* [#1072](https://github.com/stripe/stripe-ruby/pull/1072) Trigger workflows on beta branches
|
13
43
|
* [#1071](https://github.com/stripe/stripe-ruby/pull/1071) Use request_stripe_object for all requests
|
14
44
|
* [#1070](https://github.com/stripe/stripe-ruby/pull/1070) API Updates
|
15
|
-
|
45
|
+
|
16
46
|
Switch from using meta-programing to generating explicit methods for custom methods.
|
17
47
|
* [#1069](https://github.com/stripe/stripe-ruby/pull/1069) chore: Stop special implementation of Account.persons method.
|
18
48
|
|
@@ -28,8 +58,6 @@
|
|
28
58
|
* Add support for new resources `Treasury.CreditReversal`, `Treasury.DebitReversal`, `Treasury.FinancialAccountFeatures`, `Treasury.FinancialAccount`, `Treasury.FlowDetails`, `Treasury.InboundTransfer`, `Treasury.OutboundPayment`, `Treasury.OutboundTransfer`, `Treasury.ReceivedCredit`, `Treasury.ReceivedDebit`, `Treasury.TransactionEntry`, and `Treasury.Transaction`
|
29
59
|
* Add support for `retrieve_payment_method` method on resource `Customer`
|
30
60
|
* Add support for `list_owners` and `list` methods on resource `FinancialConnections.Account`
|
31
|
-
|
32
|
-
|
33
61
|
|
34
62
|
## 6.0.0 - 2022-05-09
|
35
63
|
* [#1056](https://github.com/stripe/stripe-ruby/pull/1056) API Updates
|
@@ -45,7 +73,6 @@
|
|
45
73
|
## 5.55.0 - 2022-05-05
|
46
74
|
* [#1055](https://github.com/stripe/stripe-ruby/pull/1055) API Updates
|
47
75
|
* Add support for new resources `FinancialConnections.AccountOwner`, `FinancialConnections.AccountOwnership`, `FinancialConnections.Account`, and `FinancialConnections.Session`
|
48
|
-
|
49
76
|
|
50
77
|
## 5.54.0 - 2022-05-03
|
51
78
|
* [#1053](https://github.com/stripe/stripe-ruby/pull/1053) API Updates
|
@@ -1076,3 +1103,4 @@ Identical to 1.56.0 above. I incorrectly cut a patch-level release.
|
|
1076
1103
|
<!--
|
1077
1104
|
# vim: set tw=0:
|
1078
1105
|
-->
|
1106
|
+
|
data/OPENAPI_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
v175
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
7.1.0-beta.1
|