activerecord 6.0.3.2 → 6.0.3.7
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bcd8faaaae67978bbcad0411b20e03f1ea5c805fd21333b9d6e0567a5474012e
|
4
|
+
data.tar.gz: 6badedd47d9d3fc5c9e0540a061083f8c5a120915de769a845d64582ba360820
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 203838df8b2326e8f95ce6c37b444d5af091e76a05c81065d466b599b806a38d706ffc47f04614037795810cdc66869bf2e04782f2f115694ed2f2cc2bbc4cd8
|
7
|
+
data.tar.gz: 1e413a33bf013b594a877c785ac79338b4060f4c18a4d2d361e37a2d5b138d1c77ca2c5c98d9495676c8e561529b8d56ce620eec99d7c4c88924a1eb49388318
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,38 @@
|
|
1
|
+
## Rails 6.0.3.7 (May 05, 2021) ##
|
2
|
+
|
3
|
+
* No changes.
|
4
|
+
|
5
|
+
|
6
|
+
## Rails 6.0.3.6 (March 26, 2021) ##
|
7
|
+
|
8
|
+
* No changes.
|
9
|
+
|
10
|
+
|
11
|
+
## Rails 6.0.3.5 (February 10, 2021) ##
|
12
|
+
|
13
|
+
* Fix possible DoS vector in PostgreSQL money type
|
14
|
+
|
15
|
+
Carefully crafted input can cause a DoS via the regular expressions used
|
16
|
+
for validating the money format in the PostgreSQL adapter. This patch
|
17
|
+
fixes the regexp.
|
18
|
+
|
19
|
+
Thanks to @dee-see from Hackerone for this patch!
|
20
|
+
|
21
|
+
[CVE-2021-22880]
|
22
|
+
|
23
|
+
*Aaron Patterson*
|
24
|
+
|
25
|
+
|
26
|
+
## Rails 6.0.3.4 (October 07, 2020) ##
|
27
|
+
|
28
|
+
* No changes.
|
29
|
+
|
30
|
+
|
31
|
+
## Rails 6.0.3.3 (September 09, 2020) ##
|
32
|
+
|
33
|
+
* No changes.
|
34
|
+
|
35
|
+
|
1
36
|
## Rails 6.0.3.2 (June 17, 2020) ##
|
2
37
|
|
3
38
|
* No changes.
|
@@ -26,9 +26,9 @@ module ActiveRecord
|
|
26
26
|
|
27
27
|
value = value.sub(/^\((.+)\)$/, '-\1') # (4)
|
28
28
|
case value
|
29
|
-
when /^-?\D
|
29
|
+
when /^-?\D*+[\d,]+\.\d{2}$/ # (1)
|
30
30
|
value.gsub!(/[^-\d.]/, "")
|
31
|
-
when /^-?\D
|
31
|
+
when /^-?\D*+[\d.]+,\d{2}$/ # (2)
|
32
32
|
value.gsub!(/[^-\d,]/, "").sub!(/,/, ".")
|
33
33
|
end
|
34
34
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.3.
|
4
|
+
version: 6.0.3.7
|
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:
|
11
|
+
date: 2021-05-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 6.0.3.
|
19
|
+
version: 6.0.3.7
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 6.0.3.
|
26
|
+
version: 6.0.3.7
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: activemodel
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 6.0.3.
|
33
|
+
version: 6.0.3.7
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 6.0.3.
|
40
|
+
version: 6.0.3.7
|
41
41
|
description: Databases on Rails. Build a persistent domain model by mapping database
|
42
42
|
tables to Ruby classes. Strong conventions for associations, validations, aggregations,
|
43
43
|
migrations, and testing come baked-in.
|
@@ -391,10 +391,10 @@ licenses:
|
|
391
391
|
- MIT
|
392
392
|
metadata:
|
393
393
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
394
|
-
changelog_uri: https://github.com/rails/rails/blob/v6.0.3.
|
395
|
-
documentation_uri: https://api.rubyonrails.org/v6.0.3.
|
394
|
+
changelog_uri: https://github.com/rails/rails/blob/v6.0.3.7/activerecord/CHANGELOG.md
|
395
|
+
documentation_uri: https://api.rubyonrails.org/v6.0.3.7/
|
396
396
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
397
|
-
source_code_uri: https://github.com/rails/rails/tree/v6.0.3.
|
397
|
+
source_code_uri: https://github.com/rails/rails/tree/v6.0.3.7/activerecord
|
398
398
|
post_install_message:
|
399
399
|
rdoc_options:
|
400
400
|
- "--main"
|