activesupport 7.2.3.1 → 8.0.5
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 +171 -214
- data/lib/active_support/backtrace_cleaner.rb +1 -1
- data/lib/active_support/benchmark.rb +21 -0
- data/lib/active_support/benchmarkable.rb +3 -2
- data/lib/active_support/cache/file_store.rb +12 -2
- data/lib/active_support/cache/mem_cache_store.rb +4 -1
- data/lib/active_support/cache/memory_store.rb +6 -2
- data/lib/active_support/cache/redis_cache_store.rb +6 -3
- data/lib/active_support/cache.rb +16 -11
- data/lib/active_support/callbacks.rb +5 -3
- data/lib/active_support/class_attribute.rb +33 -0
- data/lib/active_support/code_generator.rb +9 -0
- data/lib/active_support/concurrency/share_lock.rb +0 -1
- data/lib/active_support/configuration_file.rb +15 -6
- data/lib/active_support/core_ext/array/conversions.rb +3 -3
- data/lib/active_support/core_ext/benchmark.rb +6 -9
- data/lib/active_support/core_ext/class/attribute.rb +24 -18
- data/lib/active_support/core_ext/date/conversions.rb +2 -0
- data/lib/active_support/core_ext/date_and_time/compatibility.rb +2 -2
- data/lib/active_support/core_ext/enumerable.rb +8 -3
- data/lib/active_support/core_ext/hash/deep_merge.rb +1 -0
- data/lib/active_support/core_ext/hash/except.rb +0 -12
- data/lib/active_support/core_ext/module/attr_internal.rb +3 -4
- data/lib/active_support/core_ext/object/json.rb +16 -10
- data/lib/active_support/core_ext/object/to_query.rb +2 -1
- data/lib/active_support/core_ext/range/overlap.rb +3 -3
- data/lib/active_support/core_ext/string/inflections.rb +1 -1
- data/lib/active_support/core_ext/thread/backtrace/location.rb +2 -7
- data/lib/active_support/core_ext/time/calculations.rb +14 -2
- data/lib/active_support/core_ext/time/conversions.rb +2 -0
- data/lib/active_support/delegation.rb +25 -44
- data/lib/active_support/dependencies.rb +0 -1
- data/lib/active_support/deprecation/reporting.rb +0 -19
- data/lib/active_support/deprecation.rb +1 -1
- data/lib/active_support/duration.rb +14 -10
- data/lib/active_support/encrypted_configuration.rb +20 -2
- data/lib/active_support/error_reporter.rb +31 -1
- data/lib/active_support/evented_file_update_checker.rb +0 -1
- data/lib/active_support/gem_version.rb +4 -4
- data/lib/active_support/hash_with_indifferent_access.rb +15 -16
- data/lib/active_support/i18n_railtie.rb +19 -11
- data/lib/active_support/inflector/inflections.rb +2 -1
- data/lib/active_support/inflector/methods.rb +3 -3
- data/lib/active_support/isolated_execution_state.rb +4 -4
- data/lib/active_support/json/decoding.rb +3 -1
- data/lib/active_support/json/encoding.rb +2 -2
- data/lib/active_support/logger_thread_safe_level.rb +6 -3
- data/lib/active_support/message_pack/extensions.rb +1 -1
- data/lib/active_support/notifications/fanout.rb +0 -1
- data/lib/active_support/notifications/instrumenter.rb +1 -1
- data/lib/active_support/number_helper.rb +22 -0
- data/lib/active_support/railtie.rb +6 -0
- data/lib/active_support/tagged_logging.rb +5 -0
- data/lib/active_support/test_case.rb +6 -0
- data/lib/active_support/testing/assertions.rb +84 -21
- data/lib/active_support/testing/autorun.rb +5 -0
- data/lib/active_support/testing/isolation.rb +0 -2
- data/lib/active_support/testing/parallelization/worker.rb +5 -1
- data/lib/active_support/testing/time_helpers.rb +2 -1
- data/lib/active_support/time_with_zone.rb +22 -13
- data/lib/active_support/values/time_zone.rb +11 -9
- data/lib/active_support.rb +10 -3
- metadata +21 -12
- data/lib/active_support/proxy_object.rb +0 -20
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e4952a5142700edad7b5bf62c0753a93f202873d96a6ad7dd5b231348ec9d917
|
|
4
|
+
data.tar.gz: 7f832339286eeeec1fda1097ee5ad50b6efc3ae44bb1aa483524907dcb3aebd7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b4825cf61610686c03d69e648665d4d886e1c755a0f3bc4db14d1bb81331e0c11a79d3c96295185972cb0852e894d66bdc03d2c6787e8c6f3629f4d18e8ce43
|
|
7
|
+
data.tar.gz: 5b7ee77d3c6a4f36a7746d2ce9a2d49d2cc18c9a4e17931626d3dc87c09edb12236180a6ef5d1c7dddcbf7cdafed9d97edb9b9146ed0d56231b286573f41795b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,37 @@
|
|
|
1
|
-
## Rails
|
|
1
|
+
## Rails 8.0.5 (March 24, 2026) ##
|
|
2
|
+
|
|
3
|
+
* Fix inflections to better handle overlapping acronyms.
|
|
4
|
+
|
|
5
|
+
```ruby
|
|
6
|
+
ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|
7
|
+
inflect.acronym "USD"
|
|
8
|
+
inflect.acronym "USDC"
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
"USDC".underscore # => "usdc"
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
*Said Kaldybaev*
|
|
15
|
+
|
|
16
|
+
* Silence Dalli 4.0+ warning when using `ActiveSupport::Cache::MemCacheStore`.
|
|
17
|
+
|
|
18
|
+
*zzak*
|
|
19
|
+
|
|
20
|
+
* Make `delegate` and `delegate_missing_to` work in BasicObject subclasses.
|
|
21
|
+
|
|
22
|
+
*Rafael Mendonça França*
|
|
23
|
+
|
|
24
|
+
* Fix `ActiveSupport::Inflector.humanize` with international characters.
|
|
25
|
+
|
|
26
|
+
```ruby
|
|
27
|
+
ActiveSupport::Inflector.humanize("áÉÍÓÚ") # => "Áéíóú"
|
|
28
|
+
ActiveSupport::Inflector.humanize("аБВГДЕ") # => "Абвгде"
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
*Jose Luis Duran*
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
## Rails 8.0.4.1 (March 23, 2026) ##
|
|
2
35
|
|
|
3
36
|
* Reject scientific notation in NumberConverter
|
|
4
37
|
|
|
@@ -19,7 +52,7 @@
|
|
|
19
52
|
*Jean Boussier*
|
|
20
53
|
|
|
21
54
|
|
|
22
|
-
## Rails
|
|
55
|
+
## Rails 8.0.4 (October 28, 2025) ##
|
|
23
56
|
|
|
24
57
|
* Fix `Enumerable#sole` to return the full tuple instead of just the first element of the tuple.
|
|
25
58
|
|
|
@@ -32,6 +65,22 @@
|
|
|
32
65
|
|
|
33
66
|
*Joshua Young*
|
|
34
67
|
|
|
68
|
+
* Fix `NameError` when `class_attribute` is defined on instance singleton classes.
|
|
69
|
+
|
|
70
|
+
Previously, calling `class_attribute` on an instance's singleton class would raise
|
|
71
|
+
a `NameError` when accessing the attribute through the instance.
|
|
72
|
+
|
|
73
|
+
```ruby
|
|
74
|
+
object = MyClass.new
|
|
75
|
+
object.singleton_class.class_attribute :foo, default: "bar"
|
|
76
|
+
object.foo # previously raised NameError, now returns "bar"
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
*Joshua Young*
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
## Rails 8.0.3 (September 22, 2025) ##
|
|
83
|
+
|
|
35
84
|
* `ActiveSupport::FileUpdateChecker` does not depend on `Time.now` to prevent unnecessary reloads with time travel test helpers
|
|
36
85
|
|
|
37
86
|
*Jan Grodowski*
|
|
@@ -40,6 +89,10 @@
|
|
|
40
89
|
|
|
41
90
|
*Jared Armstrong*
|
|
42
91
|
|
|
92
|
+
* Make `ActiveSupport::Logger` `#freeze`-friendly.
|
|
93
|
+
|
|
94
|
+
*Joshua Young*
|
|
95
|
+
|
|
43
96
|
* Fix `ActiveSupport::HashWithIndifferentAccess#transform_keys!` removing defaults.
|
|
44
97
|
|
|
45
98
|
*Hartley McGuire*
|
|
@@ -60,17 +113,57 @@
|
|
|
60
113
|
|
|
61
114
|
```ruby
|
|
62
115
|
>> {a: 1, b: 2}.with_indifferent_access.transform_keys!(&:succ)
|
|
63
|
-
=> {"
|
|
116
|
+
=> {"b" => 1, "c" => 2}
|
|
64
117
|
```
|
|
65
118
|
|
|
66
119
|
*Jason T Johnson*, *Jean Boussier*
|
|
67
120
|
|
|
121
|
+
**Note on overwrite precedence:**
|
|
122
|
+
|
|
123
|
+
This fix also changed the overwrite precedence when distinct keys are transformed into the same key.
|
|
124
|
+
The later key now overwrites the earlier one (matching standard Ruby `Hash` behavior).
|
|
125
|
+
Previously, the earlier key's value was preserved.
|
|
126
|
+
|
|
127
|
+
Before:
|
|
128
|
+
|
|
129
|
+
```ruby
|
|
130
|
+
>> {XY: 1, xy: 2}.with_indifferent_access.transform_keys!(&:downcase)
|
|
131
|
+
=> {"xy"=>1}
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
After:
|
|
135
|
+
|
|
136
|
+
```ruby
|
|
137
|
+
>> {XY: 1, xy: 2}.with_indifferent_access.transform_keys!(&:downcase)
|
|
138
|
+
=> {"xy"=>2}
|
|
139
|
+
```
|
|
140
|
+
|
|
68
141
|
* Fix `ActiveSupport::Cache::MemCacheStore#read_multi` to handle network errors.
|
|
69
142
|
|
|
70
143
|
This method specifically wasn't handling network errors like other codepaths.
|
|
71
144
|
|
|
72
145
|
*Alessandro Dal Grande*
|
|
73
146
|
|
|
147
|
+
* Fix configuring `RedisCacheStore` with `raw: true`.
|
|
148
|
+
|
|
149
|
+
*fatkodima*
|
|
150
|
+
|
|
151
|
+
* Fix `Enumerable#sole` for infinite collections.
|
|
152
|
+
|
|
153
|
+
*fatkodima*
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
## Rails 8.0.2.1 (August 13, 2025) ##
|
|
157
|
+
|
|
158
|
+
* No changes.
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
## Rails 8.0.2 (March 12, 2025) ##
|
|
162
|
+
|
|
163
|
+
* Fix setting `to_time_preserves_timezone` from `new_framework_defaults_8_0.rb`.
|
|
164
|
+
|
|
165
|
+
*fatkodima*
|
|
166
|
+
|
|
74
167
|
* Fix Active Support Cache `fetch_multi` when local store is active.
|
|
75
168
|
|
|
76
169
|
`fetch_multi` now properly yield to the provided block for missing entries
|
|
@@ -157,297 +250,161 @@
|
|
|
157
250
|
|
|
158
251
|
*Jean Boussier*
|
|
159
252
|
|
|
160
|
-
* Fix a bug in `ERB::Util.tokenize` that causes incorrect tokenization when ERB tags are preceeded by multibyte characters.
|
|
161
|
-
|
|
162
|
-
*Martin Emde*
|
|
163
|
-
|
|
164
253
|
|
|
165
|
-
## Rails
|
|
254
|
+
## Rails 8.0.1 (December 13, 2024) ##
|
|
166
255
|
|
|
167
|
-
*
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
## Rails 7.2.2.1 (December 10, 2024) ##
|
|
171
|
-
|
|
172
|
-
* No changes.
|
|
256
|
+
* Fix a bug in `ERB::Util.tokenize` that causes incorrect tokenization when ERB tags are preceeded by multibyte characters.
|
|
173
257
|
|
|
258
|
+
*Martin Emde*
|
|
174
259
|
|
|
175
|
-
|
|
260
|
+
* Restore the ability to decorate methods generated by `class_attribute`.
|
|
176
261
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
*Adam Renberg Tamm*
|
|
262
|
+
It always has been complicated to use Module#prepend or an alias method chain
|
|
263
|
+
to decorate methods defined by `class_attribute`, but became even harder in 8.0.
|
|
180
264
|
|
|
181
|
-
|
|
265
|
+
This capability is now supported for both reader and writer methods.
|
|
182
266
|
|
|
183
|
-
*
|
|
267
|
+
*Jean Boussier*
|
|
184
268
|
|
|
185
269
|
|
|
186
|
-
## Rails
|
|
270
|
+
## Rails 8.0.0.1 (December 10, 2024) ##
|
|
187
271
|
|
|
188
272
|
* No changes.
|
|
189
273
|
|
|
190
274
|
|
|
191
|
-
## Rails
|
|
275
|
+
## Rails 8.0.0 (November 07, 2024) ##
|
|
192
276
|
|
|
193
277
|
* No changes.
|
|
194
278
|
|
|
195
279
|
|
|
196
|
-
## Rails
|
|
280
|
+
## Rails 8.0.0.rc2 (October 30, 2024) ##
|
|
197
281
|
|
|
198
282
|
* No changes.
|
|
199
283
|
|
|
200
284
|
|
|
201
|
-
## Rails
|
|
202
|
-
|
|
203
|
-
* Fix `delegate_missing_to allow_nil: true` when called with implict self
|
|
204
|
-
|
|
205
|
-
```ruby
|
|
206
|
-
class Person
|
|
207
|
-
delegate_missing_to :address, allow_nil: true
|
|
208
|
-
|
|
209
|
-
def address
|
|
210
|
-
nil
|
|
211
|
-
end
|
|
212
|
-
|
|
213
|
-
def berliner?
|
|
214
|
-
city == "Berlin"
|
|
215
|
-
end
|
|
216
|
-
end
|
|
217
|
-
|
|
218
|
-
Person.new.city # => nil
|
|
219
|
-
Person.new.berliner? # undefined local variable or method `city' for an instance of Person (NameError)
|
|
220
|
-
```
|
|
221
|
-
|
|
222
|
-
*Jean Boussier*
|
|
223
|
-
|
|
224
|
-
* Add `logger` as a dependency since it is a bundled gem candidate for Ruby 3.5
|
|
225
|
-
|
|
226
|
-
*Earlopain*
|
|
227
|
-
|
|
228
|
-
* Define `Digest::UUID.nil_uuid`, which returns the so-called nil UUID.
|
|
229
|
-
|
|
230
|
-
*Xavier Noria*
|
|
231
|
-
|
|
232
|
-
* Support `duration` type in `ActiveSupport::XmlMini`.
|
|
233
|
-
|
|
234
|
-
*heka1024*
|
|
235
|
-
|
|
236
|
-
* Remove deprecated `ActiveSupport::Notifications::Event#children` and `ActiveSupport::Notifications::Event#parent_of?`.
|
|
237
|
-
|
|
238
|
-
*Rafael Mendonça França*
|
|
239
|
-
|
|
240
|
-
* Remove deprecated support to call the following methods without passing a deprecator:
|
|
241
|
-
|
|
242
|
-
- `deprecate`
|
|
243
|
-
- `deprecate_constant`
|
|
244
|
-
- `ActiveSupport::Deprecation::DeprecatedObjectProxy.new`
|
|
245
|
-
- `ActiveSupport::Deprecation::DeprecatedInstanceVariableProxy.new`
|
|
246
|
-
- `ActiveSupport::Deprecation::DeprecatedConstantProxy.new`
|
|
247
|
-
- `assert_deprecated`
|
|
248
|
-
- `assert_not_deprecated`
|
|
249
|
-
- `collect_deprecations`
|
|
250
|
-
|
|
251
|
-
*Rafael Mendonça França*
|
|
252
|
-
|
|
253
|
-
* Remove deprecated `ActiveSupport::Deprecation` delegation to instance.
|
|
254
|
-
|
|
255
|
-
*Rafael Mendonça França*
|
|
256
|
-
|
|
257
|
-
* Remove deprecated `SafeBuffer#clone_empty`.
|
|
258
|
-
|
|
259
|
-
*Rafael Mendonça França*
|
|
285
|
+
## Rails 8.0.0.rc1 (October 19, 2024) ##
|
|
260
286
|
|
|
261
|
-
* Remove deprecated
|
|
287
|
+
* Remove deprecated support to passing an array of strings to `ActiveSupport::Deprecation#warn`.
|
|
262
288
|
|
|
263
289
|
*Rafael Mendonça França*
|
|
264
290
|
|
|
265
|
-
* Remove deprecated support to
|
|
291
|
+
* Remove deprecated support to setting `attr_internal_naming_format` with a `@` prefix.
|
|
266
292
|
|
|
267
293
|
*Rafael Mendonça França*
|
|
268
294
|
|
|
269
|
-
* Remove deprecated `
|
|
295
|
+
* Remove deprecated `ActiveSupport::ProxyObject`.
|
|
270
296
|
|
|
271
297
|
*Rafael Mendonça França*
|
|
272
298
|
|
|
273
|
-
*
|
|
299
|
+
* Don't execute i18n watcher on boot. It shouldn't catch any file changes initially,
|
|
300
|
+
and unnecessarily slows down boot of applications with lots of translations.
|
|
274
301
|
|
|
275
|
-
*
|
|
302
|
+
*Gannon McGibbon*, *David Stosik*
|
|
276
303
|
|
|
277
|
-
*
|
|
304
|
+
* Fix `ActiveSupport::HashWithIndifferentAccess#stringify_keys` to stringify all keys not just symbols.
|
|
278
305
|
|
|
279
|
-
|
|
306
|
+
Previously:
|
|
280
307
|
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
* Remove deprecated constants `ActiveSupport::LogSubscriber::CLEAR` and `ActiveSupport::LogSubscriber::BOLD`.
|
|
286
|
-
|
|
287
|
-
*Rafael Mendonça França*
|
|
288
|
-
|
|
289
|
-
* Remove deprecated support for `config.active_support.cache_format_version = 6.1`.
|
|
290
|
-
|
|
291
|
-
*Rafael Mendonça França*
|
|
292
|
-
|
|
293
|
-
* Remove deprecated `:pool_size` and `:pool_timeout` options for the cache storage.
|
|
294
|
-
|
|
295
|
-
*Rafael Mendonça França*
|
|
296
|
-
|
|
297
|
-
* Warn on tests without assertions.
|
|
298
|
-
|
|
299
|
-
`ActiveSupport::TestCase` now warns when tests do not run any assertions.
|
|
300
|
-
This is helpful in detecting broken tests that do not perform intended assertions.
|
|
301
|
-
|
|
302
|
-
*fatkodima*
|
|
303
|
-
|
|
304
|
-
* Support `hexBinary` type in `ActiveSupport::XmlMini`.
|
|
305
|
-
|
|
306
|
-
*heka1024*
|
|
307
|
-
|
|
308
|
-
* Deprecate `ActiveSupport::ProxyObject` in favor of Ruby's built-in `BasicObject`.
|
|
309
|
-
|
|
310
|
-
*Earlopain*
|
|
311
|
-
|
|
312
|
-
* `stub_const` now accepts a `exists: false` parameter to allow stubbing missing constants.
|
|
313
|
-
|
|
314
|
-
*Jean Boussier*
|
|
315
|
-
|
|
316
|
-
* Make `ActiveSupport::BacktraceCleaner` copy filters and silencers on dup and clone.
|
|
317
|
-
|
|
318
|
-
Previously the copy would still share the internal silencers and filters array,
|
|
319
|
-
causing state to leak.
|
|
320
|
-
|
|
321
|
-
*Jean Boussier*
|
|
322
|
-
|
|
323
|
-
* Updating Astana with Western Kazakhstan TZInfo identifier.
|
|
324
|
-
|
|
325
|
-
*Damian Nelson*
|
|
308
|
+
```ruby
|
|
309
|
+
{ 1 => 2 }.with_indifferent_access.stringify_keys[1] # => 2
|
|
310
|
+
```
|
|
326
311
|
|
|
327
|
-
|
|
312
|
+
After this change:
|
|
328
313
|
|
|
329
314
|
```ruby
|
|
330
|
-
|
|
331
|
-
ActiveSupport::Logger.logger_outputs_to?(logger, '/var/log/rails.log')
|
|
315
|
+
{ 1 => 2 }.with_indifferent_access.stringify_keys["1"] # => 2
|
|
332
316
|
```
|
|
333
317
|
|
|
334
|
-
|
|
318
|
+
This change can be seen as a bug fix, but since it behaved like this for a very long time, we're deciding
|
|
319
|
+
to not backport the fix and to make the change in a major release.
|
|
335
320
|
|
|
336
|
-
*
|
|
337
|
-
`ActiveSupport::MessagePack` serializer.
|
|
321
|
+
*Jean Boussier*
|
|
338
322
|
|
|
339
|
-
|
|
340
|
-
still be read, and new payloads will be readable by older versions of Rails.
|
|
323
|
+
## Rails 8.0.0.beta1 (September 26, 2024) ##
|
|
341
324
|
|
|
342
|
-
|
|
325
|
+
* Include options when instrumenting `ActiveSupport::Cache::Store#delete` and `ActiveSupport::Cache::Store#delete_multi`.
|
|
343
326
|
|
|
344
|
-
*
|
|
327
|
+
*Adam Renberg Tamm*
|
|
345
328
|
|
|
346
|
-
|
|
347
|
-
class Current < ActiveSupport::CurrentAttributes
|
|
348
|
-
attribute :counter, default: 0
|
|
349
|
-
end
|
|
350
|
-
```
|
|
329
|
+
* Print test names when running `rails test -v` for parallel tests.
|
|
351
330
|
|
|
352
|
-
*
|
|
331
|
+
*John Hawthorn*, *Abeid Ahmed*
|
|
353
332
|
|
|
354
|
-
*
|
|
333
|
+
* Deprecate `Benchmark.ms` core extension.
|
|
355
334
|
|
|
356
|
-
|
|
357
|
-
client.with(timeout: 5_000) do |c|
|
|
358
|
-
c.get("/commits")
|
|
359
|
-
end
|
|
360
|
-
```
|
|
335
|
+
The `benchmark` gem will become bundled in Ruby 3.5
|
|
361
336
|
|
|
362
|
-
*
|
|
337
|
+
*Earlopain*
|
|
363
338
|
|
|
364
|
-
*
|
|
365
|
-
default number of workers when parallelizing tests.
|
|
339
|
+
* `ActiveSupport::TimeWithZone#inspect` now uses ISO 8601 style time like `Time#inspect`
|
|
366
340
|
|
|
367
|
-
*
|
|
341
|
+
*John Hawthorn*
|
|
368
342
|
|
|
369
|
-
*
|
|
343
|
+
* `ActiveSupport::ErrorReporter#report` now assigns a backtrace to unraised exceptions.
|
|
370
344
|
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
returning results in that remembered timezone. However, the expected
|
|
374
|
-
behavior is to return results in a system timezone.
|
|
345
|
+
Previously reporting an un-raised exception would result in an error report without
|
|
346
|
+
a backtrace. Now it automatically generates one.
|
|
375
347
|
|
|
376
|
-
*
|
|
348
|
+
*Jean Boussier*
|
|
377
349
|
|
|
378
|
-
* Add `
|
|
350
|
+
* Add `escape_html_entities` option to `ActiveSupport::JSON.encode`.
|
|
379
351
|
|
|
380
|
-
|
|
352
|
+
This allows for overriding the global configuration found at
|
|
353
|
+
`ActiveSupport.escape_html_entities_in_json` for specific calls to `to_json`.
|
|
381
354
|
|
|
355
|
+
This should be usable from controllers in the following manner:
|
|
382
356
|
```ruby
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
return false
|
|
357
|
+
class MyController < ApplicationController
|
|
358
|
+
def index
|
|
359
|
+
render json: { hello: "world" }, escape_html_entities: false
|
|
387
360
|
end
|
|
388
|
-
# ...
|
|
389
361
|
end
|
|
390
362
|
```
|
|
391
363
|
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
*Jean Boussier*
|
|
395
|
-
|
|
396
|
-
* Make the order of read_multi and write_multi notifications for `Cache::Store#fetch_multi` operations match the order they are executed in.
|
|
397
|
-
|
|
398
|
-
*Adam Renberg Tamm*
|
|
399
|
-
|
|
400
|
-
* Make return values of `Cache::Store#write` consistent.
|
|
401
|
-
|
|
402
|
-
The return value was not specified before. Now it returns `true` on a successful write,
|
|
403
|
-
`nil` if there was an error talking to the cache backend, and `false` if the write failed
|
|
404
|
-
for another reason (e.g. the key already exists and `unless_exist: true` was passed).
|
|
364
|
+
*Nigel Baillie*
|
|
405
365
|
|
|
406
|
-
|
|
366
|
+
* Raise when using key which can't respond to `#to_sym` in `EncryptedConfiguration`.
|
|
407
367
|
|
|
408
|
-
|
|
368
|
+
As is the case when trying to use an Integer or Float as a key, which is unsupported.
|
|
409
369
|
|
|
410
|
-
*
|
|
370
|
+
*zzak*
|
|
411
371
|
|
|
412
|
-
*
|
|
372
|
+
* Deprecate addition and since between two `Time` and `ActiveSupport::TimeWithZone`.
|
|
413
373
|
|
|
414
|
-
`
|
|
415
|
-
to differentiate nil from empty strings, strings from symbols, etc.
|
|
416
|
-
`assert_no_changes` error messages now surface the actual value.
|
|
374
|
+
Previously adding time instances together such as `10.days.ago + 10.days.ago` or `10.days.ago.since(10.days.ago)` produced a nonsensical future date. This behavior is deprecated and will be removed in Rails 8.1.
|
|
417
375
|
|
|
418
|
-
*
|
|
376
|
+
*Nick Schwaderer*
|
|
419
377
|
|
|
420
|
-
*
|
|
378
|
+
* Support rfc2822 format for Time#to_fs & Date#to_fs.
|
|
421
379
|
|
|
422
|
-
*
|
|
380
|
+
*Akshay Birajdar*
|
|
423
381
|
|
|
424
|
-
*
|
|
382
|
+
* Optimize load time for `Railtie#initialize_i18n`. Filter `I18n.load_path`s passed to the file watcher to only those
|
|
383
|
+
under `Rails.root`. Previously the watcher would grab all available locales, including those in gems
|
|
384
|
+
which do not require a watcher because they won't change.
|
|
425
385
|
|
|
426
|
-
*
|
|
386
|
+
*Nick Schwaderer*
|
|
427
387
|
|
|
428
|
-
*
|
|
388
|
+
* Add a `filter` option to `in_order_of` to prioritize certain values in the sorting without filtering the results
|
|
389
|
+
by these values.
|
|
429
390
|
|
|
430
|
-
*
|
|
391
|
+
*Igor Depolli*
|
|
431
392
|
|
|
432
|
-
*
|
|
393
|
+
* Improve error message when using `assert_difference` or `assert_changes` with a
|
|
394
|
+
proc by printing the proc's source code (MRI only).
|
|
433
395
|
|
|
434
|
-
|
|
435
|
-
`SemanticLogger#level` returns a Symbol while stdlib `Logger#level` returns an Integer.
|
|
396
|
+
*Richard Böhme*, *Jean Boussier*
|
|
436
397
|
|
|
437
|
-
|
|
438
|
-
`SemanticLogger` instance.
|
|
398
|
+
* Add a new configuration value `:zone` for `ActiveSupport.to_time_preserves_timezone` and rename the previous `true` value to `:offset`. The new default value is `:zone`.
|
|
439
399
|
|
|
440
|
-
*
|
|
400
|
+
*Jason Kim*, *John Hawthorn*
|
|
441
401
|
|
|
442
|
-
*
|
|
402
|
+
* Align instrumentation `payload[:key]` in ActiveSupport::Cache to follow the same pattern, with namespaced and normalized keys.
|
|
443
403
|
|
|
444
|
-
*
|
|
404
|
+
*Frederik Erbs Spang Thomsen*
|
|
445
405
|
|
|
446
|
-
*
|
|
406
|
+
* Fix `travel_to` to set usec 0 when `with_usec` is `false` and the given argument String or DateTime.
|
|
447
407
|
|
|
448
|
-
|
|
449
|
-
method from the `Hash` class, which was not able to access values using indifferent keys.
|
|
450
|
-
|
|
451
|
-
*fatkodima*
|
|
408
|
+
*mopp*
|
|
452
409
|
|
|
453
|
-
Please check [7-
|
|
410
|
+
Please check [7-2-stable](https://github.com/rails/rails/blob/7-2-stable/activesupport/CHANGELOG.md) for previous changes.
|
|
@@ -18,7 +18,7 @@ module ActiveSupport
|
|
|
18
18
|
#
|
|
19
19
|
# bc = ActiveSupport::BacktraceCleaner.new
|
|
20
20
|
# root = "#{Rails.root}/"
|
|
21
|
-
# bc.add_filter { |line| line.
|
|
21
|
+
# bc.add_filter { |line| line.delete_prefix(root) } # strip the Rails.root prefix
|
|
22
22
|
# bc.add_silencer { |line| /puma|rubygems/.match?(line) } # skip any lines from puma or rubygems
|
|
23
23
|
# bc.clean(exception.backtrace) # perform the cleanup
|
|
24
24
|
#
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module ActiveSupport
|
|
4
|
+
module Benchmark # :nodoc:
|
|
5
|
+
# Benchmark realtime in the specified time unit. By default,
|
|
6
|
+
# the returned unit is in seconds.
|
|
7
|
+
#
|
|
8
|
+
# ActiveSupport::Benchmark.realtime { sleep 0.1 }
|
|
9
|
+
# # => 0.10007
|
|
10
|
+
#
|
|
11
|
+
# ActiveSupport::Benchmark.realtime(:float_millisecond) { sleep 0.1 }
|
|
12
|
+
# # => 100.07
|
|
13
|
+
#
|
|
14
|
+
# `unit` can be any of the values accepted by Ruby's `Process.clock_gettime`.
|
|
15
|
+
def self.realtime(unit = :float_second, &block)
|
|
16
|
+
time_start = Process.clock_gettime(Process::CLOCK_MONOTONIC, unit)
|
|
17
|
+
yield
|
|
18
|
+
Process.clock_gettime(Process::CLOCK_MONOTONIC, unit) - time_start
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "active_support/core_ext/benchmark"
|
|
4
3
|
require "active_support/core_ext/hash/keys"
|
|
5
4
|
|
|
6
5
|
module ActiveSupport
|
|
@@ -41,7 +40,9 @@ module ActiveSupport
|
|
|
41
40
|
options[:level] ||= :info
|
|
42
41
|
|
|
43
42
|
result = nil
|
|
44
|
-
ms = Benchmark.
|
|
43
|
+
ms = ActiveSupport::Benchmark.realtime(:float_millisecond) do
|
|
44
|
+
result = options[:silence] ? logger.silence(&block) : yield
|
|
45
|
+
end
|
|
45
46
|
logger.public_send(options[:level], "%s (%.1fms)" % [ message, ms ])
|
|
46
47
|
result
|
|
47
48
|
else
|
|
@@ -58,7 +58,12 @@ module ActiveSupport
|
|
|
58
58
|
# cache.increment("baz") # => 6
|
|
59
59
|
#
|
|
60
60
|
def increment(name, amount = 1, **options)
|
|
61
|
-
|
|
61
|
+
options = merged_options(options)
|
|
62
|
+
key = normalize_key(name, options)
|
|
63
|
+
|
|
64
|
+
instrument(:increment, key, amount: amount) do
|
|
65
|
+
modify_value(name, amount, options)
|
|
66
|
+
end
|
|
62
67
|
end
|
|
63
68
|
|
|
64
69
|
# Decrement a cached integer value. Returns the updated value.
|
|
@@ -73,7 +78,12 @@ module ActiveSupport
|
|
|
73
78
|
# cache.decrement("baz") # => 4
|
|
74
79
|
#
|
|
75
80
|
def decrement(name, amount = 1, **options)
|
|
76
|
-
|
|
81
|
+
options = merged_options(options)
|
|
82
|
+
key = normalize_key(name, options)
|
|
83
|
+
|
|
84
|
+
instrument(:decrement, key, amount: amount) do
|
|
85
|
+
modify_value(name, -amount, options)
|
|
86
|
+
end
|
|
77
87
|
end
|
|
78
88
|
|
|
79
89
|
def delete_matched(matcher, options = nil)
|
|
@@ -60,7 +60,7 @@ module ActiveSupport
|
|
|
60
60
|
pool_options = retrieve_pool_options(options)
|
|
61
61
|
|
|
62
62
|
if pool_options
|
|
63
|
-
ConnectionPool.new(pool_options) { Dalli::Client.new(addresses, options.merge(threadsafe: false)) }
|
|
63
|
+
ConnectionPool.new(**pool_options) { Dalli::Client.new(addresses, options.merge(threadsafe: false)) }
|
|
64
64
|
else
|
|
65
65
|
Dalli::Client.new(addresses, options)
|
|
66
66
|
end
|
|
@@ -90,6 +90,9 @@ module ActiveSupport
|
|
|
90
90
|
# The value "compress: false" prevents duplicate compression within Dalli.
|
|
91
91
|
@mem_cache_options[:compress] = false
|
|
92
92
|
(OVERRIDDEN_OPTIONS - %i(compress)).each { |name| @mem_cache_options.delete(name) }
|
|
93
|
+
# Set the default serializer for Dalli to prevent warning about
|
|
94
|
+
# inheriting the default serializer.
|
|
95
|
+
@mem_cache_options[:serializer] = Marshal
|
|
93
96
|
@data = self.class.build_mem_cache(*(addresses + [@mem_cache_options]))
|
|
94
97
|
end
|
|
95
98
|
|
|
@@ -147,7 +147,9 @@ module ActiveSupport
|
|
|
147
147
|
# cache.increment("baz") # => 6
|
|
148
148
|
#
|
|
149
149
|
def increment(name, amount = 1, **options)
|
|
150
|
-
|
|
150
|
+
instrument(:increment, name, amount: amount) do
|
|
151
|
+
modify_value(name, amount, **options)
|
|
152
|
+
end
|
|
151
153
|
end
|
|
152
154
|
|
|
153
155
|
# Decrement a cached integer value. Returns the updated value.
|
|
@@ -162,7 +164,9 @@ module ActiveSupport
|
|
|
162
164
|
# cache.decrement("baz") # => 4
|
|
163
165
|
#
|
|
164
166
|
def decrement(name, amount = 1, **options)
|
|
165
|
-
|
|
167
|
+
instrument(:decrement, name, amount: amount) do
|
|
168
|
+
modify_value(name, -amount, **options)
|
|
169
|
+
end
|
|
166
170
|
end
|
|
167
171
|
|
|
168
172
|
# Deletes cache entries if the cache key matches a given pattern.
|
|
@@ -150,7 +150,7 @@ module ActiveSupport
|
|
|
150
150
|
universal_options = redis_options.extract!(*UNIVERSAL_OPTIONS)
|
|
151
151
|
|
|
152
152
|
if pool_options = self.class.send(:retrieve_pool_options, redis_options)
|
|
153
|
-
@redis = ::ConnectionPool.new(pool_options) { self.class.build_redis(**redis_options) }
|
|
153
|
+
@redis = ::ConnectionPool.new(**pool_options) { self.class.build_redis(**redis_options) }
|
|
154
154
|
else
|
|
155
155
|
@redis = self.class.build_redis(**redis_options)
|
|
156
156
|
end
|
|
@@ -173,9 +173,12 @@ module ActiveSupport
|
|
|
173
173
|
return {} if names.empty?
|
|
174
174
|
|
|
175
175
|
options = names.extract_options!
|
|
176
|
-
|
|
176
|
+
options = merged_options(options)
|
|
177
|
+
keys = names.map { |name| normalize_key(name, options) }
|
|
178
|
+
|
|
179
|
+
instrument_multi(:read_multi, keys, options) do |payload|
|
|
177
180
|
read_multi_entries(names, **options).tap do |results|
|
|
178
|
-
payload[:hits] = results.keys
|
|
181
|
+
payload[:hits] = results.keys.map { |name| normalize_key(name, options) }
|
|
179
182
|
end
|
|
180
183
|
end
|
|
181
184
|
end
|