Skip to content

Commit 078053d

Browse files
committed
Version bump
1 parent 4857a91 commit 078053d

7 files changed

+99
-86
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
### Unreleased
22

3+
### 2.4.1
4+
5+
* Include private methods when checking if respond_to?(:method). Fixes #475
6+
37
### 2.4.0
48

59
* Add `recipients` feature to let Notifiers determine their recipients

Gemfile.lock

+19-17
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
noticed (2.4.0)
4+
noticed (2.4.1)
55
rails (>= 6.1.0)
66

77
GEM
@@ -104,9 +104,10 @@ GEM
104104
date (3.3.4)
105105
drb (2.2.1)
106106
erubi (1.13.0)
107-
faraday (2.9.2)
107+
faraday (2.10.1)
108108
faraday-net_http (>= 2.0, < 3.2)
109-
faraday-net_http (3.1.0)
109+
logger
110+
faraday-net_http (3.1.1)
110111
net-http
111112
globalid (1.2.1)
112113
activesupport (>= 6.1)
@@ -125,14 +126,15 @@ GEM
125126
i18n (1.14.5)
126127
concurrent-ruby (~> 1.0)
127128
io-console (0.7.2)
128-
irb (1.13.2)
129+
irb (1.14.0)
129130
rdoc (>= 4.0.0)
130131
reline (>= 0.4.2)
131132
json (2.7.2)
132133
jwt (2.8.2)
133134
base64
134135
language_server-protocol (3.17.0.3)
135136
lint_roller (1.1.0)
137+
logger (1.6.0)
136138
loofah (2.22.0)
137139
crass (~> 1.0.2)
138140
nokogiri (>= 1.12.0)
@@ -143,7 +145,7 @@ GEM
143145
net-smtp
144146
marcel (1.0.4)
145147
mini_mime (1.1.5)
146-
minitest (5.24.0)
148+
minitest (5.24.1)
147149
multi_json (1.15.0)
148150
mutex_m (0.2.0)
149151
net-http (0.4.1)
@@ -160,23 +162,23 @@ GEM
160162
net-smtp (0.5.0)
161163
net-protocol
162164
nio4r (2.7.3)
163-
nokogiri (1.16.6-arm64-darwin)
165+
nokogiri (1.16.7-arm64-darwin)
164166
racc (~> 1.4)
165-
nokogiri (1.16.6-x86_64-darwin)
167+
nokogiri (1.16.7-x86_64-darwin)
166168
racc (~> 1.4)
167-
nokogiri (1.16.6-x86_64-linux)
169+
nokogiri (1.16.7-x86_64-linux)
168170
racc (~> 1.4)
169171
os (1.1.4)
170172
parallel (1.25.1)
171-
parser (3.3.3.0)
173+
parser (3.3.4.0)
172174
ast (~> 2.4.1)
173175
racc
174-
pg (1.5.6)
176+
pg (1.5.7)
175177
psych (5.1.2)
176178
stringio
177-
public_suffix (6.0.0)
178-
racc (1.8.0)
179-
rack (3.1.4)
179+
public_suffix (6.0.1)
180+
racc (1.8.1)
181+
rack (3.1.7)
180182
rack-session (2.0.0)
181183
rack (>= 3.0.0)
182184
rack-test (2.1.0)
@@ -220,7 +222,7 @@ GEM
220222
regexp_parser (2.9.2)
221223
reline (0.5.9)
222224
io-console (~> 0.5)
223-
rexml (3.3.1)
225+
rexml (3.3.2)
224226
strscan
225227
rubocop (1.64.1)
226228
json (~> 2.3)
@@ -247,7 +249,7 @@ GEM
247249
sqlite3 (1.7.3-arm64-darwin)
248250
sqlite3 (1.7.3-x86_64-darwin)
249251
sqlite3 (1.7.3-x86_64-linux)
250-
standard (1.39.0)
252+
standard (1.39.2)
251253
language_server-protocol (~> 3.17.0.2)
252254
lint_roller (~> 1.0)
253255
rubocop (~> 1.64.0)
@@ -275,7 +277,7 @@ GEM
275277
websocket-driver (0.7.6)
276278
websocket-extensions (>= 0.1.0)
277279
websocket-extensions (0.1.5)
278-
zeitwerk (2.6.16)
280+
zeitwerk (2.6.17)
279281

