stripe 6.6.0.pre.beta.1 → 7.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a286445665c480e3a76c430167b3ab15b3cfee150bbe8dac88c11b6f659a0ad
4
- data.tar.gz: abecc95e3a2bca67e57d7fd45568566f04ea5ae633e93dd6fcfdc67da0f1e35b
3
+ metadata.gz: c8c056c26e7e957d838175e3ce97e714dd57d135d4334514d941a66774eaa01f
4
+ data.tar.gz: 4419dec5287e23621c54ac8f66eee626cfcdb1148d08febec6a58f0c490dac77
5
5
  SHA512:
6
- metadata.gz: 3831e6f6fa2348dcb6abac005264e128cbb6028ba2f45e4d542c2c35788ad0c1a80547c49fe80d03ae3fa933abc4c9d9c0377600b53c9b75c3ccaccd2ada0e94
7
- data.tar.gz: 8beebb89c127e5b66bbb0d4d1358dc41395f39ed282a1b36650615ef705fc0c59da277ee05ba642d07c7001804f2ed5df743e572f66eb50ef01537a325dc120d
6
+ metadata.gz: 1554ab4b614fcc677450b098fc96933d496e7c00e8a8711a564b827adf4785427cc4c6539b4ee74f014f98760cb6cc75de5d62d8d709a3c68366a67cf4ff620d
7
+ data.tar.gz: 0347a43b7406f460889a749c964135ee686211c34f7d3de568dd86ebf0026a34f38ecafa6d5419e8ff34100822295b9864cab52ae763db82db9bc4e14de1ad5a
data/CHANGELOG.md CHANGED
@@ -1,22 +1,35 @@
1
1
  # Changelog
2
2
 
3
- ## 6.6.0-beta.1 - 2022-07-22
4
- * [#1100](https://github.com/stripe/stripe-ruby/pull/1100) API Updates for beta branch
5
- - Updated stable APIs to the latest version
6
- - Add `QuotePhase` resource
7
- * [#1097](https://github.com/stripe/stripe-ruby/pull/1097) API Updates for beta branch
8
- - Updated stable APIs to the latest version
9
- - Add `SubscriptionSchedule.amend` method.
10
- * [#1093](https://github.com/stripe/stripe-ruby/pull/1093) API Updates for beta branch
11
- - Include `server_side_confirmation_beta=v1` beta
12
- - Add `secretKeyConfirmation` to `PaymentIntent`
13
- * [#1085](https://github.com/stripe/stripe-ruby/pull/1085) API Updates for beta branch
14
- - Updated stable APIs to the latest version
15
- * [#1075](https://github.com/stripe/stripe-ruby/pull/1075) Use the generated API version
3
+ ## 7.0.0 - 2022-08-02
4
+
5
+ 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.
6
+
7
+ "⚠️" symbol highlights breaking changes.
8
+
9
+ * [#1106](https://github.com/stripe/stripe-ruby/pull/1106) API Updates
10
+ * [#1092](https://github.com/stripe/stripe-ruby/pull/1092) API Updates
11
+ * [#1090](https://github.com/stripe/stripe-ruby/pull/1090) Use auto-generation for `Invoice` methods
12
+ * [#1103](https://github.com/stripe/stripe-ruby/pull/1103) Next major release changes
13
+
14
+ ### ⚠️ Changed
15
+ * `retrieve_cash_balance` and `update_cash_balance` methods on `Customer` resource no longer requires the second argument to always be `nil`. The methods now now take in `customer_id`, `params`, and `opts` parameters.
16
+ * Update default bundle of CA certificates to April 26, 2022.
17
+
18
+ ### Deprecated
19
+ * Deprecate `delete` method on `Subscription` resource. Please use `cancel` method instead.
20
+
21
+ ### ⚠️ Removed
22
+ * Remove `details` method from `Issuing.Card` resource. The method was not supported.
23
+ * Remove `Issuing.CardDetails` resource. Read more at https://stripe.com/docs/issuing/cards/virtual.
24
+ * Remove `create` method from `ReportType` resource. The method was not supported.
25
+ * Remove `usage_record_summaries` method from `SubscriptionItem` resource. Please use `list_usage_record_summaries` method instead.
26
+ * Remove `AlipayAccount`, `BitcoinReceiver`, `BitcoinTransaction`, `Issuing::CardDetails`, `Recipient`, ` RecipientTransfer`, and `ThreeDSecure` resources. The resources were deprecated or no longer in use.
27
+ * Remove ability to list `Card` resource for a `Recipient`.
28
+ * Remove `cancel` method from `Transfer` resource. The method was deprecated.
16
29
 
17
30
  ## 6.5.0 - 2022-06-29
18
31
  * [#1084](https://github.com/stripe/stripe-ruby/pull/1084) API Updates
19
- * Add support for `deliver_card`, `fail_card`, `return_card`, and `ship_card` test helper methods on resource `Issuing.Card`
32
+ * Add support for `deliver_card`, `fail_card`, `return_card`, and `ship_card` test helper methods on resource `Issuing.Card`
20
33
  * [#1076](https://github.com/stripe/stripe-ruby/pull/1076) fix: Update logging to coerce ASCII-8BIT into UTF-8.
21
34
 
22
35
  ## 6.4.0 - 2022-06-17
@@ -26,7 +39,7 @@
26
39
  * [#1072](https://github.com/stripe/stripe-ruby/pull/1072) Trigger workflows on beta branches
27
40
  * [#1071](https://github.com/stripe/stripe-ruby/pull/1071) Use request_stripe_object for all requests
28
41
  * [#1070](https://github.com/stripe/stripe-ruby/pull/1070) API Updates
29
-
42
+
30
43
  Switch from using meta-programing to generating explicit methods for custom methods.
31
44
  * [#1069](https://github.com/stripe/stripe-ruby/pull/1069) chore: Stop special implementation of Account.persons method.
32
45
 
@@ -42,6 +55,8 @@
42
55
  * 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`
43
56
  * Add support for `retrieve_payment_method` method on resource `Customer`
44
57
  * Add support for `list_owners` and `list` methods on resource `FinancialConnections.Account`
58
+
59
+
45
60
 
46
61
  ## 6.0.0 - 2022-05-09
47
62
  * [#1056](https://github.com/stripe/stripe-ruby/pull/1056) API Updates
@@ -57,6 +72,7 @@
57
72
  ## 5.55.0 - 2022-05-05
58
73
  * [#1055](https://github.com/stripe/stripe-ruby/pull/1055) API Updates
59
74
  * Add support for new resources `FinancialConnections.AccountOwner`, `FinancialConnections.AccountOwnership`, `FinancialConnections.Account`, and `FinancialConnections.Session`
75
+
60
76
 
61
77
  ## 5.54.0 - 2022-05-03
62
78
  * [#1053](https://github.com/stripe/stripe-ruby/pull/1053) API Updates
@@ -1087,4 +1103,3 @@ Identical to 1.56.0 above. I incorrectly cut a patch-level release.
1087
1103
  <!--
1088
1104
  # vim: set tw=0:
1089
1105
  -->
1090
-
data/OPENAPI_VERSION CHANGED
@@ -1 +1 @@
1
- v170
1
+ v174
data/VERSION CHANGED
@@ -1 +1 @@
1
- 6.6.0-beta.1
1
+ 7.0.0