actionpack 6.0.4.8 → 6.0.6

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of actionpack might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40cba0f49157393794f8a9b5322c71bc87e11462a0986d53212519fc1140cbe8
4
- data.tar.gz: a0c7f97dea9ecb2cee14ce51acdd4d39c941cfc08c19be1b4e3e1a00cafc63f1
3
+ metadata.gz: adc65f1be4c7831cd51df9afbacff4b879a9037f4a6d48c5328e102b82b84c63
4
+ data.tar.gz: 6fe44dc83b7d6182ca03f82dbca6d734a20185a145cd81e57a5a039945a75ab2
5
5
  SHA512:
6
- metadata.gz: 33fff13bf2347eacd58a37c1d5e3994796fdc86acde4dc348f2621df10fa6d68821c49845764c502f3fa9b2837967f0267ff12c32e07eb5cadc9eb7daa7c9372
7
- data.tar.gz: beaca9ff7d16bdcf706d4358944db344efe56553626bc78a696c332a451e5266b1175760e108c59a2622ac24b103379dc6c37f33301f7f91fd378d7e2e13a57a
6
+ metadata.gz: 58de07e25c0af233fb67a4198f9c0632e2d457b2f94f918b178c5e80d39a7c3ee9557d156722d26a2cdaab80eec70f1f425b4c4c7b52b2d5588b4dc30e630c1a
7
+ data.tar.gz: fffce917ea950deb5d87a516c87de021e48bf2bb2844f4b030c525519250a4dd65769482a8d08d0f699af1e1cb63ed04f37064120cea48bec4074e2bc2a74d08
data/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## Rails 6.0.6 (September 09, 2022) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 6.0.5.1 (July 12, 2022) ##
7
+
8
+ * No changes.
9
+
10
+
11
+ ## Rails 6.0.5 (May 09, 2022) ##
12
+
13
+ * No changes.
14
+
15
+
1
16
  ## Rails 6.0.4.8 (April 26, 2022) ##
2
17
 
3
18
  * Allow Content Security Policy DSL to generate for API responses.
@@ -95,6 +95,7 @@ module ActionController
95
95
  instance.set_response! controller.make_response!(request)
96
96
  instance.render_to_string(*args)
97
97
  end
98
+ alias_method :render_to_string, :render # :nodoc:
98
99
 
99
100
  private
100
101
  def normalize_keys(env)
@@ -2,6 +2,6 @@
2
2
  <h1>Blocked host: <%= @host %></h1>
3
3
  </header>
4
4
  <div id="container">
5
- <h2>To allow requests to <%= @host %>, add the following to your environment configuration:</h2>
5
+ <h2>To allow requests to <%= @host %> make sure it is a valid hostname (containing only numbers, letters, dashes and dots), then add the following to your environment configuration:</h2>
6
6
  <pre>config.hosts &lt;&lt; "<%= @host %>"</pre>
7
7
  </div>
@@ -1,5 +1,5 @@
1
1
  Blocked host: <%= @host %>
2
2
 
3
- To allow requests to <%= @host %>, add the following to your environment configuration:
3
+ To allow requests to <%= @host %> make sure it is a valid hostname (containing only numbers, letters, dashes and dots), then add the following to your environment configuration:
4
4
 
5
5
  config.hosts << "<%= @host %>"
@@ -9,8 +9,8 @@ module ActionPack
9
9
  module VERSION
10
10
  MAJOR = 6
11
11
  MINOR = 0
12
- TINY = 4
13
- PRE = "8"
12
+ TINY = 6
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: actionpack
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.4.8
4
+ version: 6.0.6
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: 2022-04-26 00:00:00.000000000 Z
11
+ date: 2022-09-09 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: 6.0.4.8
19
+ version: 6.0.6
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.4.8
26
+ version: 6.0.6
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: 6.0.4.8
101
+ version: 6.0.6
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: 6.0.4.8
108
+ version: 6.0.6
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: 6.0.4.8
115
+ version: 6.0.6
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: 6.0.4.8
122
+ version: 6.0.6
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,11 @@ 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/v6.0.4.8/actionpack/CHANGELOG.md
314
- documentation_uri: https://api.rubyonrails.org/v6.0.4.8/
313
+ changelog_uri: https://github.com/rails/rails/blob/v6.0.6/actionpack/CHANGELOG.md
314
+ documentation_uri: https://api.rubyonrails.org/v6.0.6/
315
315
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
316
- source_code_uri: https://github.com/rails/rails/tree/v6.0.4.8/actionpack
316
+ source_code_uri: https://github.com/rails/rails/tree/v6.0.6/actionpack
317
+ rubygems_mfa_required: 'true'
317
318
  post_install_message:
318
319
  rdoc_options: []
319
320
  require_paths:
@@ -330,7 +331,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
330
331
  version: '0'
331
332
  requirements:
332
333
  - none
333
- rubygems_version: 3.1.6
334
+ rubygems_version: 3.3.3
334
335
  signing_key:
335
336
  specification_version: 4
336
337
  summary: Web-flow and rendering framework putting the VC in MVC (part of Rails).