stripe 13.1.0 → 13.1.2
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 +4 -4
- data/CHANGELOG.md +9 -1
- data/VERSION +1 -1
- data/lib/stripe/request_options.rb +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: 8209f6cb6e20053417cb941ca8a915e0f6798a62e6d6a18014f71ecedf7c3123
|
|
4
|
+
data.tar.gz: eb91402c16bb912016fdd3729f2a59a77cc568d1b8e4d00850b4e47902d4539f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf7ead73040db6d8c8926606969765dca5ac1152c6f0fb26822b744cb166cfc0f72010092ce145765ac6e932825a59485e045ace9507c16a28af93f7c75e9ef8
|
|
7
|
+
data.tar.gz: 0d6d650211a60020516d1d17b07f984ea880bc5d28d32feaed332973e8f1aaaf2f468e9842fd333433781e57c2c91d3c759ae63ccc68845a6e4e37643b34070d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
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
|
+
|
|
6
|
+
## 13.1.1 - 2024-11-06
|
|
7
|
+
* [#1483](https://github.com/stripe/stripe-ruby/pull/1483) Fix APIResource#retrieve not sending `stripe_version`
|
|
8
|
+
* [#1478](https://github.com/stripe/stripe-ruby/pull/1478) Update changelog with a note on 2024-10-28.acacia API version
|
|
9
|
+
|
|
2
10
|
## 13.1.0 - 2024-10-29
|
|
3
|
-
* [#1472](https://github.com/stripe/stripe-ruby/pull/1472)
|
|
11
|
+
* [#1472](https://github.com/stripe/stripe-ruby/pull/1472) This release changes the pinned API version to `2024-10-28.acacia`.
|
|
4
12
|
* Add support for `submit_card` test helper method on resource `Issuing.Card`
|
|
5
13
|
* Add support for new resource `V2.EventDestinations`
|
|
6
14
|
* Add support for `create`, `retrieve`, `update`, `list`, `delete`, `disable`, `enable` and `ping` methods on resource `V2.EventDestinations`
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
13.1.
|
|
1
|
+
13.1.2
|
|
@@ -63,7 +63,7 @@ module Stripe
|
|
|
63
63
|
idempotency_key: req_opts[:idempotency_key],
|
|
64
64
|
stripe_account: req_opts[:stripe_account] || object_opts[:stripe_account],
|
|
65
65
|
stripe_context: req_opts[:stripe_context] || object_opts[:stripe_context],
|
|
66
|
-
stripe_version: req_opts[:stripe_version] || object_opts[:
|
|
66
|
+
stripe_version: req_opts[:stripe_version] || object_opts[:stripe_version],
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
# Remove nil values from headers
|
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.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
|
+
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.
|