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: 2aaa473f08555b8cff31f1badf96b6db12166e0d598ce8b686ed9eb47c25ff16
4
- data.tar.gz: f184db8c521f40286828664b6aadf74823179b793a4f02edb447e181810a71f9
3
+ metadata.gz: f87ceb32cd8ca6e8edc650d3951112271df9849a1a6d03e2637c55f33d9dcde3
4
+ data.tar.gz: 17fa74b2c99d9d3b27a28be44da050cf1363c474083bee2be7a8e2330ad4134f
5
5
  SHA512:
6
- metadata.gz: fcd73b0e3c374fd484e6cf12240ce61910b889ebfcf8715db0307f30db54778aa9cbf309411a4246b1c092ea41935f8c3c93f5b597b36375441f9ecf9d497efc
7
- data.tar.gz: 6206ed420d950a2051a7c60a3c98b30813f6fd85c1a63c85f2cd4432b8a8bed9473ee85468f0ebe580f3ec4d4aae08a4cee6dde571ba04638735ca604af9f5f4
6
+ metadata.gz: 325172ee84f0822ac38da2fff3c8c078efb4cc27684e0cb22865197e62f6dbe412a41e59fb6e1b46788772e6f8381e57c5b973f322bcbd66e1cb3ec7970f4a43
7
+ data.tar.gz: ce7f3de0f2438f5df87040d5019f4d95625657072065d7f60f05eaf072db9bde8d35b6ce54eddb3f0fc1f715b75065484e2c3cc02bbae401cdbbc4d479e99c26
data/CHANGELOG.md CHANGED
@@ -1,4 +1,9 @@
1
- ## Rails 7.2.0.rc1 (August 06, 2024) ##
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*
@@ -182,6 +182,7 @@ module ActiveSupport
182
182
  end
183
183
 
184
184
  def method_added(name)
185
+ super
185
186
  return if name == :initialize
186
187
  return unless public_method_defined?(name)
187
188
  return if respond_to?(name, true)
@@ -9,8 +9,8 @@ module ActiveSupport
9
9
  module VERSION
10
10
  MAJOR = 7
11
11
  MINOR = 2
12
- TINY = 0
13
- PRE = "rc1"
12
+ TINY = 1
13
+ PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
@@ -36,8 +36,8 @@ module ActiveSupport
36
36
  # event.allocations # => 1826 (objects)
37
37
  # end
38
38
  #
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:
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.0.rc1
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-06 00:00:00.000000000 Z
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.0.rc1/activesupport/CHANGELOG.md
470
- documentation_uri: https://api.rubyonrails.org/v7.2.0.rc1/
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.0.rc1/activesupport
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: