activesupport 5.2.6.3 → 5.2.7

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: de63689571cee536af682ffa50028fb7980473140c9216ea35c710a5d4998449
4
- data.tar.gz: 44465b369dc70863ad16cd00e0f650dec8b43070d2063dc7ab8724451e7eb4ca
3
+ metadata.gz: 9ca8c97dbd9b8c0060fa8fdc9fe0a265e52dade43f834a64d81be63a58631d52
4
+ data.tar.gz: 718c11ac32f5ede2cf74701c236afae41cd9ad50d8eb3d138594c869cb543462
5
5
  SHA512:
6
- metadata.gz: d05c00cbcb3e1aa6c58793e7a0563610fc5aa3192781aa63b98276da25287e9dbb68e306710b710f47e3f4815e69ff30a9e2b68577fb260e269eb72db23adbd2
7
- data.tar.gz: 390086122fdcc5400d41ad06333dfee88771b80a9ce9f77b3a20d38badd0f728b6281c5ecb53398fb23aec6d0a9bdea745d0f962c5c06ab42c2cb1466aee8c0a
6
+ metadata.gz: 9390ba51ca2fec524ab28bf67f75ec75ef44c6599311c16c09b14a9a29cfe4d71732bd0a5fd31bea4b8d6e5bc5bfd5c12c06101aee7cc4f7cae3d203de9bb7a7
7
+ data.tar.gz: 39569f88617d0c8bcae4f85b461ce38f355533d1eb9484848a3c38ceb553e365adf8b2a34788d4705b6ae7fd75ee315262b3f889dae919a9bbd28238f56732aa
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## Rails 5.2.7 (March 10, 2022) ##
2
+
3
+ * Restore support to Ruby 2.2.
4
+
5
+ *ojab*
6
+
7
+
1
8
  ## Rails 5.2.6.3 (March 08, 2022) ##
2
9
 
3
10
  * No changes.
@@ -65,7 +65,7 @@ module ActiveSupport
65
65
  def self.run!(reset: false)
66
66
  if reset
67
67
  lost_instance = active.delete(Thread.current)
68
- lost_instance&.complete!
68
+ lost_instance.complete! unless lost_instance.nil?
69
69
  else
70
70
  return Null if active?
71
71
  end
@@ -9,8 +9,8 @@ module ActiveSupport
9
9
  module VERSION
10
10
  MAJOR = 5
11
11
  MINOR = 2
12
- TINY = 6
13
- PRE = "3"
12
+ TINY = 7
13
+ PRE = nil
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: 5.2.6.3
4
+ version: 5.2.7
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: 2022-03-08 00:00:00.000000000 Z
11
+ date: 2022-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: i18n
@@ -333,9 +333,9 @@ homepage: http://rubyonrails.org
333
333
  licenses:
334
334
  - MIT
335
335
  metadata:
336
- source_code_uri: https://github.com/rails/rails/tree/v5.2.6.3/activesupport
337
- changelog_uri: https://github.com/rails/rails/blob/v5.2.6.3/activesupport/CHANGELOG.md
338
- post_install_message:
336
+ source_code_uri: https://github.com/rails/rails/tree/v5.2.7/activesupport
337
+ changelog_uri: https://github.com/rails/rails/blob/v5.2.7/activesupport/CHANGELOG.md
338
+ post_install_message:
339
339
  rdoc_options:
340
340
  - "--encoding"
341
341
  - UTF-8
@@ -353,7 +353,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
353
353
  version: '0'
354
354
  requirements: []
355
355
  rubygems_version: 3.1.6
356
- signing_key:
356
+ signing_key:
357
357
  specification_version: 4
358
358
  summary: A toolkit of support libraries and Ruby core extensions extracted from the
359
359
  Rails framework.