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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 871a7ecc05861f249cad11b51617a359773b71518889865ae929c8a2a617b87b
4
- data.tar.gz: b65099e942510572f3d501c154fc6f6951d063aab6990ec3d994143f80f87b7f
3
+ metadata.gz: dfe13e884372df8d3e4ea17baf54acefc1e32bb9012cd1b6eaf3b41cd6b0bcb7
4
+ data.tar.gz: fe6b48ba0519a65e6889704f46994d1568294f1f4009929cd89d1234e860f167
5
5
  SHA512:
6
- metadata.gz: 865d99bee2b7d73007ae98f7a04e766a9882caf71a5f14c465cdb7053c1c4a43576a4493bf50da8d05459fd232fbfbbb959f3bec932b9ee59e63450cda0637d5
7
- data.tar.gz: 6d1505c08160d5ee8877082e8b2f3ef348370d1802863a01e864978b68f18f8203bf0a0444e13845ee01ca2cb0eee5cc811836a99c6f545efd7b95478517a883
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.0
1
+ 15.2.1
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "15.2.0"
4
+ VERSION = "15.2.1"
5
5
  end
@@ -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.0
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-05-28 00:00:00.000000000 Z
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.