activesupport 6.1.4.4 → 6.1.4.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activesupport might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1ec1e3cca9d61111ff604b7639f716d337c41fafa59d810e0e29af9274460bd4
4
- data.tar.gz: 509ae88f48b93a55ded50a1fe567ee6516e63596c895c3d19e50e3862e235b0a
3
+ metadata.gz: 71840024cc13fe7e39ff7d5323da30ad29cb83fcec4d3bf4f79f3e2782b401dc
4
+ data.tar.gz: 449fbbcb1c5c3099bf6c8ff600c58bc7cee78670f5b427e3f28431c3a04758ea
5
5
  SHA512:
6
- metadata.gz: 262264f05e68b7d5d7faf62decb52a5aa7548e194ef490c245316bc4e911236d0bc50e46b66bda0a95c3e33a15976922f183dbb73630237a7d6f83bdcf07f0fe
7
- data.tar.gz: b6f62d421506b1d29bb79ecde59e5de474a034f73cfd256cce30290873633e2bed6cb8f4fa0a19fe24c471f78896f4a3afa62f277fa21f23ba684afc9d7b4139
6
+ metadata.gz: bf509f5f355a6dd10ce11857ba63f3b7edeef65598b571ccb88b1448c5450936d5a24baca354dfc77711cef0a643487573c4ae7b9c4a807bd168863d4e7992f9
7
+ data.tar.gz: a62b117f1412774891724bd569bb55d38d78a34296b987bf694f841c0e35bf1f97d04b5bbcae81c6b5a00f89c5f6e7fe268e9bae15f682218905ce51b08eb97d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## Rails 6.1.4.5 (February 11, 2022) ##
2
+
3
+ * No changes.
4
+
5
+
1
6
  ## Rails 6.1.4.4 (December 15, 2021) ##
2
7
 
3
8
  * No changes.
@@ -63,18 +63,21 @@ module ActiveSupport
63
63
  # after the work has been performed.
64
64
  #
65
65
  # Where possible, prefer +wrap+.
66
- def self.run!
67
- if active?
68
- Null
66
+ def self.run!(reset: false)
67
+ if reset
68
+ lost_instance = active.delete(Thread.current)
69
+ lost_instance&.complete!
69
70
  else
70
- new.tap do |instance|
71
- success = nil
72
- begin
73
- instance.run!
74
- success = true
75
- ensure
76
- instance.complete! unless success
77
- end
71
+ return Null if active?
72
+ end
73
+
74
+ new.tap do |instance|
75
+ success = nil
76
+ begin
77
+ instance.run!
78
+ success = true
79
+ ensure
80
+ instance.complete! unless success
78
81
  end
79
82
  end
80
83
  end
@@ -103,11 +106,11 @@ module ActiveSupport
103
106
  self.active = Concurrent::Hash.new
104
107
 
105
108
  def self.active? # :nodoc:
106
- @active[Thread.current]
109
+ @active.key?(Thread.current)
107
110
  end
108
111
 
109
112
  def run! # :nodoc:
110
- self.class.active[Thread.current] = true
113
+ self.class.active[Thread.current] = self
111
114
  run_callbacks(:run)
112
115
  end
113
116
 
@@ -10,7 +10,7 @@ module ActiveSupport
10
10
  MAJOR = 6
11
11
  MINOR = 1
12
12
  TINY = 4
13
- PRE = "4"
13
+ PRE = "5"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
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: 6.1.4.4
4
+ version: 6.1.4.5
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: 2021-12-15 00:00:00.000000000 Z
11
+ date: 2022-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: i18n
@@ -357,11 +357,11 @@ licenses:
357
357
  - MIT
358
358
  metadata:
359
359
  bug_tracker_uri: https://github.com/rails/rails/issues
360
- changelog_uri: https://github.com/rails/rails/blob/v6.1.4.4/activesupport/CHANGELOG.md
361
- documentation_uri: https://api.rubyonrails.org/v6.1.4.4/
360
+ changelog_uri: https://github.com/rails/rails/blob/v6.1.4.5/activesupport/CHANGELOG.md
361
+ documentation_uri: https://api.rubyonrails.org/v6.1.4.5/
362
362
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
363
- source_code_uri: https://github.com/rails/rails/tree/v6.1.4.4/activesupport
364
- post_install_message:
363
+ source_code_uri: https://github.com/rails/rails/tree/v6.1.4.5/activesupport
364
+ post_install_message:
365
365
  rdoc_options:
366
366
  - "--encoding"
367
367
  - UTF-8
@@ -378,8 +378,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
378
378
  - !ruby/object:Gem::Version
379
379
  version: '0'
380
380
  requirements: []
381
- rubygems_version: 3.2.32
382
- signing_key:
381
+ rubygems_version: 3.2.22
382
+ signing_key:
383
383
  specification_version: 4
384
384
  summary: A toolkit of support libraries and Ruby core extensions extracted from the
385
385
  Rails framework.