280282
PLATFORMS
281283
arm64-darwin-22
@@ -297,4 +299,4 @@ DEPENDENCIES
297299
webmock
298300

299301
BUNDLED WITH
300-
2.5.14
302+
2.5.16

gemfiles/rails_6_1.gemfile.lock

+17-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
noticed (2.4.0)
4+
noticed (2.4.1)
55
rails (>= 6.1.0)
66

77
GEM
@@ -91,9 +91,10 @@ GEM
9191
crass (1.0.6)
9292
date (3.3.4)
9393
erubi (1.13.0)
94-
faraday (2.9.2)
94+
faraday (2.10.1)
9595
faraday-net_http (>= 2.0, < 3.2)
96-
faraday-net_http (3.1.0)
96+
logger
97+
faraday-net_http (3.1.1)
9798
net-http
9899
globalid (1.2.1)
99100
activesupport (>= 6.1)
@@ -116,6 +117,7 @@ GEM
116117
base64
117118
language_server-protocol (3.17.0.3)
118119
lint_roller (1.1.0)
120+
logger (1.6.0)
119121
loofah (2.22.0)
120122
crass (~> 1.0.2)
121123
nokogiri (>= 1.12.0)
@@ -127,7 +129,7 @@ GEM
127129
marcel (1.0.4)
128130
method_source (1.1.0)
129131
mini_mime (1.1.5)
130-
minitest (5.24.0)
132+
minitest (5.24.1)
131133
multi_json (1.15.0)
132134
net-http (0.4.1)
133135
uri
@@ -143,20 +145,20 @@ GEM
143145
net-smtp (0.5.0)
144146
net-protocol
145147
nio4r (2.7.3)
146-
nokogiri (1.16.6-arm64-darwin)
148+
nokogiri (1.16.7-arm64-darwin)
147149
racc (~> 1.4)
148-
nokogiri (1.16.6-x86_64-darwin)
150+
nokogiri (1.16.7-x86_64-darwin)
149151
racc (~> 1.4)
150-
nokogiri (1.16.6-x86_64-linux)
152+
nokogiri (1.16.7-x86_64-linux)
151153
racc (~> 1.4)
152154
os (1.1.4)
153155
parallel (1.25.1)
154-
parser (3.3.3.0)
156+
parser (3.3.4.0)
155157
ast (~> 2.4.1)
156158
racc
157-
pg (1.5.6)
158-
public_suffix (6.0.0)
159-
racc (1.8.0)
159+
pg (1.5.7)
160+
public_suffix (6.0.1)
161+
racc (1.8.1)
160162
rack (2.2.9)
161163
rack-test (2.1.0)
162164
rack (>= 1.3)
@@ -191,7 +193,7 @@ GEM
191193
rainbow (3.1.1)
192194
rake (13.2.1)
193195
regexp_parser (2.9.2)
194-
rexml (3.3.1)
196+
rexml (3.3.2)
195197
strscan
196198
rubocop (1.64.1)
197199
json (~> 2.3)
@@ -225,7 +227,7 @@ GEM
225227
sqlite3 (1.7.3-arm64-darwin)
226228
sqlite3 (1.7.3-x86_64-darwin)
227229
sqlite3 (1.7.3-x86_64-linux)
228-
standard (1.39.0)
230+
standard (1.39.2)
229231
language_server-protocol (~> 3.17.0.2)
230232
lint_roller (~> 1.0)
231233
rubocop (~> 1.64.0)
@@ -252,7 +254,7 @@ GEM
252254
websocket-driver (0.7.6)
253255
websocket-extensions (>= 0.1.0)
254256
websocket-extensions (0.1.5)
255-
zeitwerk (2.6.16)
257+
zeitwerk (2.6.17)
256258

