activesupport 7.0.4.1 → 7.0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/active_support/core_ext/string/output_safety.rb +4 -0
- data/lib/active_support/gem_version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af711c41eae644a4fba03556039ec8d30337836525e57b896af3fa895bd5826f
|
|
4
|
+
data.tar.gz: 7c4eb0e42e2aaa1ba161eedd7657cdd8a458adfb456ac3df242a72dceceecc5c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f255bc83f2f93d1743014853471a053798dbad3e8162551a0c0593eb5c5ea8abef362abf37de6c298985e9413c32b5ad02294a84dad063da8c150f8ce34d3051
|
|
7
|
+
data.tar.gz: 39f1750b28dc755ead136f17a4b999b9d6e46a5bdf8b733ded897c6ec163f49b8651df20682b6568aa7bd8bf82c127aa5b00fc354ca80a82ba72c642caa25dd2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## Rails 7.0.4.3 (March 13, 2023) ##
|
|
2
|
+
|
|
3
|
+
* Implement SafeBuffer#bytesplice
|
|
4
|
+
|
|
5
|
+
[CVE-2023-28120]
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Rails 7.0.4.2 (January 24, 2023) ##
|
|
9
|
+
|
|
10
|
+
* No changes.
|
|
11
|
+
|
|
12
|
+
|
|
1
13
|
## Rails 7.0.4.1 (January 17, 2023) ##
|
|
2
14
|
|
|
3
15
|
* Avoid regex backtracking in Inflector.underscore
|
|
@@ -219,6 +219,10 @@ module ActiveSupport # :nodoc:
|
|
|
219
219
|
end
|
|
220
220
|
alias << concat
|
|
221
221
|
|
|
222
|
+
def bytesplice(*args, value)
|
|
223
|
+
super(*args, implicit_html_escape_interpolated_argument(value))
|
|
224
|
+
end
|
|
225
|
+
|
|
222
226
|
def insert(index, value)
|
|
223
227
|
super(index, implicit_html_escape_interpolated_argument(value))
|
|
224
228
|
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: 7.0.4.
|
|
4
|
+
version: 7.0.4.3
|
|
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: 2023-
|
|
11
|
+
date: 2023-03-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: i18n
|
|
@@ -359,10 +359,10 @@ licenses:
|
|
|
359
359
|
- MIT
|
|
360
360
|
metadata:
|
|
361
361
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
|
362
|
-
changelog_uri: https://github.com/rails/rails/blob/v7.0.4.
|
|
363
|
-
documentation_uri: https://api.rubyonrails.org/v7.0.4.
|
|
362
|
+
changelog_uri: https://github.com/rails/rails/blob/v7.0.4.3/activesupport/CHANGELOG.md
|
|
363
|
+
documentation_uri: https://api.rubyonrails.org/v7.0.4.3/
|
|
364
364
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
|
365
|
-
source_code_uri: https://github.com/rails/rails/tree/v7.0.4.
|
|
365
|
+
source_code_uri: https://github.com/rails/rails/tree/v7.0.4.3/activesupport
|
|
366
366
|
rubygems_mfa_required: 'true'
|
|
367
367
|
post_install_message:
|
|
368
368
|
rdoc_options:
|