activesupport 7.2.0.rc1 → 7.2.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f87ceb32cd8ca6e8edc650d3951112271df9849a1a6d03e2637c55f33d9dcde3
|
4
|
+
data.tar.gz: 17fa74b2c99d9d3b27a28be44da050cf1363c474083bee2be7a8e2330ad4134f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 325172ee84f0822ac38da2fff3c8c078efb4cc27684e0cb22865197e62f6dbe412a41e59fb6e1b46788772e6f8381e57c5b973f322bcbd66e1cb3ec7970f4a43
|
7
|
+
data.tar.gz: ce7f3de0f2438f5df87040d5019f4d95625657072065d7f60f05eaf072db9bde8d35b6ce54eddb3f0fc1f715b75065484e2c3cc02bbae401cdbbc4d479e99c26
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
|
-
## Rails 7.2.
|
1
|
+
## Rails 7.2.1 (August 22, 2024) ##
|
2
|
+
|
3
|
+
* No changes.
|
4
|
+
|
5
|
+
|
6
|
+
## Rails 7.2.0 (August 09, 2024) ##
|
2
7
|
|
3
8
|
* Fix `delegate_missing_to allow_nil: true` when called with implict self
|
4
9
|
|
@@ -21,20 +26,14 @@
|
|
21
26
|
|
22
27
|
*Jean Boussier*
|
23
28
|
|
24
|
-
## Rails 7.2.0.beta3 (July 11, 2024) ##
|
25
|
-
|
26
29
|
* Add `logger` as a dependency since it is a bundled gem candidate for Ruby 3.5
|
27
30
|
|
28
31
|
*Earlopain*
|
29
32
|
|
30
|
-
## Rails 7.2.0.beta2 (June 04, 2024) ##
|
31
|
-
|
32
33
|
* Define `Digest::UUID.nil_uuid`, which returns the so-called nil UUID.
|
33
34
|
|
34
35
|
*Xavier Noria*
|
35
36
|
|
36
|
-
## Rails 7.2.0.beta1 (May 29, 2024) ##
|
37
|
-
|
38
37
|
* Support `duration` type in `ActiveSupport::XmlMini`.
|
39
38
|
|
40
39
|
*heka1024*
|
@@ -36,8 +36,8 @@ module ActiveSupport
|
|
36
36
|
# event.allocations # => 1826 (objects)
|
37
37
|
# end
|
38
38
|
#
|
39
|
-
#
|
40
|
-
#
|
39
|
+
# +Event+ objects record CPU time and allocations. If you don't need this
|
40
|
+
# it's also possible to pass a block that accepts five arguments:
|
41
41
|
#
|
42
42
|
# ActiveSupport::Notifications.subscribe('render') do |name, start, finish, id, payload|
|
43
43
|
# name # => String, name of the event (such as 'render' from above)
|
@@ -67,6 +67,7 @@ module ActiveSupport
|
|
67
67
|
|
68
68
|
# Adds event subscribers for all new methods added to the class.
|
69
69
|
def method_added(event)
|
70
|
+
super
|
70
71
|
# Only public methods are added as subscribers, and only if a notifier
|
71
72
|
# has been set up. This means that subscribers will only be set up for
|
72
73
|
# classes that call #attach_to.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activesupport
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.2.
|
4
|
+
version: 7.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: i18n
|
@@ -466,10 +466,10 @@ licenses:
|
|
466
466
|
- MIT
|
467
467
|
metadata:
|
468
468
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
469
|
-
changelog_uri: https://github.com/rails/rails/blob/v7.2.
|
470
|
-
documentation_uri: https://api.rubyonrails.org/v7.2.
|
469
|
+
changelog_uri: https://github.com/rails/rails/blob/v7.2.1/activesupport/CHANGELOG.md
|
470
|
+
documentation_uri: https://api.rubyonrails.org/v7.2.1/
|
471
471
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
472
|
-
source_code_uri: https://github.com/rails/rails/tree/v7.2.
|
472
|
+
source_code_uri: https://github.com/rails/rails/tree/v7.2.1/activesupport
|
473
473
|
rubygems_mfa_required: 'true'
|
474
474
|
post_install_message:
|
475
475
|
rdoc_options:
|