activesupport 6.1.0.rc2 → 6.1.0
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 +4 -4
- data/CHANGELOG.md +1 -3
- data/lib/active_support/gem_version.rb +1 -1
- data/lib/active_support/hash_with_indifferent_access.rb +8 -2
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89f141c86a0ef71902f1230ba93a5f91793d87815800871ec2ea1c71a2ad8d2a
|
4
|
+
data.tar.gz: d3e98c9579e71177d76562012bdc4480311b828bb95787478cc968e8efe93bb9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ffc37bacd14d2786f7c5cf287040c1e8a5e39a362badf48f85edd8dd6067dbaa4a69252d21900ea91e34f66c69f6c03817f211c30891b9e8a0d0ee4cf7e36290
|
7
|
+
data.tar.gz: 68172692e1dc857e587dbc2a2351b61d26e1957185bf74791109ffcf6b20ac3561884d5bc00b8f5a1a62430bd3fb57195c73d6ed7486d1b7c3b61b58bcf3e92a
|
data/CHANGELOG.md
CHANGED
@@ -1,12 +1,10 @@
|
|
1
|
-
## Rails 6.1.0
|
1
|
+
## Rails 6.1.0 (December 09, 2020) ##
|
2
2
|
|
3
3
|
* Ensure `MemoryStore` disables compression by default. Reverts behavior of
|
4
4
|
`MemoryStore` to its prior rails `5.1` behavior.
|
5
5
|
|
6
6
|
*Max Gurewitz*
|
7
7
|
|
8
|
-
## Rails 6.1.0.rc1 (November 02, 2020) ##
|
9
|
-
|
10
8
|
* Calling `iso8601` on negative durations retains the negative sign on individual
|
11
9
|
digits instead of prepending it.
|
12
10
|
|
@@ -363,8 +363,14 @@ module ActiveSupport
|
|
363
363
|
end
|
364
364
|
|
365
365
|
private
|
366
|
-
|
367
|
-
key
|
366
|
+
if Symbol.method_defined?(:name)
|
367
|
+
def convert_key(key)
|
368
|
+
key.kind_of?(Symbol) ? key.name : key
|
369
|
+
end
|
370
|
+
else
|
371
|
+
def convert_key(key)
|
372
|
+
key.kind_of?(Symbol) ? key.to_s : key
|
373
|
+
end
|
368
374
|
end
|
369
375
|
|
370
376
|
def convert_value(value, conversion: nil)
|
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.0
|
4
|
+
version: 6.1.0
|
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: 2020-12-
|
11
|
+
date: 2020-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: i18n
|
@@ -357,10 +357,10 @@ 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.0
|
361
|
-
documentation_uri: https://api.rubyonrails.org/v6.1.0
|
360
|
+
changelog_uri: https://github.com/rails/rails/blob/v6.1.0/activesupport/CHANGELOG.md
|
361
|
+
documentation_uri: https://api.rubyonrails.org/v6.1.0/
|
362
362
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
363
|
-
source_code_uri: https://github.com/rails/rails/tree/v6.1.0
|
363
|
+
source_code_uri: https://github.com/rails/rails/tree/v6.1.0/activesupport
|
364
364
|
post_install_message:
|
365
365
|
rdoc_options:
|
366
366
|
- "--encoding"
|
@@ -374,9 +374,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
374
374
|
version: 2.5.0
|
375
375
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
376
376
|
requirements:
|
377
|
-
- - "
|
377
|
+
- - ">="
|
378
378
|
- !ruby/object:Gem::Version
|
379
|
-
version:
|
379
|
+
version: '0'
|
380
380
|
requirements: []
|
381
381
|
rubygems_version: 3.1.4
|
382
382
|
signing_key:
|