activesupport 7.2.0 → 7.2.1.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: 595b3a2882b5800f2e0660b8a23b420cf1e8341d3267ca345de62713d26896c8
4
- data.tar.gz: 74c1f8bc7333e29619f42ea6f3a35c48325b8635d6909e1c830ed40abd50d8ee
3
+ metadata.gz: 1c7d2490f252aca0df84dcd79067dcb858f839ee95c8e90a73c8257fadacef28
4
+ data.tar.gz: d12b2cfa53f8f915665c7e78d1212568e9526bb43bc2f693ad0ae424ca6f626f
5
5
  SHA512:
6
- metadata.gz: 1a3b026e74330927df7149a237edcca9dacec9a90463fe38f06ee4e6ca12837b109b0be17f608fdb706b323743722f4e2c48534dd3324beec308b9c05bdcea98
7
- data.tar.gz: fc4ebffa83a4ca40f1e524cadd4d0aaf0348139f254d9e332cccf3074df25dfd3a3cacafcc80be32154d2cf373632d16d47d67fc4c062e83580022500c104f49
6
+ metadata.gz: 3a9feae253c0cbfe426a9e295ba117fc0b6f916fb76b1108a338f44f7e9d5ced8eded68872b85756dd6cf9d70fe6168a75aa6f52dbe5b1ff6690139444983b00
7
+ data.tar.gz: f909676a63b301be9fd439512cb7b9a23408b024e2694b896dffda1d8c2ca1626ee1dc3aff5477ea0e04c4c7f115f98a2143d1eddd635914a5a0d241258e0c3b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## Rails 7.2.1.1 (October 15, 2024) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 7.2.1 (August 22, 2024) ##
7
+
8
+ * No changes.
9
+
10
+
1
11
  ## Rails 7.2.0 (August 09, 2024) ##
2
12
 
3
13
  * Fix `delegate_missing_to allow_nil: true` when called with implict self
@@ -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 = nil
12
+ TINY = 1
13
+ PRE = "1"
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
4
+ version: 7.2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-09 00:00:00.000000000 Z
11
+ date: 2024-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: i18n
@@ -466,12 +466,12 @@ 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/activesupport/CHANGELOG.md
470
- documentation_uri: https://api.rubyonrails.org/v7.2.0/
469
+ changelog_uri: https://github.com/rails/rails/blob/v7.2.1.1/activesupport/CHANGELOG.md
470
+ documentation_uri: https://api.rubyonrails.org/v7.2.1.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/activesupport
472
+ source_code_uri: https://github.com/rails/rails/tree/v7.2.1.1/activesupport
473
473
  rubygems_mfa_required: 'true'
474
- post_install_message:
474
+ post_install_message:
475
475
  rdoc_options:
476
476
  - "--encoding"
477
477
  - UTF-8
@@ -488,8 +488,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
488
488
  - !ruby/object:Gem::Version
489
489
  version: '0'
490
490
  requirements: []
491
- rubygems_version: 3.5.11
492
- signing_key:
491
+ rubygems_version: 3.5.16
492
+ signing_key:
493
493
  specification_version: 4
494
494
  summary: A toolkit of support libraries and Ruby core extensions extracted from the
495
495
  Rails framework.