stripe_event 2.13.0 → 2.15.0

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: 9be057f8832e48c45bec55dbd1f43f57ceb4131c2e81dd6128eea9d6f6bf095c
4
- data.tar.gz: 3e05c32ef28f0b109817c77a5d32183872822e51d162921b121b92b9f2372685
3
+ metadata.gz: adb5bd3e3d489509a052e173321343e198baee9e0bae59b5e3acdefeb97a81db
4
+ data.tar.gz: 53be77cc569f7025df032c0fb27361195157c57f90ee624524bc52e1911d4d5b
5
5
  SHA512:
6
- metadata.gz: 2adee63afa040fb4dc9a1ca590479ce1e16d0bb0c91793836ff3d871ea0b13e4f6de30e9390f5f57ecdcdc0a9593b5aacb48e3d630da7e08d3ce47d3737f96b4
7
- data.tar.gz: 6b6fc53d76afb509f43c5935c30dae481b7b219718d7b444f6fbe21aeefe3243b1e290e6bc50bb2f5ce0e318935fbd9df0fa52a8ff7d85fa1618f335d99dd3b9
6
+ metadata.gz: '089fbca4660837a022b1f47d7232ef22699ddd1b771713010f88de6b0dd269b74f3164aae9c2b3baef1e32c66420e2d8d787193a36e795e5a81d37a5214d660a'
7
+ data.tar.gz: a901fca280621e9726f3e773fd4ee46a8eca17642899f77bcb94493ebaec910b84105fb0a16a606246432bbec1aa7069558c3dfda53fb7212b1519942ffa3b18
@@ -10,7 +10,7 @@ jobs:
10
10
  runs-on: ubuntu-latest
11
11
  strategy:
12
12
  matrix:
13
- ruby: ["3.2", "3.3", "3.4"]
13
+ ruby: ["3.2", "3.3", "3.4", "4.0"]
14
14
  bundler: [default]
15
15
  gemfile:
16
16
  - rails7.1
@@ -30,6 +30,8 @@ jobs:
30
30
  - stripe15
31
31
  - stripe16
32
32
  - stripe17
33
+ - stripe18
34
+ - stripe19
33
35
  include:
34
36
  - { ruby: "2.3", gemfile: "rails3.2", bundler: "1" }
35
37
  - { ruby: "2.5", gemfile: "rails5.1", bundler: "default" }
@@ -51,7 +53,7 @@ jobs:
51
53
  BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
52
54
  steps:
53
55
  # https://github.com/marketplace/actions/checkout
54
- - uses: actions/checkout@v4
56
+ - uses: actions/checkout@v6
55
57
  # https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
56
58
  - name: Set up Ruby
57
59
  uses: ruby/setup-ruby@v1
data/Appraisals CHANGED
@@ -103,6 +103,14 @@ appraise "stripe17" do
103
103
  gem "stripe", "~> 17.0"
104
104
  end
105
105
 
106
+ appraise "stripe18" do
107
+ gem "stripe", "~> 18.0"
108
+ end
109
+
110
+ appraise "stripe19" do
111
+ gem "stripe", "~> 19.0"
112
+ end
113
+
106
114
  appraise "rails_master" do
107
115
  gem "rails", github: "rails"
108
116
  end
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ### [Unreleased] - TBD
2
2
 
3
+ ### 2.15.0 (May 20, 2026)
4
+
5
+ - Add Stripe 19 support
6
+ - Add Ruby 4.0 to build matrix (#176)
7
+
8
+ ### 2.14.0 (Dec 9, 2025)
9
+
10
+ - Add Stripe 18 support
3
11
 
4
12
  ### 2.13.0 (Oct 24, 2025)
5
13
 
data/README.md CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  [![Build Status](https://github.com/integrallis/stripe_event/workflows/CI/badge.svg)](https://github.com/integrallis/stripe_event/actions?query=workflow%3ACI)
4
4
  [![Gem Version](https://badge.fury.io/rb/stripe_event.svg)](http://badge.fury.io/rb/stripe_event)
5
- [![Code Climate](https://codeclimate.com/github/integrallis/stripe_event.svg)](https://codeclimate.com/github/integrallis/stripe_event)
6
5
  [![Gem Downloads](https://img.shields.io/gem/dt/stripe_event.svg)](https://rubygems.org/gems/stripe_event)
7
6
 
8
7
  StripeEvent is built on the [ActiveSupport::Notifications API](http://api.rubyonrails.org/classes/ActiveSupport/Notifications.html). Incoming webhook requests are [authenticated with the webhook signature](#authenticating-webhooks-with-signatures). Define subscribers to handle specific event types. Subscribers can be a block or an object that responds to `#call`.
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "stripe", "~> 18.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "stripe", "~> 19.0"
6
+
7
+ gemspec path: "../"
@@ -1,3 +1,3 @@
1
1
  module StripeEvent
2
- VERSION = "2.13.0"
2
+ VERSION = "2.15.0"
3
3
  end
data/stripe_event.gemspec CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
18
18
  s.test_files = `git ls-files -- Appraisals {spec,gemfiles}/*`.split("\n")
19
19
 
20
20
  s.add_dependency "activesupport", ">= 3.1"
21
- s.add_dependency "stripe", [">= 2.8", "< 18"]
21
+ s.add_dependency "stripe", [">= 2.8", "< 20"]
22
22
 
23
23
  s.add_development_dependency "appraisal"
24
24
  s.add_development_dependency "rails", [">= 3.1"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stripe_event
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.13.0
4
+ version: 2.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danny Whalen
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '2.8'
33
33
  - - "<"
34
34
  - !ruby/object:Gem::Version
35
- version: '18'
35
+ version: '20'
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
@@ -42,7 +42,7 @@ dependencies:
42
42
  version: '2.8'
43
43
  - - "<"
44
44
  - !ruby/object:Gem::Version
45
- version: '18'
45
+ version: '20'
46
46
  - !ruby/object:Gem::Dependency
47
47
  name: appraisal
48
48
  requirement: !ruby/object:Gem::Requirement
@@ -151,6 +151,8 @@ files:
151
151
  - gemfiles/stripe15.gemfile
152
152
  - gemfiles/stripe16.gemfile
153
153
  - gemfiles/stripe17.gemfile
154
+ - gemfiles/stripe18.gemfile
155
+ - gemfiles/stripe19.gemfile
154
156
  - gemfiles/stripe3.gemfile
155
157
  - gemfiles/stripe4.gemfile
156
158
  - gemfiles/stripe5.gemfile
@@ -217,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
217
219
  - !ruby/object:Gem::Version
218
220
  version: '0'
219
221
  requirements: []
220
- rubygems_version: 3.7.1
222
+ rubygems_version: 4.0.9
221
223
  specification_version: 4
222
224
  summary: Stripe webhook integration for Rails applications.
223
225
  test_files:
@@ -242,6 +244,8 @@ test_files:
242
244
  - gemfiles/stripe15.gemfile
243
245
  - gemfiles/stripe16.gemfile
244
246
  - gemfiles/stripe17.gemfile
247
+ - gemfiles/stripe18.gemfile
248
+ - gemfiles/stripe19.gemfile
245
249
  - gemfiles/stripe3.gemfile
246
250
  - gemfiles/stripe4.gemfile
247
251
  - gemfiles/stripe5.gemfile