stripe 13.2.0.pre.beta.3 → 13.3.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 +10 -2
- data/OPENAPI_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/stripe/util.rb +1 -1
- 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: be35a5e336dbcfa8c933bf5eb7100673faffe219227be5f950962f88523635fa
|
4
|
+
data.tar.gz: 238f955bbe4d0599b8b36dd00824ba7f66fd8abf01029ae03c356133d786a10a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d7119c6e3d182039eb41a727ee5d06ba2cc6c213b915d8999d3c7fae98932be26b3f1f6b1de423db5abb2a5becdb34c726ecd80ea55fe66e9e07554b0d8ce72
|
7
|
+
data.tar.gz: 8138bed60af0b3912f3c3cc2b70a8cf5eee3e54238bfd91716bf7e78c0ae06399c04dc0049a6c6d816811892b49926ec1ae2a2787ecb4ab19686137448a10d5f
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,15 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 13.3.0-beta.1 - 2024-11-21
|
4
|
+
* [#1489](https://github.com/stripe/stripe-ruby/pull/1489) Merging code from master to get the latest bug fixes.
|
5
|
+
|
6
|
+
## 13.2.0 - 2024-11-20
|
7
|
+
* [#1486](https://github.com/stripe/stripe-ruby/pull/1486) This release changes the pinned API version to `2024-11-20.acacia`.
|
8
|
+
* Add support for `respond` test helper method on resource `Issuing.Authorization`
|
9
|
+
|
3
10
|
## 13.2.0-beta.3 - 2024-11-14
|
4
11
|
* [#1484](https://github.com/stripe/stripe-ruby/pull/1484) Update generated code for beta
|
5
12
|
|
6
|
-
|
7
13
|
## 13.2.0-beta.2 - 2024-11-07
|
8
14
|
* [#1480](https://github.com/stripe/stripe-ruby/pull/1480) Update generated code for beta
|
9
15
|
* Add support for new resources `Issuing.FraudLiabilityDebit`, `PaymentAttemptRecord`, and `PaymentRecord`
|
@@ -14,9 +20,11 @@
|
|
14
20
|
* [#1477](https://github.com/stripe/stripe-ruby/pull/1477) Update generated code for beta
|
15
21
|
* Add support for `trigger_action` method on resource `PaymentIntent`
|
16
22
|
|
23
|
+
## 13.1.2 - 2024-11-15
|
24
|
+
* [#1488](https://github.com/stripe/stripe-ruby/pull/1488) Fix incorrect key in param encoding
|
25
|
+
|
17
26
|
## 13.1.1 - 2024-11-06
|
18
27
|
* [#1483](https://github.com/stripe/stripe-ruby/pull/1483) Fix APIResource#retrieve not sending `stripe_version`
|
19
|
-
* [#1478](https://github.com/stripe/stripe-ruby/pull/1478) Update changelog with a note on 2024-10-28.acacia API version
|
20
28
|
|
21
29
|
## 13.1.0 - 2024-10-29
|
22
30
|
* [#1472](https://github.com/stripe/stripe-ruby/pull/1472) This release changes the pinned API version to `2024-10-28.acacia`.
|
data/OPENAPI_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
v1370
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
13.
|
1
|
+
13.3.0-beta.1
|
data/lib/stripe/util.rb
CHANGED
@@ -259,7 +259,7 @@ module Stripe
|
|
259
259
|
if elem.is_a?(Hash)
|
260
260
|
result += flatten_params(elem, api_mode, "#{calculated_key}[#{i}]")
|
261
261
|
elsif elem.is_a?(Array)
|
262
|
-
result += flatten_params_array(elem,
|
262
|
+
result += flatten_params_array(elem, api_mode, calculated_key)
|
263
263
|
else
|
264
264
|
result << if api_mode == :v2
|
265
265
|
[calculated_key, elem]
|
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: 13.
|
4
|
+
version: 13.3.0.pre.beta.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-21 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.
|