actionpack 7.0.8 → 7.0.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 554db7a8936fc5a1d81baf26f67a4d031f2e7b3c01022695ae842c4a06aa3085
4
- data.tar.gz: ceb0aad8f1a9abb47bf6bdc79740dc772cbbbd5d06513f9b19e3dae9d77f1c3b
3
+ metadata.gz: 9c187c6dc06f7cfe2c9eb4fce7787e7f0f8a0f2ecbed6e3f58937b60d641239c
4
+ data.tar.gz: f8f4e0b1e8f19bf48fd714ac2f15ce18b4fb0c72ff25472c25dc7881579a798a
5
5
  SHA512:
6
- metadata.gz: d6a7fcc80e5f12c8eac3ba474094cf9087049389793f2953e49d25b3519637329bf8ab440e2af2c8427acbf79d1b6e67204e1e907cc8d9ce3bc7ab9ff65e5e89
7
- data.tar.gz: dfed11835f0aa991c57841aba4ae0a1def553bf086de35bc86db01f2b4424cb9d29823fff6f07ad2fabcc7cc15d752cf7c8b488cf4bf48300ca338e56c8abe2c
6
+ metadata.gz: e77d65ccbb57cfa58561d235e6d02704fe7bdb7b977f9e229e1f1149e6b3464e37238e2e8485e345bc77f79487b0e383bff81758afdd315370f4ac750957e93b
7
+ data.tar.gz: c00d8015d6861e927b9d887af3001762940d61ebd9268efda856efe92b3e483d047d9b6ea144096d4c7ae3de229dfb69341ad170a281f1014058a623e75d9f9e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## Rails 7.0.8.1 (February 21, 2024) ##
2
+
3
+ * Fix possible XSS vulnerability with the `translate` method in controllers
4
+
5
+ CVE-2024-26143
6
+
1
7
  ## Rails 7.0.8 (September 09, 2023) ##
2
8
 
3
9
  * Fix `HostAuthorization` potentially displaying the value of the
@@ -25,7 +25,25 @@ module AbstractController
25
25
 
26
26
  i18n_raise = options.fetch(:raise, self.raise_on_missing_translations)
27
27
 
28
- ActiveSupport::HtmlSafeTranslation.translate(key, **options, raise: i18n_raise)
28
+ if options[:default]
29
+ options[:default] = [options[:default]] unless options[:default].is_a?(Array)
30
+ options[:default] = options[:default].map do |value|
31
+ value.is_a?(String) ? ERB::Util.html_escape(value) : value
32
+ end
33
+ end
34
+
35
+ unless i18n_raise
36
+ options[:default] = [] unless options[:default]
37
+ options[:default] << MISSING_TRANSLATION
38
+ end
39
+
40
+ result = ActiveSupport::HtmlSafeTranslation.translate(key, **options, raise: i18n_raise)
41
+
42
+ if result == MISSING_TRANSLATION
43
+ +"translation missing: #{key}"
44
+ else
45
+ result
46
+ end
29
47
  end
30
48
  alias :t :translate
31
49
 
@@ -34,5 +52,9 @@ module AbstractController
34
52
  I18n.localize(object, **options)
35
53
  end
36
54
  alias :l :localize
55
+
56
+ private
57
+ MISSING_TRANSLATION = -(2**60)
58
+ private_constant :MISSING_TRANSLATION
37
59
  end
38
60
  end
@@ -10,7 +10,7 @@ module ActionPack
10
10
  MAJOR = 7
11
11
  MINOR = 0
12
12
  TINY = 8
13
- PRE = nil
13
+ PRE = "1"
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: actionpack
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.8
4
+ version: 7.0.8.1
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-09-09 00:00:00.000000000 Z
11
+ date: 2024-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 7.0.8
19
+ version: 7.0.8.1
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: 7.0.8
26
+ version: 7.0.8.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rack
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -98,28 +98,28 @@ dependencies:
98
98
  requirements:
99
99
  - - '='
100
100
  - !ruby/object:Gem::Version
101
- version: 7.0.8
101
+ version: 7.0.8.1
102
102
  type: :runtime
103
103
  prerelease: false
104
104
  version_requirements: !ruby/object:Gem::Requirement
105
105
  requirements:
106
106
  - - '='
107
107
  - !ruby/object:Gem::Version
108
- version: 7.0.8
108
+ version: 7.0.8.1
109
109
  - !ruby/object:Gem::Dependency
110
110
  name: activemodel
111
111
  requirement: !ruby/object:Gem::Requirement
112
112
  requirements:
113
113
  - - '='
114
114
  - !ruby/object:Gem::Version
115
- version: 7.0.8
115
+ version: 7.0.8.1
116
116
  type: :development
117
117
  prerelease: false
118
118
  version_requirements: !ruby/object:Gem::Requirement
119
119
  requirements:
120
120
  - - '='
121
121
  - !ruby/object:Gem::Version
122
- version: 7.0.8
122
+ version: 7.0.8.1
123
123
  description: Web apps on Rails. Simple, battle-tested conventions for building and
124
124
  testing MVC web applications. Works with any Rack-compatible server.
125
125
  email: david@loudthinking.com
@@ -310,10 +310,10 @@ licenses:
310
310
  - MIT
311
311
  metadata:
312
312
  bug_tracker_uri: https://github.com/rails/rails/issues
313
- changelog_uri: https://github.com/rails/rails/blob/v7.0.8/actionpack/CHANGELOG.md
314
- documentation_uri: https://api.rubyonrails.org/v7.0.8/
313
+ changelog_uri: https://github.com/rails/rails/blob/v7.0.8.1/actionpack/CHANGELOG.md
314
+ documentation_uri: https://api.rubyonrails.org/v7.0.8.1/
315
315
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
316
- source_code_uri: https://github.com/rails/rails/tree/v7.0.8/actionpack
316
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.8.1/actionpack
317
317
  rubygems_mfa_required: 'true'
318
318
  post_install_message:
319
319
  rdoc_options: []
@@ -331,7 +331,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
331
331
  version: '0'
332
332
  requirements:
333
333
  - none
334
- rubygems_version: 3.4.18
334
+ rubygems_version: 3.2.22
335
335
  signing_key:
336
336
  specification_version: 4
337
337
  summary: Web-flow and rendering framework putting the VC in MVC (part of Rails).