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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b689dbf916ec68bd4ab529d3ebcf0bba03c3b176e45894ccad49f5b2411249f5
4
- data.tar.gz: d369743845bd9ad2cfbd3e08155adbc60a570f6a2ac66db39d993a4404ded55b
3
+ metadata.gz: be35a5e336dbcfa8c933bf5eb7100673faffe219227be5f950962f88523635fa
4
+ data.tar.gz: 238f955bbe4d0599b8b36dd00824ba7f66fd8abf01029ae03c356133d786a10a
5
5
  SHA512:
6
- metadata.gz: 0d42049012e28f400affc14217b70b8a67480b6f855378ddefdfc5e6f8d6b9668fe6968329d01c53f86da9444c2496c9926e5f49297d7f5c80cebd5e1bf9e329
7
- data.tar.gz: 4a5cc37abe24102999ba1e1ed12b4fd754d1daf4d2a394cd0dbc760af218a1c5d2b7f77b67a30334c7fa75725bb0f9feef4d9c2d6c3cd39b0b43774f6fb79e5b
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
- v1345
1
+ v1370
data/VERSION CHANGED
@@ -1 +1 @@
1
- 13.2.0-beta.3
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, calculated_key, api_mode)
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]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "13.2.0-beta.3"
4
+ VERSION = "13.3.0-beta.1"
5
5
  end
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.2.0.pre.beta.3
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-15 00:00:00.000000000 Z
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.