stripe 13.1.1 → 13.1.2

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: 18590a3cf248d82c1f328d6fe85b5e16e438d4f006b1423807c09e42c81e7703
4
- data.tar.gz: 60b45ddfd17c52ded6782fb21b33c8b27868046f0ed9ab27715823fce9455b0e
3
+ metadata.gz: 8209f6cb6e20053417cb941ca8a915e0f6798a62e6d6a18014f71ecedf7c3123
4
+ data.tar.gz: eb91402c16bb912016fdd3729f2a59a77cc568d1b8e4d00850b4e47902d4539f
5
5
  SHA512:
6
- metadata.gz: 4598581f028a590ef33360b99d6151187ccd67c54309ac6b50beb96272113a9612219faa8f099bc08cc362401d4db71bde99df65fa04c8d9acbcedd68cafe430
7
- data.tar.gz: 04b2c2fba9f25168b335b9e204b18dfc6cb84d464575bcbed94c36a759e391279be0b56f8116d4dbf8b92ae6e4c9d6baf9f048e7c104f4bb6a8c20ca5583f23a
6
+ metadata.gz: cf7ead73040db6d8c8926606969765dca5ac1152c6f0fb26822b744cb166cfc0f72010092ce145765ac6e932825a59485e045ace9507c16a28af93f7c75e9ef8
7
+ data.tar.gz: 0d6d650211a60020516d1d17b07f984ea880bc5d28d32feaed332973e8f1aaaf2f468e9842fd333433781e57c2c91d3c759ae63ccc68845a6e4e37643b34070d
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
1
  # Changelog
2
+ ## 13.1.2 - 2024-11-15
3
+ * [#1488](https://github.com/stripe/stripe-ruby/pull/1488) Fix incorrect key in param encoding
4
+ * [#1487](https://github.com/stripe/stripe-ruby/pull/1487) Update VSCode default extensions to use solargraph instead of ruby lsp
5
+
2
6
  ## 13.1.1 - 2024-11-06
3
7
  * [#1483](https://github.com/stripe/stripe-ruby/pull/1483) Fix APIResource#retrieve not sending `stripe_version`
4
8
  * [#1478](https://github.com/stripe/stripe-ruby/pull/1478) Update changelog with a note on 2024-10-28.acacia API version
data/VERSION CHANGED
@@ -1 +1 @@
1
- 13.1.1
1
+ 13.1.2
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.1.1"
4
+ VERSION = "13.1.2"
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.1.1
4
+ version: 13.1.2
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-06 00:00:00.000000000 Z
11
+ date: 2024-11-15 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.