activesupport 8.0.3 → 8.1.0.beta1
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 +237 -175
- data/lib/active_support/backtrace_cleaner.rb +71 -0
- data/lib/active_support/cache/mem_cache_store.rb +13 -13
- data/lib/active_support/cache/redis_cache_store.rb +36 -30
- data/lib/active_support/cache/strategy/local_cache.rb +16 -7
- data/lib/active_support/cache/strategy/local_cache_middleware.rb +7 -7
- data/lib/active_support/cache.rb +69 -6
- data/lib/active_support/configurable.rb +28 -0
- data/lib/active_support/continuous_integration.rb +145 -0
- data/lib/active_support/core_ext/benchmark.rb +0 -1
- data/lib/active_support/core_ext/date_and_time/compatibility.rb +1 -1
- data/lib/active_support/core_ext/erb/util.rb +3 -3
- data/lib/active_support/core_ext/object/json.rb +8 -1
- data/lib/active_support/core_ext/object/to_query.rb +5 -0
- data/lib/active_support/core_ext/range.rb +0 -1
- data/lib/active_support/core_ext/string/multibyte.rb +10 -1
- data/lib/active_support/core_ext/string/output_safety.rb +19 -12
- data/lib/active_support/current_attributes/test_helper.rb +2 -2
- data/lib/active_support/current_attributes.rb +13 -10
- data/lib/active_support/deprecation/reporting.rb +4 -2
- data/lib/active_support/deprecation.rb +1 -1
- data/lib/active_support/editor.rb +70 -0
- data/lib/active_support/error_reporter.rb +50 -6
- data/lib/active_support/event_reporter/test_helper.rb +32 -0
- data/lib/active_support/event_reporter.rb +570 -0
- data/lib/active_support/evented_file_update_checker.rb +5 -1
- data/lib/active_support/execution_context.rb +64 -7
- data/lib/active_support/file_update_checker.rb +8 -6
- data/lib/active_support/gem_version.rb +3 -3
- data/lib/active_support/gzip.rb +1 -0
- data/lib/active_support/hash_with_indifferent_access.rb +27 -7
- data/lib/active_support/i18n_railtie.rb +1 -2
- data/lib/active_support/inflector/inflections.rb +31 -15
- data/lib/active_support/inflector/transliterate.rb +6 -8
- data/lib/active_support/isolated_execution_state.rb +7 -13
- data/lib/active_support/json/decoding.rb +2 -2
- data/lib/active_support/json/encoding.rb +103 -14
- data/lib/active_support/log_subscriber.rb +2 -0
- data/lib/active_support/message_encryptors.rb +52 -0
- data/lib/active_support/message_pack/extensions.rb +5 -0
- data/lib/active_support/message_verifiers.rb +52 -0
- data/lib/active_support/messages/rotation_coordinator.rb +9 -0
- data/lib/active_support/messages/rotator.rb +5 -0
- data/lib/active_support/multibyte/chars.rb +8 -1
- data/lib/active_support/multibyte.rb +4 -0
- data/lib/active_support/railtie.rb +26 -12
- data/lib/active_support/syntax_error_proxy.rb +3 -0
- data/lib/active_support/test_case.rb +61 -6
- data/lib/active_support/testing/assertions.rb +34 -6
- data/lib/active_support/testing/error_reporter_assertions.rb +18 -1
- data/lib/active_support/testing/event_reporter_assertions.rb +217 -0
- data/lib/active_support/testing/notification_assertions.rb +92 -0
- data/lib/active_support/testing/parallelization/worker.rb +2 -0
- data/lib/active_support/testing/parallelization.rb +13 -0
- data/lib/active_support/testing/tests_without_assertions.rb +1 -1
- data/lib/active_support/testing/time_helpers.rb +7 -3
- data/lib/active_support/time_with_zone.rb +19 -5
- data/lib/active_support/values/time_zone.rb +8 -1
- data/lib/active_support/xml_mini.rb +1 -2
- data/lib/active_support.rb +11 -0
- metadata +10 -5
- data/lib/active_support/core_ext/range/each.rb +0 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 961314ec0e1413ca082492acda67d57e19e5011d13725707c3b3d83cb3e88b6c
|
4
|
+
data.tar.gz: '0918a0dcb857f0621acf8c0034cc568efceddbaf92991da1d73ea1a3ae892f40'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d167935a467f95a7dd138a7498328e7f8bb5970ad79e33ea43267fe79d6a40f5515abc768f9aa995d15e8678638e34a4b1ce925797a216bc7b5b26ab8ea97be7
|
7
|
+
data.tar.gz: 01edbccd59380207d979f9a504619a862c475217eecd9c8972af5868e4f870e405a511babb6925a7723038c7da395a94ecbaf1a3e3e8fb1f4f07dd7300d0321a
|
data/CHANGELOG.md
CHANGED
@@ -1,309 +1,371 @@
|
|
1
|
-
## Rails 8.0.
|
1
|
+
## Rails 8.1.0.beta1 (September 04, 2025) ##
|
2
2
|
|
3
|
-
* `ActiveSupport::
|
3
|
+
* Add `ActiveSupport::Cache::Store#namespace=` and `#namespace`.
|
4
4
|
|
5
|
-
|
5
|
+
Can be used as an alternative to `Store#clear` in some situations such as parallel
|
6
|
+
testing.
|
6
7
|
|
7
|
-
*
|
8
|
-
|
9
|
-
*Jared Armstrong*
|
10
|
-
|
11
|
-
* Make `ActiveSupport::Logger` `#freeze`-friendly.
|
12
|
-
|
13
|
-
*Joshua Young*
|
8
|
+
*Nick Schwaderer*
|
14
9
|
|
15
|
-
*
|
10
|
+
* Create `parallel_worker_id` helper for running parallel tests. This allows users to
|
11
|
+
know which worker they are currently running in.
|
16
12
|
|
17
|
-
*
|
13
|
+
*Nick Schwaderer*
|
18
14
|
|
19
|
-
*
|
15
|
+
* Make the cache of `ActiveSupport::Cache::Strategy::LocalCache::Middleware` updatable.
|
20
16
|
|
21
|
-
If the
|
22
|
-
|
17
|
+
If the cache client at `Rails.cache` of a booted application changes, the corresponding
|
18
|
+
mounted middleware needs to update in order for request-local caches to be setup properly.
|
19
|
+
Otherwise, redundant cache operations will erroneously hit the datastore.
|
23
20
|
|
24
|
-
|
21
|
+
*Gannon McGibbon*
|
25
22
|
|
26
|
-
|
27
|
-
>> {a: 1, b: 2}.with_indifferent_access.transform_keys!(&:succ)
|
28
|
-
=> {"c" => 1}
|
29
|
-
```
|
23
|
+
* Add `assert_events_reported` test helper for `ActiveSupport::EventReporter`.
|
30
24
|
|
31
|
-
|
25
|
+
This new assertion allows testing multiple events in a single block, regardless of order:
|
32
26
|
|
33
27
|
```ruby
|
34
|
-
|
35
|
-
|
28
|
+
assert_events_reported([
|
29
|
+
{ name: "user.created", payload: { id: 123 } },
|
30
|
+
{ name: "email.sent", payload: { to: "user@example.com" } }
|
31
|
+
]) do
|
32
|
+
create_user_and_send_welcome_email
|
33
|
+
end
|
36
34
|
```
|
37
35
|
|
38
|
-
*
|
39
|
-
|
40
|
-
* Fix `ActiveSupport::Cache::MemCacheStore#read_multi` to handle network errors.
|
41
|
-
|
42
|
-
This method specifically wasn't handling network errors like other codepaths.
|
36
|
+
*George Ma*
|
43
37
|
|
44
|
-
|
38
|
+
* Add `ActiveSupport::TimeZone#standard_name` method.
|
45
39
|
|
46
|
-
|
47
|
-
|
48
|
-
|
40
|
+
``` ruby
|
41
|
+
zone = ActiveSupport::TimeZone['Hawaii']
|
42
|
+
# Old way
|
43
|
+
ActiveSupport::TimeZone::MAPPING[zone.name]
|
44
|
+
# New way
|
45
|
+
zone.standard_name # => 'Pacific/Honolulu'
|
46
|
+
```
|
49
47
|
|
50
|
-
*
|
48
|
+
*Bogdan Gusiev*
|
51
49
|
|
52
|
-
|
50
|
+
* Add Structured Event Reporter, accessible via `Rails.event`.
|
53
51
|
|
52
|
+
The Event Reporter provides a unified interface for producing structured events in Rails
|
53
|
+
applications:
|
54
54
|
|
55
|
-
|
55
|
+
```ruby
|
56
|
+
Rails.event.notify("user.signup", user_id: 123, email: "user@example.com")
|
57
|
+
```
|
56
58
|
|
57
|
-
|
59
|
+
It supports adding tags to events:
|
58
60
|
|
61
|
+
```ruby
|
62
|
+
Rails.event.tagged("graphql") do
|
63
|
+
# Event includes tags: { graphql: true }
|
64
|
+
Rails.event.notify("user.signup", user_id: 123, email: "user@example.com")
|
65
|
+
end
|
66
|
+
```
|
59
67
|
|
60
|
-
|
68
|
+
As well as context:
|
69
|
+
```ruby
|
70
|
+
# All events will contain context: {request_id: "abc123", shop_id: 456}
|
71
|
+
Rails.event.set_context(request_id: "abc123", shop_id: 456)
|
72
|
+
```
|
61
73
|
|
62
|
-
|
74
|
+
Events are emitted to subscribers. Applications register subscribers to
|
75
|
+
control how events are serialized and emitted. Subscribers must implement
|
76
|
+
an `#emit` method, which receives the event hash:
|
63
77
|
|
64
|
-
|
78
|
+
```ruby
|
79
|
+
class LogSubscriber
|
80
|
+
def emit(event)
|
81
|
+
payload = event[:payload].map { |key, value| "#{key}=#{value}" }.join(" ")
|
82
|
+
source_location = event[:source_location]
|
83
|
+
log = "[#{event[:name]}] #{payload} at #{source_location[:filepath]}:#{source_location[:lineno]}"
|
84
|
+
Rails.logger.info(log)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
```
|
65
88
|
|
66
|
-
*
|
89
|
+
*Adrianna Chang*
|
67
90
|
|
68
|
-
|
69
|
-
that have been recorded as such in the local store.
|
91
|
+
* Make `ActiveSupport::Logger` `#freeze`-friendly.
|
70
92
|
|
71
|
-
*
|
93
|
+
*Joshua Young*
|
72
94
|
|
73
|
-
*
|
95
|
+
* Make `ActiveSupport::Gzip.compress` deterministic based on input.
|
74
96
|
|
75
|
-
|
76
|
-
|
97
|
+
`ActiveSupport::Gzip.compress` used to include a timestamp in the output,
|
98
|
+
causing consecutive calls with the same input data to have different output
|
99
|
+
if called during different seconds. It now always sets the timestamp to `0`
|
100
|
+
so that the output is identical for any given input.
|
77
101
|
|
78
|
-
*
|
102
|
+
*Rob Brackett*
|
79
103
|
|
80
|
-
*
|
104
|
+
* Given an array of `Thread::Backtrace::Location` objects, the new method
|
105
|
+
`ActiveSupport::BacktraceCleaner#clean_locations` returns an array with the
|
106
|
+
clean ones:
|
81
107
|
|
82
|
-
|
108
|
+
```ruby
|
109
|
+
clean_locations = backtrace_cleaner.clean_locations(caller_locations)
|
110
|
+
```
|
83
111
|
|
84
|
-
|
112
|
+
Filters and silencers receive strings as usual. However, the `path`
|
113
|
+
attributes of the locations in the returned array are the original,
|
114
|
+
unfiltered ones, since locations are immutable.
|
85
115
|
|
86
|
-
*
|
116
|
+
*Xavier Noria*
|
87
117
|
|
88
|
-
|
118
|
+
* Improve `CurrentAttributes` and `ExecutionContext` state managment in test cases.
|
89
119
|
|
90
|
-
|
120
|
+
Previously these two global state would be entirely cleared out whenever calling
|
121
|
+
into code that is wrapped by the Rails executor, typically Action Controller or
|
122
|
+
Active Job helpers:
|
91
123
|
|
92
124
|
```ruby
|
93
|
-
|
125
|
+
test "#index works" do
|
126
|
+
CurrentUser.id = 42
|
127
|
+
get :index
|
128
|
+
CurrentUser.id == nil
|
129
|
+
end
|
94
130
|
```
|
95
131
|
|
96
|
-
Now
|
132
|
+
Now re-entering the executor properly save and restore that state.
|
97
133
|
|
98
134
|
*Jean Boussier*
|
99
135
|
|
100
|
-
*
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
*Jean Boussier*, *Florent Beaurain*, *Ali Sepehri*
|
106
|
-
|
107
|
-
* Fix `cache.fetch` to honor the provided expiry when `:race_condition_ttl` is used.
|
108
|
-
|
109
|
-
```ruby
|
110
|
-
cache.fetch("key", expires_in: 1.hour, race_condition_ttl: 5.second) do
|
111
|
-
"something"
|
112
|
-
end
|
113
|
-
```
|
136
|
+
* The new method `ActiveSupport::BacktraceCleaner#first_clean_location`
|
137
|
+
returns the first clean location of the caller's call stack, or `nil`.
|
138
|
+
Locations are `Thread::Backtrace::Location` objects. Useful when you want to
|
139
|
+
report the application-level location where something happened as an object.
|
114
140
|
|
115
|
-
|
116
|
-
of the requested 1 hour.
|
141
|
+
*Xavier Noria*
|
117
142
|
|
118
|
-
|
143
|
+
* FileUpdateChecker and EventedFileUpdateChecker ignore changes in Gem.path now.
|
119
144
|
|
120
|
-
*
|
145
|
+
*Ermolaev Andrey*, *zzak*
|
121
146
|
|
122
|
-
|
147
|
+
* The new method `ActiveSupport::BacktraceCleaner#first_clean_frame` returns
|
148
|
+
the first clean frame of the caller's backtrace, or `nil`. Useful when you
|
149
|
+
want to report the application-level frame where something happened as a
|
150
|
+
string.
|
123
151
|
|
124
|
-
*
|
152
|
+
*Xavier Noria*
|
125
153
|
|
126
|
-
|
127
|
-
now it dups the receiver first.
|
154
|
+
* Always clear `CurrentAttributes` instances.
|
128
155
|
|
129
|
-
|
156
|
+
Previously `CurrentAttributes` instance would be reset at the end of requests.
|
157
|
+
Meaning its attributes would be re-initialized.
|
130
158
|
|
131
|
-
|
159
|
+
This is problematic because it assume these objects don't hold any state
|
160
|
+
other than their declared attribute, which isn't always the case, and
|
161
|
+
can lead to state leak across request.
|
132
162
|
|
133
|
-
|
134
|
-
|
163
|
+
Now `CurrentAttributes` instances are abandoned at the end of a request,
|
164
|
+
and a new instance is created at the start of the next request.
|
135
165
|
|
136
|
-
*Jean Boussier*
|
166
|
+
*Jean Boussier*, *Janko Marohnić*
|
137
167
|
|
138
|
-
*
|
168
|
+
* Add public API for `before_fork_hook` in parallel testing.
|
139
169
|
|
140
|
-
|
141
|
-
later by being assigned to a constant.
|
170
|
+
Introduces a public API for calling the before fork hooks implemented by parallel testing.
|
142
171
|
|
143
172
|
```ruby
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
mod.module_parent_name # => "MyModule"
|
173
|
+
parallelize_before_fork do
|
174
|
+
# perform an action before test processes are forked
|
175
|
+
end
|
148
176
|
```
|
149
177
|
|
150
|
-
*
|
178
|
+
*Eileen M. Uchitelle*
|
151
179
|
|
180
|
+
* Implement ability to skip creating parallel testing databases.
|
152
181
|
|
153
|
-
|
182
|
+
With parallel testing, Rails will create a database per process. If this isn't
|
183
|
+
desirable or you would like to implement databases handling on your own, you can
|
184
|
+
now turn off this default behavior.
|
154
185
|
|
155
|
-
|
186
|
+
To skip creating a database per process, you can change it via the
|
187
|
+
`parallelize` method:
|
156
188
|
|
157
|
-
|
189
|
+
```ruby
|
190
|
+
parallelize(workers: 10, parallelize_databases: false)
|
191
|
+
```
|
158
192
|
|
159
|
-
|
193
|
+
or via the application configuration:
|
160
194
|
|
161
|
-
|
162
|
-
|
195
|
+
```ruby
|
196
|
+
config.active_support.parallelize_databases = false
|
197
|
+
```
|
163
198
|
|
164
|
-
|
199
|
+
*Eileen M. Uchitelle*
|
165
200
|
|
166
|
-
|
201
|
+
* Allow to configure maximum cache key sizes
|
167
202
|
|
203
|
+
When the key exceeds the configured limit (250 bytes by default), it will be truncated and
|
204
|
+
the digest of the rest of the key appended to it.
|
168
205
|
|
169
|
-
|
206
|
+
Note that previously `ActiveSupport::Cache::RedisCacheStore` allowed up to 1kb cache keys before
|
207
|
+
truncation, which is now reduced to 250 bytes.
|
170
208
|
|
171
|
-
|
209
|
+
```ruby
|
210
|
+
config.cache_store = :redis_cache_store, { max_key_size: 64 }
|
211
|
+
```
|
172
212
|
|
213
|
+
*fatkodima*
|
173
214
|
|
174
|
-
|
215
|
+
* Use `UNLINK` command instead of `DEL` in `ActiveSupport::Cache::RedisCacheStore` for non-blocking deletion.
|
175
216
|
|
176
|
-
*
|
217
|
+
*Aron Roh*
|
177
218
|
|
219
|
+
* Add `Cache#read_counter` and `Cache#write_counter`
|
178
220
|
|
179
|
-
|
221
|
+
```ruby
|
222
|
+
Rails.cache.write_counter("foo", 1)
|
223
|
+
Rails.cache.read_counter("foo") # => 1
|
224
|
+
Rails.cache.increment("foo")
|
225
|
+
Rails.cache.read_counter("foo") # => 2
|
226
|
+
```
|
180
227
|
|
181
|
-
*
|
228
|
+
*Alex Ghiculescu*
|
182
229
|
|
230
|
+
* Introduce ActiveSupport::Testing::ErrorReporterAssertions#capture_error_reports
|
183
231
|
|
184
|
-
|
232
|
+
Captures all reported errors from within the block that match the given
|
233
|
+
error class.
|
185
234
|
|
186
|
-
|
235
|
+
```ruby
|
236
|
+
reports = capture_error_reports(IOError) do
|
237
|
+
Rails.error.report(IOError.new("Oops"))
|
238
|
+
Rails.error.report(IOError.new("Oh no"))
|
239
|
+
Rails.error.report(StandardError.new)
|
240
|
+
end
|
187
241
|
|
188
|
-
|
242
|
+
assert_equal 2, reports.size
|
243
|
+
assert_equal "Oops", reports.first.error.message
|
244
|
+
assert_equal "Oh no", reports.last.error.message
|
245
|
+
```
|
189
246
|
|
190
|
-
*
|
247
|
+
*Andrew Novoselac*
|
191
248
|
|
192
|
-
|
249
|
+
* Introduce ActiveSupport::ErrorReporter#add_middleware
|
193
250
|
|
194
|
-
|
251
|
+
When reporting an error, the error context middleware will be called with the reported error
|
252
|
+
and base execution context. The stack may mutate the context hash. The mutated context will
|
253
|
+
then be passed to error subscribers. Middleware receives the same parameters as `ErrorReporter#report`.
|
195
254
|
|
196
|
-
*
|
255
|
+
*Andrew Novoselac*, *Sam Schmidt*
|
197
256
|
|
198
|
-
*
|
199
|
-
and unnecessarily slows down boot of applications with lots of translations.
|
257
|
+
* Change execution wrapping to report all exceptions, including `Exception`.
|
200
258
|
|
201
|
-
|
259
|
+
If a more serious error like `SystemStackError` or `NoMemoryError` happens,
|
260
|
+
the error reporter should be able to report these kinds of exceptions.
|
202
261
|
|
203
|
-
*
|
262
|
+
*Gannon McGibbon*
|
204
263
|
|
205
|
-
|
264
|
+
* `ActiveSupport::Testing::Parallelization.before_fork_hook` allows declaration of callbacks that
|
265
|
+
are invoked immediately before forking test workers.
|
206
266
|
|
207
|
-
|
208
|
-
{ 1 => 2 }.with_indifferent_access.stringify_keys[1] # => 2
|
209
|
-
```
|
267
|
+
*Mike Dalessio*
|
210
268
|
|
211
|
-
|
269
|
+
* Allow the `#freeze_time` testing helper to accept a date or time argument.
|
212
270
|
|
213
271
|
```ruby
|
214
|
-
|
272
|
+
Time.current # => Sun, 09 Jul 2024 15:34:49 EST -05:00
|
273
|
+
freeze_time Time.current + 1.day
|
274
|
+
sleep 1
|
275
|
+
Time.current # => Mon, 10 Jul 2024 15:34:49 EST -05:00
|
215
276
|
```
|
216
277
|
|
217
|
-
|
218
|
-
to not backport the fix and to make the change in a major release.
|
219
|
-
|
220
|
-
*Jean Boussier*
|
278
|
+
*Joshua Young*
|
221
279
|
|
222
|
-
|
280
|
+
* `ActiveSupport::JSON` now accepts options
|
223
281
|
|
224
|
-
|
282
|
+
It is now possible to pass options to `ActiveSupport::JSON`:
|
283
|
+
```ruby
|
284
|
+
ActiveSupport::JSON.decode('{"key": "value"}', symbolize_names: true) # => { key: "value" }
|
285
|
+
```
|
225
286
|
|
226
|
-
*
|
287
|
+
*matthaigh27*
|
227
288
|
|
228
|
-
*
|
289
|
+
* `ActiveSupport::Testing::NotificationAssertions`'s `assert_notification` now matches against payload subsets by default.
|
229
290
|
|
230
|
-
|
291
|
+
Previously the following assertion would fail due to excess key vals in the notification payload. Now with payload subset matching, it will pass.
|
231
292
|
|
232
|
-
|
293
|
+
```ruby
|
294
|
+
assert_notification("post.submitted", title: "Cool Post") do
|
295
|
+
ActiveSupport::Notifications.instrument("post.submitted", title: "Cool Post", body: "Cool Body")
|
296
|
+
end
|
297
|
+
```
|
233
298
|
|
234
|
-
|
299
|
+
Additionally, you can now persist a matched notification for more customized assertions.
|
235
300
|
|
236
|
-
|
301
|
+
```ruby
|
302
|
+
notification = assert_notification("post.submitted", title: "Cool Post") do
|
303
|
+
ActiveSupport::Notifications.instrument("post.submitted", title: "Cool Post", body: Body.new("Cool Body"))
|
304
|
+
end
|
237
305
|
|
238
|
-
|
306
|
+
assert_instance_of(Body, notification.payload[:body])
|
307
|
+
```
|
239
308
|
|
240
|
-
*
|
309
|
+
*Nicholas La Roux*
|
241
310
|
|
242
|
-
* `
|
311
|
+
* Deprecate `String#mb_chars` and `ActiveSupport::Multibyte::Chars`.
|
243
312
|
|
244
|
-
|
245
|
-
|
313
|
+
These APIs are a relic of the Ruby 1.8 days when Ruby strings weren't encoding
|
314
|
+
aware. There is no legitimate reasons to need these APIs today.
|
246
315
|
|
247
316
|
*Jean Boussier*
|
248
317
|
|
249
|
-
*
|
318
|
+
* Deprecate `ActiveSupport::Configurable`
|
250
319
|
|
251
|
-
|
252
|
-
`ActiveSupport.escape_html_entities_in_json` for specific calls to `to_json`.
|
320
|
+
*Sean Doyle*
|
253
321
|
|
254
|
-
|
255
|
-
```ruby
|
256
|
-
class MyController < ApplicationController
|
257
|
-
def index
|
258
|
-
render json: { hello: "world" }, escape_html_entities: false
|
259
|
-
end
|
260
|
-
end
|
261
|
-
```
|
322
|
+
* `nil.to_query("key")` now returns `key`.
|
262
323
|
|
263
|
-
|
324
|
+
Previously it would return `key=`, preventing round tripping with `Rack::Utils.parse_nested_query`.
|
264
325
|
|
265
|
-
*
|
326
|
+
*Erol Fornoles*
|
266
327
|
|
267
|
-
|
328
|
+
* Avoid wrapping redis in a `ConnectionPool` when using `ActiveSupport::Cache::RedisCacheStore` if the `:redis`
|
329
|
+
option is already a `ConnectionPool`.
|
268
330
|
|
269
|
-
*
|
331
|
+
*Joshua Young*
|
270
332
|
|
271
|
-
*
|
333
|
+
* Alter `ERB::Util.tokenize` to return :PLAIN token with full input string when string doesn't contain ERB tags.
|
272
334
|
|
273
|
-
|
335
|
+
*Martin Emde*
|
274
336
|
|
275
|
-
|
337
|
+
* Fix a bug in `ERB::Util.tokenize` that causes incorrect tokenization when ERB tags are preceded by multibyte characters.
|
276
338
|
|
277
|
-
*
|
339
|
+
*Martin Emde*
|
278
340
|
|
279
|
-
|
341
|
+
* Add `ActiveSupport::Testing::NotificationAssertions` module to help with testing `ActiveSupport::Notifications`.
|
280
342
|
|
281
|
-
*
|
282
|
-
under `Rails.root`. Previously the watcher would grab all available locales, including those in gems
|
283
|
-
which do not require a watcher because they won't change.
|
343
|
+
*Nicholas La Roux*, *Yishu See*, *Sean Doyle*
|
284
344
|
|
285
|
-
|
345
|
+
* `ActiveSupport::CurrentAttributes#attributes` now will return a new hash object on each call.
|
286
346
|
|
287
|
-
|
288
|
-
by these values.
|
347
|
+
Previously, the same hash object was returned each time that method was called.
|
289
348
|
|
290
|
-
*
|
349
|
+
*fatkodima*
|
291
350
|
|
292
|
-
*
|
293
|
-
proc by printing the proc's source code (MRI only).
|
351
|
+
* `ActiveSupport::JSON.encode` supports CIDR notation.
|
294
352
|
|
295
|
-
|
353
|
+
Previously:
|
296
354
|
|
297
|
-
|
355
|
+
```ruby
|
356
|
+
ActiveSupport::JSON.encode(IPAddr.new("172.16.0.0/24")) # => "\"172.16.0.0\""
|
357
|
+
```
|
298
358
|
|
299
|
-
|
359
|
+
After this change:
|
300
360
|
|
301
|
-
|
361
|
+
```ruby
|
362
|
+
ActiveSupport::JSON.encode(IPAddr.new("172.16.0.0/24")) # => "\"172.16.0.0/24\""
|
363
|
+
```
|
302
364
|
|
303
|
-
*
|
365
|
+
*Taketo Takashima*
|
304
366
|
|
305
|
-
*
|
367
|
+
* Make `ActiveSupport::FileUpdateChecker` faster when checking many file-extensions.
|
306
368
|
|
307
|
-
*
|
369
|
+
*Jonathan del Strother*
|
308
370
|
|
309
|
-
Please check [
|
371
|
+
Please check [8-0-stable](https://github.com/rails/rails/blob/8-0-stable/activesupport/CHANGELOG.md) for previous changes.
|
@@ -56,6 +56,18 @@ module ActiveSupport
|
|
56
56
|
end
|
57
57
|
alias :filter :clean
|
58
58
|
|
59
|
+
# Given an array of Thread::Backtrace::Location objects, returns an array
|
60
|
+
# with the clean ones:
|
61
|
+
#
|
62
|
+
# clean_locations = backtrace_cleaner.clean_locations(caller_locations)
|
63
|
+
#
|
64
|
+
# Filters and silencers receive strings as usual. However, the +path+
|
65
|
+
# attributes of the locations in the returned array are the original,
|
66
|
+
# unfiltered ones, since locations are immutable.
|
67
|
+
def clean_locations(locations, kind = :silent)
|
68
|
+
locations.select { |location| clean_frame(location, kind) }
|
69
|
+
end
|
70
|
+
|
59
71
|
# Returns the frame with all filters applied.
|
60
72
|
# returns +nil+ if the frame was silenced.
|
61
73
|
def clean_frame(frame, kind = :silent)
|
@@ -74,6 +86,65 @@ module ActiveSupport
|
|
74
86
|
end
|
75
87
|
end
|
76
88
|
|
89
|
+
# Thread.each_caller_location does not accept a start in Ruby < 3.4.
|
90
|
+
if Thread.method(:each_caller_location).arity == 0
|
91
|
+
# Returns the first clean frame of the caller's backtrace, or +nil+.
|
92
|
+
#
|
93
|
+
# Frames are strings.
|
94
|
+
def first_clean_frame(kind = :silent)
|
95
|
+
caller_location_skipped = false
|
96
|
+
|
97
|
+
Thread.each_caller_location do |location|
|
98
|
+
unless caller_location_skipped
|
99
|
+
caller_location_skipped = true
|
100
|
+
next
|
101
|
+
end
|
102
|
+
|
103
|
+
frame = clean_frame(location, kind)
|
104
|
+
return frame if frame
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
# Returns the first clean location of the caller's call stack, or +nil+.
|
109
|
+
#
|
110
|
+
# Locations are Thread::Backtrace::Location objects. Since they are
|
111
|
+
# immutable, their +path+ attributes are the original ones, but filters
|
112
|
+
# are applied internally so silencers can still rely on them.
|
113
|
+
def first_clean_location(kind = :silent)
|
114
|
+
caller_location_skipped = false
|
115
|
+
|
116
|
+
Thread.each_caller_location do |location|
|
117
|
+
unless caller_location_skipped
|
118
|
+
caller_location_skipped = true
|
119
|
+
next
|
120
|
+
end
|
121
|
+
|
122
|
+
return location if clean_frame(location, kind)
|
123
|
+
end
|
124
|
+
end
|
125
|
+
else
|
126
|
+
# Returns the first clean frame of the caller's backtrace, or +nil+.
|
127
|
+
#
|
128
|
+
# Frames are strings.
|
129
|
+
def first_clean_frame(kind = :silent)
|
130
|
+
Thread.each_caller_location(2) do |location|
|
131
|
+
frame = clean_frame(location, kind)
|
132
|
+
return frame if frame
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
# Returns the first clean location of the caller's call stack, or +nil+.
|
137
|
+
#
|
138
|
+
# Locations are Thread::Backtrace::Location objects. Since they are
|
139
|
+
# immutable, their +path+ attributes are the original ones, but filters
|
140
|
+
# are applied internally so silencers can still rely on them.
|
141
|
+
def first_clean_location(kind = :silent)
|
142
|
+
Thread.each_caller_location(2) do |location|
|
143
|
+
return location if clean_frame(location, kind)
|
144
|
+
end
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
77
148
|
# Adds a filter from the block provided. Each line in the backtrace will be
|
78
149
|
# mapped against this filter.
|
79
150
|
#
|