Skip to content

Commit be1074a

Browse files
committed
Version bump
1 parent c06a4e7 commit be1074a

10 files changed

+176
-164
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
### Unreleased
44

5+
### 8.3.0
6+
7+
* Ignore Stripe `payment_failed` and `payment_action_required` webhooks on `incomplete` subscriptions as these are already handled by the JavaScript in-browser. #1121
8+
* Add `FakeProcessor::Subscription#sync` #1120
9+
510
### 8.2.2
611

712
* Compatibility with frozen string literals

Diff for: Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
pay (8.2.2)
4+
pay (8.3.0)
55
rails (>= 6.0.0)
66

77
GEM

Diff for: README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
# 💳 Pay - Payments engine for Ruby on Rails
44

5-
[![Build Status](https://github.com/pay-rails/pay/workflows/Tests/badge.svg)](https://github.com/pay-rails/pay/actions) [![Gem Version](https://badge.fury.io/rb/pay.svg)](https://badge.fury.io/rb/pay)
6-
7-
<img src="docs/images/stripe_partner_badge.svg" height="26px">
5+
[![Build Status](https://github.com/pay-rails/pay/workflows/Tests/badge.svg)](https://github.com/pay-rails/pay/actions) [![Gem Version](https://badge.fury.io/rb/pay.svg)](https://badge.fury.io/rb/pay) <img src="docs/images/stripe_partner_badge.svg" height="26px">
86

97
Pay is a payments engine for Ruby on Rails 6.0 and higher.
108

11-
⚠️ **Upgrading?** Check the [UPGRADE](UPGRADE.md) guide for required changes and/or migration when upgrading from a previous version of Pay.
9+
> [!TIP]
10+
> Check out [Jumpstart](https://jumpstartrails.com) for Rails Starter Kit with Pay already integrated!
11+
12+
**Upgrading?** Check the [UPGRADE](UPGRADE.md) guide for required changes and/or migration when upgrading from a previous version of Pay.
1213

1314
## 🧑‍💻 Tutorial
1415

Diff for: gemfiles/rails_6.1.gemfile.lock

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
pay (8.2.2)
4+
pay (8.3.0)
55
rails (>= 6.0.0)
66

77
GEM
@@ -86,12 +86,13 @@ GEM
8686
rexml
8787
crass (1.0.6)
8888
date (3.4.1)
89-
erubi (1.13.0)
90-
faraday (2.11.0)
91-
faraday-net_http (>= 2.0, < 3.4)
89+
erubi (1.13.1)
90+
faraday (2.12.2)
91+
faraday-net_http (>= 2.0, < 3.5)
92+
json
9293
logger
93-
faraday-net_http (3.3.0)
94-
net-http
94+
faraday-net_http (3.4.0)
95+
net-http (>= 0.5.0)
9596
globalid (1.2.1)
9697
activesupport (>= 6.1)
9798
hashdiff (1.1.2)
@@ -101,12 +102,12 @@ GEM
101102
actionpack (>= 6.0.0)
102103
activesupport (>= 6.0.0)
103104
railties (>= 6.0.0)
104-
json (2.9.0)
105+
json (2.9.1)
105106
language_server-protocol (3.17.0.3)
106107
lemonsqueezy (1.0.1)
107108
faraday (~> 2.0)
108109
lint_roller (1.1.0)
109-
logger (1.6.3)
110+
logger (1.6.4)
110111
loofah (2.23.1)
111112
crass (~> 1.0.2)
112113
nokogiri (>= 1.12.0)
@@ -126,7 +127,7 @@ GEM
126127
mysql2 (0.5.6)
127128
net-http (0.6.0)
128129
uri
129-
net-imap (0.5.1)
130+
net-imap (0.5.3)
130131
date
131132
net-protocol
132133
net-pop (0.1.2)
@@ -139,8 +140,8 @@ GEM
139140
mini_portile2 (~> 2.8.2)
140141
racc (~> 1.4)
141142
ostruct (0.6.1)
142-
paddle (2.7.0)
143-
faraday (~> 2.11.0)
143+
paddle (2.7.1)
144+
faraday (~> 2.11)
144145
ostruct (~> 0.6.0)
145146
parallel (1.26.3)
146147
parser (3.3.6.0)
@@ -195,7 +196,7 @@ GEM
195196
prawn (>= 1.3.0, < 3.0.0)
196197
prawn-table (~> 0.2.1)
197198
regexp_parser (2.9.3)
198-
rexml (3.3.9)
199+
rexml (3.4.0)
199200
rubocop (1.69.2)
200201
json (~> 2.3)
201202
language_server-protocol (>= 3.17.0)
@@ -236,9 +237,9 @@ GEM
236237
rubocop-performance (~> 1.23.0)
237238
stimulus-rails (1.3.4)
238239
railties (>= 6.0.0)
239-
stripe (13.2.0)
240+
stripe (13.3.0)
240241
thor (1.3.2)
241-
timeout (0.4.2)
242+
timeout (0.4.3)
242243
ttfunk (1.8.0)
243244
bigdecimal (~> 3.1)
244245
turbo-rails (2.0.11)

Diff for: gemfiles/rails_7.0.gemfile.lock

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
pay (8.2.2)
4+
pay (8.3.0)
55
rails (>= 6.0.0)
66

77
GEM
@@ -92,12 +92,13 @@ GEM
9292
rexml
9393
crass (1.0.6)
9494
date (3.4.1)
95-
erubi (1.13.0)
96-
faraday (2.11.0)
97-
faraday-net_http (>= 2.0, < 3.4)
95+
erubi (1.13.1)
96+
faraday (2.12.2)
97+
faraday-net_http (>= 2.0, < 3.5)
98+
json
9899
logger
99-
faraday-net_http (3.3.0)
100-
net-http
100+
faraday-net_http (3.4.0)
101+
net-http (>= 0.5.0)
101102
globalid (1.2.1)
102103
activesupport (>= 6.1)
103104
hashdiff (1.1.2)
@@ -107,12 +108,12 @@ GEM
107108
actionpack (>= 6.0.0)
108109
activesupport (>= 6.0.0)
109110
railties (>= 6.0.0)
110-
json (2.9.0)
111+
json (2.9.1)
111112
language_server-protocol (3.17.0.3)
112113
lemonsqueezy (1.0.1)
113114
faraday (~> 2.0)
114115
lint_roller (1.1.0)
115-
logger (1.6.3)
116+
logger (1.6.4)
116117
loofah (2.23.1)
117118
crass (~> 1.0.2)
118119
nokogiri (>= 1.12.0)
@@ -132,7 +133,7 @@ GEM
132133
mysql2 (0.5.6)
133134
net-http (0.6.0)
134135
uri
135-
net-imap (0.5.1)
136+
net-imap (0.5.3)
136137
date
137138
net-protocol
138139
net-pop (0.1.2)
@@ -145,8 +146,8 @@ GEM
145146
mini_portile2 (~> 2.8.2)
146147
racc (~> 1.4)
147148
ostruct (0.6.1)
148-
paddle (2.7.0)
149-
faraday (~> 2.11.0)
149+
paddle (2.7.1)
150+
faraday (~> 2.11)
150151
ostruct (~> 0.6.0)
151152
parallel (1.26.3)
152153
parser (3.3.6.0)
@@ -201,7 +202,7 @@ GEM
201202
prawn (>= 1.3.0, < 3.0.0)
202203
prawn-table (~> 0.2.1)
203204
regexp_parser (2.9.3)
204-
rexml (3.3.9)
205+
rexml (3.4.0)
205206
rubocop (1.69.2)
206207
json (~> 2.3)
207208
language_server-protocol (>= 3.17.0)
@@ -242,9 +243,9 @@ GEM
242243
rubocop-performance (~> 1.23.0)
243244
stimulus-rails (1.3.4)
244245
railties (>= 6.0.0)
245-
stripe (13.2.0)
246+
stripe (13.3.0)
246247
thor (1.3.2)
247-
timeout (0.4.2)
248+
timeout (0.4.3)
248249
ttfunk (1.8.0)
249250
bigdecimal (~> 3.1)
250251
turbo-rails (2.0.11)

Diff for: gemfiles/rails_7.1.gemfile.lock

+20-19
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
pay (8.2.2)
4+
pay (8.3.0)
55
rails (>= 6.0.0)
66

77
GEM
@@ -107,12 +107,13 @@ GEM
107107
crass (1.0.6)
108108
date (3.4.1)
109109
drb (2.2.1)
110-
erubi (1.13.0)
111-
faraday (2.11.0)
112-
faraday-net_http (>= 2.0, < 3.4)
110+
erubi (1.13.1)
111+
faraday (2.12.2)
112+
faraday-net_http (>= 2.0, < 3.5)
113+
json
113114
logger
114-
faraday-net_http (3.3.0)
115-
net-http
115+
faraday-net_http (3.4.0)
116+
net-http (>= 0.5.0)
116117
globalid (1.2.1)
117118
activesupport (>= 6.1)
118119
hashdiff (1.1.2)
@@ -123,15 +124,15 @@ GEM
123124
activesupport (>= 6.0.0)
124125
railties (>= 6.0.0)
125126
io-console (0.8.0)
126-
irb (1.14.2)
127+
irb (1.14.3)
127128
rdoc (>= 4.0.0)
128129
reline (>= 0.4.2)
129-
json (2.9.0)
130+
json (2.9.1)
130131
language_server-protocol (3.17.0.3)
131132
lemonsqueezy (1.0.1)
132133
faraday (~> 2.0)
133134
lint_roller (1.1.0)
134-
logger (1.6.3)
135+
logger (1.6.4)
135136
loofah (2.23.1)
136137
crass (~> 1.0.2)
137138
nokogiri (>= 1.12.0)
@@ -151,7 +152,7 @@ GEM
151152
mysql2 (0.5.6)
152153
net-http (0.6.0)
153154
uri
154-
net-imap (0.5.1)
155+
net-imap (0.5.3)
155156
date
156157
net-protocol
157158
net-pop (0.1.2)
@@ -164,8 +165,8 @@ GEM
164165
mini_portile2 (~> 2.8.2)
165166
racc (~> 1.4)
166167
ostruct (0.6.1)
167-
paddle (2.7.0)
168-
faraday (~> 2.11.0)
168+
paddle (2.7.1)
169+
faraday (~> 2.11)
169170
ostruct (~> 0.6.0)
170171
parallel (1.26.3)
171172
parser (3.3.6.0)
@@ -179,7 +180,7 @@ GEM
179180
ttfunk (~> 1.8)
180181
prawn-table (0.2.2)
181182
prawn (>= 1.3.0, < 3.0.0)
182-
psych (5.2.1)
183+
psych (5.2.2)
183184
date
184185
stringio
185186
public_suffix (6.0.1)
@@ -224,15 +225,15 @@ GEM
224225
zeitwerk (~> 2.6)
225226
rainbow (3.1.1)
226227
rake (13.2.1)
227-
rdoc (6.8.1)
228+
rdoc (6.10.0)
228229
psych (>= 4.0.0)
229230
receipts (2.4.0)
230231
prawn (>= 1.3.0, < 3.0.0)
231232
prawn-table (~> 0.2.1)
232233
regexp_parser (2.9.3)
233-
reline (0.5.12)
234+
reline (0.6.0)
234235
io-console (~> 0.5)
235-
rexml (3.3.9)
236+
rexml (3.4.0)
236237
rubocop (1.69.2)
237238
json (~> 2.3)
238239
language_server-protocol (>= 3.17.0)
@@ -250,7 +251,7 @@ GEM
250251
rubocop-ast (>= 1.31.1, < 2.0)
251252
ruby-progressbar (1.13.0)
252253
ruby2_keywords (0.0.5)
253-
securerandom (0.4.0)
254+
securerandom (0.4.1)
254255
sprockets (4.2.1)
255256
concurrent-ruby (~> 1.0)
256257
rack (>= 2.2.4, < 4)
@@ -275,9 +276,9 @@ GEM
275276
stimulus-rails (1.3.4)
276277
railties (>= 6.0.0)
277278
stringio (3.1.2)
278-
stripe (13.2.0)
279+
stripe (13.3.0)
279280
thor (1.3.2)
280-
timeout (0.4.2)
281+
timeout (0.4.3)
281282
ttfunk (1.8.0)
282283
bigdecimal (~> 3.1)
283284
turbo-rails (2.0.11)

0 commit comments

Comments
 (0)