stripe 15.2.0 → 15.2.1
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 +5 -0
- data/VERSION +1 -1
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.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: dfe13e884372df8d3e4ea17baf54acefc1e32bb9012cd1b6eaf3b41cd6b0bcb7
|
4
|
+
data.tar.gz: fe6b48ba0519a65e6889704f46994d1568294f1f4009929cd89d1234e860f167
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85b983b36836e34538300b262163412517f48565ad619e12261b6486cb186b5149c946c545eb9f206f4fec25fc240abebd19fce1a3c9b84ffdb46b20bf70d3bc
|
7
|
+
data.tar.gz: 7862fa3ddfe885f8d6bd0050e329199cd51a92a6dbce2512b86ccfbbf06749f398dc3c345d2a0d54d0be35a562d87b42563ec3dee15a94c77e88550a9b994a1a
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
1
|
# Changelog
|
2
|
+
## 15.2.1 - 2025-06-04
|
3
|
+
* [#1617](https://github.com/stripe/stripe-ruby/pull/1617) Fix `nil` requestor in `Webhook.construct_event` to allow for event data refresh
|
4
|
+
* Fix bug where `Event` constructed from `Webhook.construct_event` could not be refreshed due to a `nil` APIRequestor
|
5
|
+
* Raised in https://github.com/stripe/stripe-ruby/issues/1616
|
6
|
+
|
2
7
|
## 15.2.0 - 2025-05-29
|
3
8
|
This release changes the pinned API version to `2025-05-28.basil`.
|
4
9
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
15.2.
|
1
|
+
15.2.1
|
data/lib/stripe/version.rb
CHANGED
data/lib/stripe/webhook.rb
CHANGED
@@ -18,7 +18,7 @@ module Stripe
|
|
18
18
|
# doesn't GC symbols. It also decreases the likelihood that we receive a
|
19
19
|
# bad payload that fails to parse and throws an exception.
|
20
20
|
data = JSON.parse(payload, symbolize_names: true)
|
21
|
-
Event.construct_from(data, {}, nil, :v1)
|
21
|
+
Event.construct_from(data, {}, nil, :v1, APIRequestor.active_requestor)
|
22
22
|
end
|
23
23
|
|
24
24
|
module Signature
|
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: 15.2.
|
4
|
+
version: 15.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-06-04 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.
|