257259
PLATFORMS
258260
arm64-darwin-22
@@ -276,4 +278,4 @@ DEPENDENCIES
276278
webmock
277279

278280
BUNDLED WITH
279-
2.5.3
281+
2.5.16

gemfiles/rails_7.gemfile.lock

+17-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
noticed (2.4.0)
4+
noticed (2.4.1)
55
rails (>= 6.1.0)
66

77
GEM
@@ -97,9 +97,10 @@ GEM
9797
crass (1.0.6)
9898
date (3.3.4)
9999
erubi (1.13.0)
100-
faraday (2.9.2)
100+
faraday (2.10.1)
101101
faraday-net_http (>= 2.0, < 3.2)
102-
faraday-net_http (3.1.0)
102+
logger
103+
faraday-net_http (3.1.1)
103104
net-http
104105
globalid (1.2.1)
105106
activesupport (>= 6.1)
@@ -122,6 +123,7 @@ GEM
122123
base64
123124
language_server-protocol (3.17.0.3)
124125
lint_roller (1.1.0)
126+
logger (1.6.0)
125127
loofah (2.22.0)
126128
crass (~> 1.0.2)
127129
nokogiri (>= 1.12.0)
@@ -133,7 +135,7 @@ GEM
133135
marcel (1.0.4)
134136
method_source (1.1.0)
135137
mini_mime (1.1.5)
136-
minitest (5.24.0)
138+
minitest (5.24.1)
137139
multi_json (1.15.0)
138140
net-http (0.4.1)
139141
uri
@@ -149,20 +151,20 @@ GEM
149151
net-smtp (0.5.0)
150152
net-protocol
151153
nio4r (2.7.3)
152-
nokogiri (1.16.6-arm64-darwin)
154+
nokogiri (1.16.7-arm64-darwin)
153155
racc (~> 1.4)
154-
nokogiri (1.16.6-x86_64-darwin)
156+
nokogiri (1.16.7-x86_64-darwin)
155157
racc (~> 1.4)
156-
nokogiri (1.16.6-x86_64-linux)
158+
nokogiri (1.16.7-x86_64-linux)
157159
racc (~> 1.4)
158160
os (1.1.4)
159161
parallel (1.25.1)
160-
parser (3.3.3.0)
162+
parser (3.3.4.0)
161163
ast (~> 2.4.1)
162164
racc
163-
pg (1.5.6)
164-
public_suffix (6.0.0)
165-
racc (1.8.0)
165+
pg (1.5.7)
166+
public_suffix (6.0.1)
167+
racc (1.8.1)
166168
rack (2.2.9)
167169
rack-test (2.1.0)
168170
rack (>= 1.3)
@@ -197,7 +199,7 @@ GEM
197199
rainbow (3.1.1)
198200
rake (13.2.1)
199201
regexp_parser (2.9.2)
200-
rexml (3.3.1)
202+
rexml (3.3.2)
201203
strscan
202204
rubocop (1.64.1)
203205
json (~> 2.3)
@@ -224,7 +226,7 @@ GEM
224226
sqlite3 (1.7.3-arm64-darwin)
225227
sqlite3 (1.7.3-x86_64-darwin)
226228
sqlite3 (1.7.3-x86_64-linux)
227-
standard (1.39.0)
229+
standard (1.39.2)
228230
language_server-protocol (~> 3.17.0.2)
229231
lint_roller (~> 1.0)
230232
rubocop (~> 1.64.0)
@@ -251,7 +253,7 @@ GEM
251253
websocket-driver (0.7.6)
252254
websocket-extensions (>= 0.1.0)
253255
websocket-extensions (0.1.5)
254-
zeitwerk (2.6.16)
256+
zeitwerk (2.6.17)
255257

256258
PLATFORMS
257259
arm64-darwin-22
@@ -275,4 +277,4 @@ DEPENDENCIES
275277
webmock
276278

277279
BUNDLED WITH
278-
2.5.3
280+
2.5.16

0 commit comments

Comments
 (0)