stripe 10.0.0 → 10.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 +231 -40
- data/README.md +11 -0
- data/VERSION +1 -1
- data/lib/stripe/api_operations/request.rb +2 -0
- data/lib/stripe/api_version.rb +1 -0
- data/lib/stripe/object_types.rb +20 -0
- data/lib/stripe/request_signing_authenticator.rb +83 -0
- data/lib/stripe/resources/account_notice.rb +14 -0
- data/lib/stripe/resources/capital/financing_offer.rb +32 -0
- data/lib/stripe/resources/capital/financing_summary.rb +12 -0
- data/lib/stripe/resources/capital/financing_transaction.rb +13 -0
- data/lib/stripe/resources/confirmation_token.rb +11 -0
- data/lib/stripe/resources/customer_session.rb +12 -0
- data/lib/stripe/resources/financial_connections/account.rb +39 -0
- data/lib/stripe/resources/financial_connections/account_inferred_balance.rb +13 -0
- data/lib/stripe/resources/financial_connections/transaction.rb +13 -0
- data/lib/stripe/resources/gift_cards/card.rb +25 -0
- data/lib/stripe/resources/gift_cards/transaction.rb +56 -0
- data/lib/stripe/resources/issuing/credit_underwriting_record.rb +69 -0
- data/lib/stripe/resources/issuing/personalization_design.rb +77 -0
- data/lib/stripe/resources/issuing/physical_bundle.rb +13 -0
- data/lib/stripe/resources/order.rb +89 -0
- data/lib/stripe/resources/quote.rb +94 -0
- data/lib/stripe/resources/quote_phase.rb +29 -0
- data/lib/stripe/resources/quote_preview_invoice.rb +42 -0
- data/lib/stripe/resources/quote_preview_subscription_schedule.rb +10 -0
- data/lib/stripe/resources/subscription_schedule.rb +18 -0
- data/lib/stripe/resources/tax/form.rb +39 -0
- data/lib/stripe/resources/tax/registration.rb +19 -0
- data/lib/stripe/resources/terminal/reader.rb +54 -0
- data/lib/stripe/resources.rb +19 -0
- data/lib/stripe/stripe_client.rb +60 -26
- data/lib/stripe/stripe_configuration.rb +2 -0
- data/lib/stripe/util.rb +8 -1
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe.rb +46 -0
- metadata +24 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 959669bf82947e40816ff8b17297fb3ceb6f94ba6c08b7793a148e47d2ffb24d
|
4
|
+
data.tar.gz: 19121759e8cc80a16a69fcaac2ced159a04790abe6fbe290697fdfc849d96f71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c5a53ad6153bf31d53c0c339886bf553bb44277f68cff7d11b60ac6a9f4fa8d5bd8099f90c9dea719b23724264921c7356a32d6c30df278310278d3e9dc5499
|
7
|
+
data.tar.gz: ddc62d3a05e152a6247cb1921105e5dd560689994fe80b651000261ce0b5b95cb93f45fb89c4427e4e9e926f85d159bb0d06a72021300591609a0311af6afed9
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,10 @@
|
|
1
1
|
# Changelog
|
2
|
+
|
3
|
+
## 10.1.0-beta.1 - 2023-10-17
|
4
|
+
* [#1284](https://github.com/stripe/stripe-ruby/pull/1284) Update generated code for beta
|
5
|
+
- Update pinned API version to `2023-10-16`
|
6
|
+
* [#1282](https://github.com/stripe/stripe-ruby/pull/1282) Update generated code for beta
|
7
|
+
|
2
8
|
## 10.0.0 - 2023-10-16
|
3
9
|
* This release changes the pinned API version to `2023-10-16`. Please read the [API Upgrade Guide](https://stripe.com/docs/upgrades#2023-10-16) and carefully review the API changes before upgrading `stripe-ruby`.
|
4
10
|
* [#1283](https://github.com/stripe/stripe-ruby/pull/1283) Update generated code
|
@@ -6,11 +12,33 @@
|
|
6
12
|
* [#1281](https://github.com/stripe/stripe-ruby/pull/1281) Update generated code
|
7
13
|
* Documentation only changes
|
8
14
|
|
15
|
+
## 9.5.0-beta.2 - 2023-10-12
|
16
|
+
* [#1280](https://github.com/stripe/stripe-ruby/pull/1280) Update generated code for beta
|
17
|
+
* Add support for new resources `AccountNotice` and `Issuing.CreditUnderwritingRecord`
|
18
|
+
* Add support for `list`, `retrieve`, and `update` methods on resource `AccountNotice`
|
19
|
+
* Add support for `correct`, `create_from_application`, `create_from_proactive_review`, `list`, `report_decision`, and `retrieve` methods on resource `CreditUnderwritingRecord`
|
20
|
+
|
21
|
+
## 9.5.0-beta.1 - 2023-10-05
|
22
|
+
* [#1278](https://github.com/stripe/stripe-ruby/pull/1278) Update generated code for beta
|
23
|
+
* Add support for `mark_draft` and `mark_stale` methods on resource `Quote`
|
24
|
+
* Remove support for `draft_quote` and `mark_stale_quote` methods on resource `Quote`
|
25
|
+
* Rename `preview_invoice_lines` to `list_preview_invoice_lines` on resource `Quote`
|
26
|
+
|
9
27
|
## 9.4.0 - 2023-10-05
|
10
28
|
* [#1277](https://github.com/stripe/stripe-ruby/pull/1277) Update generated code
|
11
29
|
* Add support for new resources `Issuing.Token`
|
12
30
|
* Add support for `list`, `retrieve`, and `update` methods on resource `Token`
|
13
31
|
|
32
|
+
## 9.4.0-beta.3 - 2023-09-28
|
33
|
+
* [#1276](https://github.com/stripe/stripe-ruby/pull/1276) Update generated code for beta
|
34
|
+
* Rename resources `Issuing.CardDesign` and `Issuing.CardBundle` to `Issuing.PersonalizationDesign` and `Issuing.PhysicalBundle`
|
35
|
+
|
36
|
+
## 9.4.0-beta.2 - 2023-09-21
|
37
|
+
* [#1273](https://github.com/stripe/stripe-ruby/pull/1273) Update generated code for beta
|
38
|
+
|
39
|
+
## 9.4.0-beta.1 - 2023-09-14
|
40
|
+
* Updated stable APIs to the latest version
|
41
|
+
|
14
42
|
## 9.3.0 - 2023-09-14
|
15
43
|
* [#1272](https://github.com/stripe/stripe-ruby/pull/1272) Update generated code
|
16
44
|
* Add support for new resource `PaymentMethodConfiguration`
|
@@ -19,18 +47,38 @@
|
|
19
47
|
* Add support for `capture`, `create`, `expire`, `increment`, and `reverse` test helper methods on resource `Issuing.Authorization`
|
20
48
|
* Add support for `create_force_capture`, `create_unlinked_refund`, and `refund` test helper methods on resource `Issuing.Transaction`
|
21
49
|
|
50
|
+
## 9.3.0-beta.1 - 2023-09-07
|
51
|
+
* [#1269](https://github.com/stripe/stripe-ruby/pull/1269) Update generated code for beta
|
52
|
+
* Release specs are identical.
|
53
|
+
* [#1268](https://github.com/stripe/stripe-ruby/pull/1268) Update generated code for beta
|
54
|
+
* Remove support for `submit_card` test helper method on resource `Issuing.Card`
|
55
|
+
* [#1265](https://github.com/stripe/stripe-ruby/pull/1265) Update generated code for beta
|
56
|
+
* Rename `Quote.preview_invoices` to `QuotePreviewInvoice.list` and `Quote.preview_schedules` to `QuotePreviewSchedules.list`
|
57
|
+
* [#1264](https://github.com/stripe/stripe-ruby/pull/1264) Update generated code for beta
|
58
|
+
* Add support for new resources `QuotePreviewInvoice` and `QuotePreviewSchedule`
|
59
|
+
* [#1259](https://github.com/stripe/stripe-ruby/pull/1259) Update generated code for beta
|
60
|
+
|
61
|
+
* [#1257](https://github.com/stripe/stripe-ruby/pull/1257) Update generated code for beta
|
62
|
+
|
63
|
+
* [#1254](https://github.com/stripe/stripe-ruby/pull/1254) Update generated code for beta
|
64
|
+
* Add support for `submit_card` test helper method on resource `Issuing.Card`
|
65
|
+
* [#1252](https://github.com/stripe/stripe-ruby/pull/1252) Remove developer_message support
|
66
|
+
|
22
67
|
## 9.2.0 - 2023-09-07
|
23
68
|
* [#1267](https://github.com/stripe/stripe-ruby/pull/1267) Update generated code
|
24
69
|
* Add support for new resource `PaymentMethodDomain`
|
25
70
|
* Add support for `create`, `list`, `retrieve`, `update`, and `validate` methods on resource `PaymentMethodDomain`
|
26
71
|
|
72
|
+
## 9.2.0-beta.1 - 2023-08-31
|
73
|
+
* [#1265](https://github.com/stripe/stripe-ruby/pull/1265) Update generated code for beta
|
74
|
+
* Rename `Quote.preview_invoices` to `QuotePreviewInvoice.list` and `Quote.preview_schedules` to `QuotePreviewSchedules.list`
|
75
|
+
|
27
76
|
## 9.1.0 - 2023-08-31
|
28
77
|
* [#1266](https://github.com/stripe/stripe-ruby/pull/1266) Update generated code
|
29
78
|
* Add support for new resource `AccountSession`
|
30
79
|
* Add support for `create` method on resource `AccountSession`
|
31
80
|
* [#1262](https://github.com/stripe/stripe-ruby/pull/1262) Explicitly format timestamp in SignatureVerificationError message
|
32
81
|
|
33
|
-
|
34
82
|
## 9.0.0 - 2023-08-16
|
35
83
|
**⚠️ ACTION REQUIRED: the breaking change in this release likely affects you ⚠️**
|
36
84
|
|
@@ -63,10 +111,39 @@
|
|
63
111
|
|
64
112
|
That is, instead of upgrading stripe-ruby and separately upgrading your Stripe API Version through the Stripe Dashboard. whenever you upgrade major versions of stripe-ruby, you should also upgrade your integration to be compatible with the latest Stripe API version.
|
65
113
|
|
114
|
+
## 9.0.0-beta.1 - 2023-08-24
|
115
|
+
* [#1264](https://github.com/stripe/stripe-ruby/pull/1264) Update generated code for beta
|
116
|
+
* Add support for new resources `QuotePreviewInvoice` and `QuotePreviewSchedule`
|
117
|
+
* [#1259](https://github.com/stripe/stripe-ruby/pull/1259) Update generated code for beta
|
118
|
+
|
119
|
+
## 8.8.0-beta.1 - 2023-08-10
|
120
|
+
* [#1257](https://github.com/stripe/stripe-ruby/pull/1257) Update generated code for beta
|
121
|
+
* Updated stable APIs to the latest version
|
122
|
+
|
66
123
|
## 8.7.0 - 2023-08-10
|
67
124
|
* [#1256](https://github.com/stripe/stripe-ruby/pull/1256) Update generated code
|
68
125
|
Add resources `Tax::CalculationLineItem`, `Tax::TransactionLineItem`, and `Treasury::FinancialAccountFeatures`. These resources have no methods on them, but do represent the return type of methods elsewhere.
|
69
126
|
|
127
|
+
## 8.7.0-beta.3 - 2023-08-03
|
128
|
+
* [#1254](https://github.com/stripe/stripe-ruby/pull/1254) Update generated code for beta
|
129
|
+
* Add support for `submit_card` test helper method on resource `Issuing.Card`
|
130
|
+
* [#1252](https://github.com/stripe/stripe-ruby/pull/1252) Remove developer_message support
|
131
|
+
|
132
|
+
## 8.7.0-beta.2 - 2023-07-28
|
133
|
+
* [#1251](https://github.com/stripe/stripe-ruby/pull/1251) Update generated code for beta
|
134
|
+
* Add support for new resource `Tax.Form`
|
135
|
+
* Add support for `list`, `pdf`, and `retrieve` methods on resource `Form`
|
136
|
+
* [#1249](https://github.com/stripe/stripe-ruby/pull/1249) Update generated code for beta
|
137
|
+
* [#1246](https://github.com/stripe/stripe-ruby/pull/1246) Update generated code for beta
|
138
|
+
|
139
|
+
## 8.7.0-beta.1 - 2023-07-13
|
140
|
+
* [#1245](https://github.com/stripe/stripe-ruby/pull/1245) Update generated code for beta
|
141
|
+
Release specs are identical.
|
142
|
+
* [#1243](https://github.com/stripe/stripe-ruby/pull/1243) Update generated code for beta
|
143
|
+
* Add support for new resource `PaymentMethodConfiguration`
|
144
|
+
* Add support for `create`, `list`, `retrieve`, and `update` methods on resource `PaymentMethodConfiguration`
|
145
|
+
* [#1239](https://github.com/stripe/stripe-ruby/pull/1239) Update generated code for beta
|
146
|
+
|
70
147
|
## 8.6.0 - 2023-07-13
|
71
148
|
* [#1244](https://github.com/stripe/stripe-ruby/pull/1244) Update generated code
|
72
149
|
* Add support for new resource `Tax.Settings`
|
@@ -95,6 +172,37 @@
|
|
95
172
|
|
96
173
|
* [#1204](https://github.com/stripe/stripe-ruby/pull/1204) Update generated code
|
97
174
|
|
175
|
+
## 8.6.0-beta.6 - 2023-06-22
|
176
|
+
* [#1237](https://github.com/stripe/stripe-ruby/pull/1237) Update generated code for beta
|
177
|
+
* Add support for new resource `CustomerSession`
|
178
|
+
* Add support for `create` method on resource `CustomerSession`
|
179
|
+
* [#1233](https://github.com/stripe/stripe-ruby/pull/1233) Update generated code for beta
|
180
|
+
* [#1229](https://github.com/stripe/stripe-ruby/pull/1229) Update generated code for beta
|
181
|
+
|
182
|
+
## 8.6.0-beta.5 - 2023-06-01
|
183
|
+
* [#1227](https://github.com/stripe/stripe-ruby/pull/1227) Update generated code for beta
|
184
|
+
* [#1228](https://github.com/stripe/stripe-ruby/pull/1228) Document raw_request
|
185
|
+
* [#1222](https://github.com/stripe/stripe-ruby/pull/1222) Update generated code for beta
|
186
|
+
* [#1224](https://github.com/stripe/stripe-ruby/pull/1224) Handle developer message in preview error responses
|
187
|
+
|
188
|
+
## 8.6.0-beta.4 - 2023-05-19
|
189
|
+
* [#1220](https://github.com/stripe/stripe-ruby/pull/1220) Update generated code for beta
|
190
|
+
* Add support for `subscribe` and `unsubscribe` methods on resource `FinancialConnections.Account`
|
191
|
+
* [#1217](https://github.com/stripe/stripe-ruby/pull/1217) Add raw_request
|
192
|
+
* [#1216](https://github.com/stripe/stripe-ruby/pull/1216) Update generated code for beta
|
193
|
+
* [#1214](https://github.com/stripe/stripe-ruby/pull/1214) Update generated code for beta
|
194
|
+
|
195
|
+
## 8.6.0-beta.3 - 2023-04-17
|
196
|
+
* [#1211](https://github.com/stripe/stripe-ruby/pull/1211) Update generated code for beta
|
197
|
+
* [#1210](https://github.com/stripe/stripe-ruby/pull/1210), [#1212](https://github.com/stripe/stripe-ruby/pull/1212), [#1213](https://github.com/stripe/stripe-ruby/pull/1213) Add support for request signing
|
198
|
+
|
199
|
+
## 8.6.0-beta.2 - 2023-04-13
|
200
|
+
* [#1206](https://github.com/stripe/stripe-ruby/pull/1206) Update generated code for beta
|
201
|
+
* Add support for `collect_payment_method` and `confirm_payment_intent` methods on resource `Terminal.Reader`
|
202
|
+
* [#1205](https://github.com/stripe/stripe-ruby/pull/1205) Update generated code for beta
|
203
|
+
|
204
|
+
## 8.6.0-beta.1 - 2023-03-30
|
205
|
+
* [#1202](https://github.com/stripe/stripe-ruby/pull/1202) Update generated code for beta
|
98
206
|
|
99
207
|
## 8.5.0 - 2023-03-30
|
100
208
|
* [#1203](https://github.com/stripe/stripe-ruby/pull/1203) Update generated code
|
@@ -102,6 +210,11 @@
|
|
102
210
|
* 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.
|
103
211
|
* [#1201](https://github.com/stripe/stripe-ruby/pull/1201) Update save deprecation message
|
104
212
|
|
213
|
+
## 8.5.0-beta.1 - 2023-03-23
|
214
|
+
* [#1194](https://github.com/stripe/stripe-ruby/pull/1194) Update generated code for beta (new)
|
215
|
+
* Add support for new resources `Tax.CalculationLineItem` and `Tax.TransactionLineItem`
|
216
|
+
* Add support for `collect_inputs` method on resource `Terminal.Reader`
|
217
|
+
|
105
218
|
## 8.4.0 - 2023-03-23
|
106
219
|
* [#1197](https://github.com/stripe/stripe-ruby/pull/1197) Update generated code (new)
|
107
220
|
* Add support for new resources `Tax.CalculationLineItem`, `Tax.Calculation`, `Tax.TransactionLineItem`, and `Tax.Transaction`
|
@@ -109,18 +222,91 @@
|
|
109
222
|
* Add support for `create_from_calculation`, `create_reversal`, `create`, `list_line_items`, and `retrieve` methods on resource `Transaction`
|
110
223
|
* [#1152](https://github.com/stripe/stripe-ruby/pull/1152) Symbolize hash keys inside `convert_to_stripe_object_with_params`
|
111
224
|
|
225
|
+
## 8.4.0-beta.4 - 2023-03-16
|
226
|
+
* [#1189](https://github.com/stripe/stripe-ruby/pull/1189) Update generated code for beta (new)
|
227
|
+
* Add support for `create_from_calculation` method on resource `Tax.Transaction`
|
228
|
+
* [#1188](https://github.com/stripe/stripe-ruby/pull/1188) Update generated code for beta (new)
|
229
|
+
* Remove support for resources `Capital.FinancingOffer` and `Capital.FinancingSummary`
|
230
|
+
* Remove support for `list`, `mark_delivered`, and `retrieve` methods on resource `FinancingOffer`
|
231
|
+
* Remove support for `retrieve` method on resource `FinancingSummary`
|
232
|
+
* [#1187](https://github.com/stripe/stripe-ruby/pull/1187) Merge upstream master
|
233
|
+
|
234
|
+
## 8.4.0-beta.3 - 2023-03-09
|
235
|
+
* [#1184](https://github.com/stripe/stripe-ruby/pull/1184) API Updates for beta branch
|
236
|
+
* Updated stable APIs to the latest version
|
237
|
+
* Remove support for `list_transactions` method on resource `Tax.Transaction`
|
238
|
+
|
239
|
+
## 8.4.0-beta.2 - 2023-03-03
|
240
|
+
* [#1183](https://github.com/stripe/stripe-ruby/pull/1183) API Updates for beta branch
|
241
|
+
* Updated stable APIs to the latest version
|
242
|
+
* Add support for new resources `Issuing.CardBundle` and `Issuing.CardDesign`
|
243
|
+
* Add support for `list` and `retrieve` methods on resource `CardBundle`
|
244
|
+
* Add support for `list`, `retrieve`, and `update` methods on resource `CardDesign`
|
245
|
+
|
246
|
+
## 8.4.0-beta.1 - 2023-02-23
|
247
|
+
* [#1182](https://github.com/stripe/stripe-ruby/pull/1182) API Updates for beta branch
|
248
|
+
* Updated stable APIs to the latest version
|
249
|
+
|
112
250
|
## 8.3.0 - 2023-02-16
|
113
251
|
* [#1175](https://github.com/stripe/stripe-ruby/pull/1175) API Updates
|
114
252
|
* Add support for `refund_payment` method on resource `Terminal.Reader`
|
115
253
|
|
254
|
+
## 8.3.0-beta.1 - 2023-02-02
|
255
|
+
* [#1174](https://github.com/stripe/stripe-ruby/pull/1174) API Updates for beta branch
|
256
|
+
* Updated stable APIs to the latest version
|
257
|
+
* Add support for new resource `FinancialConnections.Transaction`
|
258
|
+
* Add support for `list` method on resource `Transaction`
|
259
|
+
|
116
260
|
## 8.2.0 - 2023-02-02
|
117
261
|
* [#1173](https://github.com/stripe/stripe-ruby/pull/1173) API Updates
|
118
262
|
* Add support for `resume` method on resource `Subscription`
|
119
263
|
* [#1171](https://github.com/stripe/stripe-ruby/pull/1171) Remove unused `partial` param from `initialize_from`
|
120
264
|
|
265
|
+
## 8.2.0-beta.3 - 2023-01-26
|
266
|
+
* [#1172](https://github.com/stripe/stripe-ruby/pull/1172) API Updates for beta branch
|
267
|
+
* Updated stable APIs to the latest version
|
268
|
+
* Add support for `list_transactions` method on resource `Tax.Transaction`
|
269
|
+
|
270
|
+
## 8.2.0-beta.2 - 2023-01-19
|
271
|
+
* [#1170](https://github.com/stripe/stripe-ruby/pull/1170) API Updates for beta branch
|
272
|
+
* Updated stable APIs to the latest version
|
273
|
+
* Add support for `Tax.Settings` resource.
|
274
|
+
|
275
|
+
## 8.2.0-beta.1 - 2023-01-12
|
276
|
+
* [#1167](https://github.com/stripe/stripe-ruby/pull/1167) API Updates for beta branch
|
277
|
+
* Updated stable APIs to the latest version
|
278
|
+
* Change `quote.draft_quote` implementation to from calling `POST /v1/quotes/{quote}/draft` to `POST /v1/quotes/{quote}/mark_draft`
|
279
|
+
* Add support for `Tax::Register` resource
|
280
|
+
|
121
281
|
## 8.1.0 - 2023-01-12
|
122
282
|
* [#1162](https://github.com/stripe/stripe-ruby/pull/1162) Improve request events instrumentation
|
123
283
|
|
284
|
+
## 8.1.0-beta.4 - 2023-01-05
|
285
|
+
* [#1164](https://github.com/stripe/stripe-ruby/pull/1164) API Updates for beta branch
|
286
|
+
* Updated stable APIs to the latest version
|
287
|
+
* Add support for `mark_stale_quote` method on resource `Quote`
|
288
|
+
|
289
|
+
## 8.1.0-beta.3 - 2022-12-22
|
290
|
+
* [#1158](https://github.com/stripe/stripe-ruby/pull/1158) API Updates for beta branch
|
291
|
+
* Updated stable APIs to the latest version
|
292
|
+
* Move `TaxCalculation` and `TaxTransaction` to `Tax::Calculation` and `Tax::Transaction`.
|
293
|
+
|
294
|
+
## 8.1.0-beta.2 - 2022-12-15
|
295
|
+
* [#1156](https://github.com/stripe/stripe-ruby/pull/1156) API Updates for beta branch
|
296
|
+
* Updated stable APIs to the latest version
|
297
|
+
* Add support for new resources `TaxCalculation`, and `TaxTransaction`
|
298
|
+
* Add support for `create` and `list_line_items` methods on resource `TaxCalculation`
|
299
|
+
* Add support for `create_reversal`, `create`, and `retrieve` methods on resource `TaxTransaction`
|
300
|
+
* [#1155](https://github.com/stripe/stripe-ruby/pull/1155) API Updates for beta branch
|
301
|
+
* Updated stable APIs to the latest version
|
302
|
+
* Add support for new resource `QuoteLine`.
|
303
|
+
|
304
|
+
## 8.1.0-beta.1 - 2022-12-08
|
305
|
+
* [#1153](https://github.com/stripe/stripe-ruby/pull/1153) API Updates for beta branch
|
306
|
+
* Updated stable APIs to the latest version
|
307
|
+
* [#1146](https://github.com/stripe/stripe-ruby/pull/1146) API Updates for beta branch
|
308
|
+
* Updated stable APIs to the latest version
|
309
|
+
|
124
310
|
## 8.0.0 - 2022-11-16
|
125
311
|
* [#1144](https://github.com/stripe/stripe-ruby/pull/1144) Next major release changes
|
126
312
|
|
@@ -128,30 +314,29 @@ Breaking changes that arose during code generation of the library that we postpo
|
|
128
314
|
|
129
315
|
"⚠️" symbol highlights breaking changes.
|
130
316
|
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
# after
|
140
|
-
Stripe::Refund.update("re_123", description: "Refund description")
|
141
|
-
```
|
317
|
+
## 7.2.0-beta.5 - 2022-11-02
|
318
|
+
* [#1139](https://github.com/stripe/stripe-ruby/pull/1139) API Updates for beta branch
|
319
|
+
* Updated beta APIs to the latest stable version
|
320
|
+
* [#1135](https://github.com/stripe/stripe-ruby/pull/1135) API Updates for beta branch
|
321
|
+
* Updated stable APIs to the latest version
|
322
|
+
|
323
|
+
## 7.2.0-beta.4 - 2022-10-07
|
324
|
+
* [#999](https://github.com/stripe/stripe-ruby/pull/999) DESCRIBE CHANGES HERE (try to use the same style, tense, etc. as the other entries)
|
142
325
|
|
143
|
-
|
144
|
-
-
|
145
|
-
|
146
|
-
|
147
|
-
```ruby
|
148
|
-
# before
|
149
|
-
Stripe::Subscription::delete("sub_12345")
|
326
|
+
## 7.2.0-beta.3 - 2022-09-26
|
327
|
+
* [#1129](https://github.com/stripe/stripe-ruby/pull/1129) API Updates for beta branch
|
328
|
+
* Updated stable APIs to the latest version
|
329
|
+
* Add `FinancingOffer`, `FinancingSummary` and `FinancingTransaction` resources.
|
150
330
|
|
151
|
-
|
152
|
-
|
153
|
-
|
331
|
+
## 7.2.0-beta.2 - 2022-08-26
|
332
|
+
* [#1127](https://github.com/stripe/stripe-ruby/pull/1127) API Updates for beta branch
|
333
|
+
* Updated stable APIs to the latest version
|
334
|
+
* Add support for the beta [Gift Card API](https://stripe.com/docs/gift-cards).
|
154
335
|
|
336
|
+
## 7.2.0-beta.1 - 2022-08-23
|
337
|
+
* [#1122](https://github.com/stripe/stripe-ruby/pull/1122) API Updates for beta branch
|
338
|
+
- Updated stable APIs to the latest version
|
339
|
+
- `Stripe-Version` beta headers are not pinned by-default and need to be manually specified, please refer to [beta SDKs README section](https://github.com/stripe/stripe-ruby/blob/master/README.md#beta-sdks)
|
155
340
|
|
156
341
|
## 7.1.0 - 2022-08-19
|
157
342
|
* [#1116](https://github.com/stripe/stripe-ruby/pull/1116) API Updates
|
@@ -160,6 +345,16 @@ Breaking changes that arose during code generation of the library that we postpo
|
|
160
345
|
* [#1117](https://github.com/stripe/stripe-ruby/pull/1117) Refresh rubocop config.
|
161
346
|
* [#1115](https://github.com/stripe/stripe-ruby/pull/1115) Add a support section to the readme
|
162
347
|
|
348
|
+
## 7.1.0-beta.2 - 2022-08-11
|
349
|
+
* [#1113](https://github.com/stripe/stripe-ruby/pull/1113) API Updates for beta branch
|
350
|
+
- Updated stable APIs to the latest version
|
351
|
+
- Add `refund_payment` method to Terminal resource
|
352
|
+
|
353
|
+
## 7.1.0-beta.1 - 2022-08-03
|
354
|
+
* [#1107](https://github.com/stripe/stripe-ruby/pull/1107) API Updates for beta branch
|
355
|
+
- Updated stable APIs to the latest version
|
356
|
+
- Added the `Order` resource support
|
357
|
+
|
163
358
|
## 7.0.0 - 2022-08-02
|
164
359
|
|
165
360
|
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.
|
@@ -171,21 +366,19 @@ Breaking changes that arose during code generation of the library that we postpo
|
|
171
366
|
* [#1090](https://github.com/stripe/stripe-ruby/pull/1090) Use auto-generation for `Invoice` methods
|
172
367
|
* [#1103](https://github.com/stripe/stripe-ruby/pull/1103) Next major release changes
|
173
368
|
|
174
|
-
|
175
|
-
*
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
*
|
185
|
-
|
186
|
-
*
|
187
|
-
* Remove ability to list `Card` resource for a `Recipient`.
|
188
|
-
* Remove `cancel` method from `Transfer` resource. The method was deprecated.
|
369
|
+
## 6.6.0-beta.1 - 2022-07-22
|
370
|
+
* [#1100](https://github.com/stripe/stripe-ruby/pull/1100) API Updates for beta branch
|
371
|
+
- Updated stable APIs to the latest version
|
372
|
+
- Add `QuotePhase` resource
|
373
|
+
* [#1097](https://github.com/stripe/stripe-ruby/pull/1097) API Updates for beta branch
|
374
|
+
- Updated stable APIs to the latest version
|
375
|
+
- Add `SubscriptionSchedule.amend` method.
|
376
|
+
* [#1093](https://github.com/stripe/stripe-ruby/pull/1093) API Updates for beta branch
|
377
|
+
- Include `server_side_confirmation_beta=v1` beta
|
378
|
+
- Add `secretKeyConfirmation` to `PaymentIntent`
|
379
|
+
* [#1085](https://github.com/stripe/stripe-ruby/pull/1085) API Updates for beta branch
|
380
|
+
- Updated stable APIs to the latest version
|
381
|
+
* [#1075](https://github.com/stripe/stripe-ruby/pull/1075) Use the generated API version
|
189
382
|
|
190
383
|
## 6.5.0 - 2022-06-29
|
191
384
|
* [#1084](https://github.com/stripe/stripe-ruby/pull/1084) API Updates
|
@@ -215,8 +408,6 @@ Breaking changes that arose during code generation of the library that we postpo
|
|
215
408
|
* 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`
|
216
409
|
* Add support for `retrieve_payment_method` method on resource `Customer`
|
217
410
|
* Add support for `list_owners` and `list` methods on resource `FinancialConnections.Account`
|
218
|
-
|
219
|
-
|
220
411
|
|
221
412
|
## 6.0.0 - 2022-05-09
|
222
413
|
* [#1056](https://github.com/stripe/stripe-ruby/pull/1056) API Updates
|
@@ -232,7 +423,6 @@ Breaking changes that arose during code generation of the library that we postpo
|
|
232
423
|
## 5.55.0 - 2022-05-05
|
233
424
|
* [#1055](https://github.com/stripe/stripe-ruby/pull/1055) API Updates
|
234
425
|
* Add support for new resources `FinancialConnections.AccountOwner`, `FinancialConnections.AccountOwnership`, `FinancialConnections.Account`, and `FinancialConnections.Session`
|
235
|
-
|
236
426
|
|
237
427
|
## 5.54.0 - 2022-05-03
|
238
428
|
* [#1053](https://github.com/stripe/stripe-ruby/pull/1053) API Updates
|
@@ -1263,3 +1453,4 @@ Identical to 1.56.0 above. I incorrectly cut a patch-level release.
|
|
1263
1453
|
<!--
|
1264
1454
|
# vim: set tw=0:
|
1265
1455
|
-->
|
1456
|
+
|
data/README.md
CHANGED
@@ -323,6 +323,17 @@ If your beta feature requires a `Stripe-Version` header to be sent, use the `Str
|
|
323
323
|
Stripe.api_version += "; feature_beta=v3"
|
324
324
|
```
|
325
325
|
|
326
|
+
### Custom requests
|
327
|
+
|
328
|
+
If you would like to send a request to an undocumented API (for example you are in a private beta), or if you prefer to bypass the method definitions in the library and specify your request details directly, you can use the `raw_request` method on `Stripe`.
|
329
|
+
|
330
|
+
```ruby
|
331
|
+
resp = Stripe.raw_request(:post, "/v1/beta_endpoint", {param: 123}, {stripe_version: "2022-11-15; feature_beta=v3"})
|
332
|
+
|
333
|
+
# (Optional) resp is a StripeResponse. You can use `Stripe.deserialize` to get a StripeObject.
|
334
|
+
deserialized_resp = Stripe.deserialize(resp.http_body)
|
335
|
+
```
|
336
|
+
|
326
337
|
## Support
|
327
338
|
|
328
339
|
New features and bug fixes are released on the latest major version of the Stripe Ruby library. If you are on an older major version, we recommend that you upgrade to the latest in order to use the new features and bug fixes including those for security vulnerabilities. Older major versions of the package will continue to be available for use, but will not be receiving any updates.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
10.0.
|
1
|
+
10.1.0-beta.1
|
@@ -47,6 +47,7 @@ module Stripe
|
|
47
47
|
api_key = headers.delete(:api_key)
|
48
48
|
api_base = headers.delete(:api_base)
|
49
49
|
client = headers.delete(:client)
|
50
|
+
api_mode = headers.delete(:api_mode)
|
50
51
|
# Assume all remaining opts must be headers
|
51
52
|
|
52
53
|
resp, opts[:api_key] = client.send(
|
@@ -54,6 +55,7 @@ module Stripe
|
|
54
55
|
method, url,
|
55
56
|
api_base: api_base, api_key: api_key,
|
56
57
|
headers: headers, params: params,
|
58
|
+
api_mode: api_mode,
|
57
59
|
&read_body_chunk_block
|
58
60
|
)
|
59
61
|
|
data/lib/stripe/api_version.rb
CHANGED
data/lib/stripe/object_types.rb
CHANGED
@@ -14,6 +14,7 @@ module Stripe
|
|
14
14
|
# business objects
|
15
15
|
Account::OBJECT_NAME => Account,
|
16
16
|
AccountLink::OBJECT_NAME => AccountLink,
|
17
|
+
AccountNotice::OBJECT_NAME => AccountNotice,
|
17
18
|
AccountSession::OBJECT_NAME => AccountSession,
|
18
19
|
ApplePayDomain::OBJECT_NAME => ApplePayDomain,
|
19
20
|
ApplicationFee::OBJECT_NAME => ApplicationFee,
|
@@ -25,10 +26,14 @@ module Stripe
|
|
25
26
|
BillingPortal::Configuration::OBJECT_NAME => BillingPortal::Configuration,
|
26
27
|
BillingPortal::Session::OBJECT_NAME => BillingPortal::Session,
|
27
28
|
Capability::OBJECT_NAME => Capability,
|
29
|
+
Capital::FinancingOffer::OBJECT_NAME => Capital::FinancingOffer,
|
30
|
+
Capital::FinancingSummary::OBJECT_NAME => Capital::FinancingSummary,
|
31
|
+
Capital::FinancingTransaction::OBJECT_NAME => Capital::FinancingTransaction,
|
28
32
|
Card::OBJECT_NAME => Card,
|
29
33
|
CashBalance::OBJECT_NAME => CashBalance,
|
30
34
|
Charge::OBJECT_NAME => Charge,
|
31
35
|
Checkout::Session::OBJECT_NAME => Checkout::Session,
|
36
|
+
ConfirmationToken::OBJECT_NAME => ConfirmationToken,
|
32
37
|
CountrySpec::OBJECT_NAME => CountrySpec,
|
33
38
|
Coupon::OBJECT_NAME => Coupon,
|
34
39
|
CreditNote::OBJECT_NAME => CreditNote,
|
@@ -36,6 +41,7 @@ module Stripe
|
|
36
41
|
Customer::OBJECT_NAME => Customer,
|
37
42
|
CustomerBalanceTransaction::OBJECT_NAME => CustomerBalanceTransaction,
|
38
43
|
CustomerCashBalanceTransaction::OBJECT_NAME => CustomerCashBalanceTransaction,
|
44
|
+
CustomerSession::OBJECT_NAME => CustomerSession,
|
39
45
|
Discount::OBJECT_NAME => Discount,
|
40
46
|
Dispute::OBJECT_NAME => Dispute,
|
41
47
|
EphemeralKey::OBJECT_NAME => EphemeralKey,
|
@@ -45,11 +51,16 @@ module Stripe
|
|
45
51
|
File::OBJECT_NAME_ALT => File,
|
46
52
|
FileLink::OBJECT_NAME => FileLink,
|
47
53
|
FinancialConnections::Account::OBJECT_NAME => FinancialConnections::Account,
|
54
|
+
FinancialConnections::AccountInferredBalance::OBJECT_NAME =>
|
55
|
+
FinancialConnections::AccountInferredBalance,
|
48
56
|
FinancialConnections::AccountOwner::OBJECT_NAME => FinancialConnections::AccountOwner,
|
49
57
|
FinancialConnections::AccountOwnership::OBJECT_NAME =>
|
50
58
|
FinancialConnections::AccountOwnership,
|
51
59
|
FinancialConnections::Session::OBJECT_NAME => FinancialConnections::Session,
|
60
|
+
FinancialConnections::Transaction::OBJECT_NAME => FinancialConnections::Transaction,
|
52
61
|
FundingInstructions::OBJECT_NAME => FundingInstructions,
|
62
|
+
GiftCards::Card::OBJECT_NAME => GiftCards::Card,
|
63
|
+
GiftCards::Transaction::OBJECT_NAME => GiftCards::Transaction,
|
53
64
|
Identity::VerificationReport::OBJECT_NAME => Identity::VerificationReport,
|
54
65
|
Identity::VerificationSession::OBJECT_NAME => Identity::VerificationSession,
|
55
66
|
Invoice::OBJECT_NAME => Invoice,
|
@@ -58,12 +69,16 @@ module Stripe
|
|
58
69
|
Issuing::Authorization::OBJECT_NAME => Issuing::Authorization,
|
59
70
|
Issuing::Card::OBJECT_NAME => Issuing::Card,
|
60
71
|
Issuing::Cardholder::OBJECT_NAME => Issuing::Cardholder,
|
72
|
+
Issuing::CreditUnderwritingRecord::OBJECT_NAME => Issuing::CreditUnderwritingRecord,
|
61
73
|
Issuing::Dispute::OBJECT_NAME => Issuing::Dispute,
|
74
|
+
Issuing::PersonalizationDesign::OBJECT_NAME => Issuing::PersonalizationDesign,
|
75
|
+
Issuing::PhysicalBundle::OBJECT_NAME => Issuing::PhysicalBundle,
|
62
76
|
Issuing::Token::OBJECT_NAME => Issuing::Token,
|
63
77
|
Issuing::Transaction::OBJECT_NAME => Issuing::Transaction,
|
64
78
|
LineItem::OBJECT_NAME => LineItem,
|
65
79
|
LoginLink::OBJECT_NAME => LoginLink,
|
66
80
|
Mandate::OBJECT_NAME => Mandate,
|
81
|
+
Order::OBJECT_NAME => Order,
|
67
82
|
PaymentIntent::OBJECT_NAME => PaymentIntent,
|
68
83
|
PaymentLink::OBJECT_NAME => PaymentLink,
|
69
84
|
PaymentMethod::OBJECT_NAME => PaymentMethod,
|
@@ -76,6 +91,9 @@ module Stripe
|
|
76
91
|
Product::OBJECT_NAME => Product,
|
77
92
|
PromotionCode::OBJECT_NAME => PromotionCode,
|
78
93
|
Quote::OBJECT_NAME => Quote,
|
94
|
+
QuotePhase::OBJECT_NAME => QuotePhase,
|
95
|
+
QuotePreviewInvoice::OBJECT_NAME => QuotePreviewInvoice,
|
96
|
+
QuotePreviewSubscriptionSchedule::OBJECT_NAME => QuotePreviewSubscriptionSchedule,
|
79
97
|
Radar::EarlyFraudWarning::OBJECT_NAME => Radar::EarlyFraudWarning,
|
80
98
|
Radar::ValueList::OBJECT_NAME => Radar::ValueList,
|
81
99
|
Radar::ValueListItem::OBJECT_NAME => Radar::ValueListItem,
|
@@ -95,6 +113,8 @@ module Stripe
|
|
95
113
|
SubscriptionSchedule::OBJECT_NAME => SubscriptionSchedule,
|
96
114
|
Tax::Calculation::OBJECT_NAME => Tax::Calculation,
|
97
115
|
Tax::CalculationLineItem::OBJECT_NAME => Tax::CalculationLineItem,
|
116
|
+
Tax::Form::OBJECT_NAME => Tax::Form,
|
117
|
+
Tax::Registration::OBJECT_NAME => Tax::Registration,
|
98
118
|
Tax::Settings::OBJECT_NAME => Tax::Settings,
|
99
119
|
Tax::Transaction::OBJECT_NAME => Tax::Transaction,
|
100
120
|
Tax::TransactionLineItem::OBJECT_NAME => Tax::TransactionLineItem,
|
@@ -0,0 +1,83 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Stripe
|
4
|
+
class RequestSigningAuthenticator
|
5
|
+
AUTHORIZATION_HEADER_NAME = "Authorization"
|
6
|
+
CONTENT_TYPE_HEADER_NAME = "Content-Type"
|
7
|
+
STRIPE_CONTEXT_HEADER_NAME = "Stripe-Context"
|
8
|
+
STRIPE_ACCOUNT_HEADER_NAME = "Stripe-Account"
|
9
|
+
CONTENT_DIGEST_HEADER_NAME = "Content-Digest"
|
10
|
+
SIGNATURE_INPUT_HEADER_NAME = "Signature-Input"
|
11
|
+
SIGNATURE_HEADER_NAME = "Signature"
|
12
|
+
|
13
|
+
attr_reader :auth_token, :sign_lambda
|
14
|
+
|
15
|
+
def initialize(auth_token, sign_lambda)
|
16
|
+
unless auth_token.is_a?(String)
|
17
|
+
raise ArgumentError, "auth_token must be a string"
|
18
|
+
end
|
19
|
+
unless sign_lambda.is_a?(Proc)
|
20
|
+
raise ArgumentError, "sign_lambda must be a lambda"
|
21
|
+
end
|
22
|
+
|
23
|
+
@auth_token = auth_token
|
24
|
+
@sign_lambda = sign_lambda
|
25
|
+
end
|
26
|
+
|
27
|
+
def authenticate(method, headers, body)
|
28
|
+
covered_headers = [CONTENT_TYPE_HEADER_NAME,
|
29
|
+
CONTENT_DIGEST_HEADER_NAME,
|
30
|
+
STRIPE_CONTEXT_HEADER_NAME,
|
31
|
+
STRIPE_ACCOUNT_HEADER_NAME,
|
32
|
+
AUTHORIZATION_HEADER_NAME,]
|
33
|
+
|
34
|
+
headers[AUTHORIZATION_HEADER_NAME] = "STRIPE-V2-SIG #{auth_token}"
|
35
|
+
|
36
|
+
if method == :get
|
37
|
+
covered_headers -= [CONTENT_TYPE_HEADER_NAME,
|
38
|
+
CONTENT_DIGEST_HEADER_NAME,]
|
39
|
+
else
|
40
|
+
content = body || ""
|
41
|
+
headers[CONTENT_DIGEST_HEADER_NAME] =
|
42
|
+
%(sha-256=:#{content_digest(content)}:)
|
43
|
+
end
|
44
|
+
|
45
|
+
covered_headers_formatted = covered_headers
|
46
|
+
.map { |string| %("#{string.downcase}") }
|
47
|
+
.join(" ")
|
48
|
+
|
49
|
+
signature_input = "(#{covered_headers_formatted});created=#{created_time}"
|
50
|
+
|
51
|
+
inputs = covered_headers
|
52
|
+
.map { |header| %("#{header.downcase}": #{headers[header]}) }
|
53
|
+
.join("\n")
|
54
|
+
|
55
|
+
signature_base = %(#{inputs}\n"@signature-params": #{signature_input})
|
56
|
+
.encode(Encoding::UTF_8)
|
57
|
+
|
58
|
+
headers[SIGNATURE_INPUT_HEADER_NAME] = "sig1=#{signature_input}"
|
59
|
+
|
60
|
+
headers[SIGNATURE_HEADER_NAME] =
|
61
|
+
"sig1=:#{encoded_signature(signature_base)}:"
|
62
|
+
end
|
63
|
+
|
64
|
+
private def sign(signature_base)
|
65
|
+
@sign_lambda.call(signature_base)
|
66
|
+
end
|
67
|
+
|
68
|
+
private def encoded_signature(signature_base)
|
69
|
+
Base64.strict_encode64(sign(signature_base))
|
70
|
+
rescue StandardError
|
71
|
+
raise AuthenticationError, "Encountered '#{e.message} (#{e.class})' "\
|
72
|
+
"when calculating request signature."
|
73
|
+
end
|
74
|
+
|
75
|
+
private def content_digest(content)
|
76
|
+
Base64.strict_encode64(OpenSSL::Digest.new("SHA256").digest(content))
|
77
|
+
end
|
78
|
+
|
79
|
+
private def created_time
|
80
|
+
Time.now.to_i
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Stripe
|
5
|
+
# A notice to a Connected account. Notice can be sent by Stripe on your behalf or you can opt to send the notices yourself.
|
6
|
+
#
|
7
|
+
# See the [guide to send notices](https://stripe.com/docs/issuing/compliance-us/issuing-regulated-customer-notices) to your connected accounts.
|
8
|
+
class AccountNotice < APIResource
|
9
|
+
extend Stripe::APIOperations::List
|
10
|
+
include Stripe::APIOperations::Save
|
11
|
+
|
12
|
+
OBJECT_NAME = "account_notice"
|
13
|
+
end
|
14
|
+
end
|