railties 7.0.0.alpha1 → 7.0.0.alpha2
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 +6 -0
- data/lib/rails/application/bootstrap.rb +1 -1
- data/lib/rails/application/default_middleware_stack.rb +1 -1
- data/lib/rails/gem_version.rb +1 -1
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b8e0ad6e3f3a0fb64531451d78166c6cede2e31642aa4322dba9b5b51440581f
|
|
4
|
+
data.tar.gz: ff60ae45c8d2b5a202467bdf7ac92d94777ebf4d4affc828f6ed298c5c500174
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8986eb318c513e4aa6d31bec6c07d79b00eea61f6d086075a9aacbc1962f5127879c66243ed3536afa9303c6814b02cbdddb5b2f138c5365c0bba1443d59e185
|
|
7
|
+
data.tar.gz: 81c23544a3a77276b33eef9a41b2f8404adefc98988f0527d60f02b1e8638e8d5eec4b86c3de594aaf76f96679d1e2efc18ad38a4f8a0fa1d08b037014f81e68
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## Rails 7.0.0.alpha2 (September 15, 2021) ##
|
|
2
|
+
|
|
3
|
+
* Fix activestorage dependency in the npm package.
|
|
4
|
+
|
|
5
|
+
*Rafael Mendonça França*
|
|
6
|
+
|
|
1
7
|
## Rails 7.0.0.alpha1 (September 15, 2021) ##
|
|
2
8
|
|
|
3
9
|
* New and upgraded Rails apps no longer generate `config/initializers/application_controller_renderer.rb`
|
|
@@ -59,7 +59,7 @@ module Rails
|
|
|
59
59
|
Rails.cache = ActiveSupport::Cache.lookup_store(*config.cache_store)
|
|
60
60
|
|
|
61
61
|
if Rails.cache.respond_to?(:middleware)
|
|
62
|
-
config.middleware.
|
|
62
|
+
config.middleware.insert_before(::Rack::Runtime, Rails.cache.middleware)
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
end
|
|
@@ -42,7 +42,7 @@ module Rails
|
|
|
42
42
|
|
|
43
43
|
middleware.use ::ActionDispatch::Executor, app.executor
|
|
44
44
|
|
|
45
|
-
middleware.use ::
|
|
45
|
+
middleware.use ::Rack::Runtime
|
|
46
46
|
middleware.use ::Rack::MethodOverride unless config.api_only
|
|
47
47
|
middleware.use ::ActionDispatch::RequestId, header: config.action_dispatch.request_id_header
|
|
48
48
|
middleware.use ::ActionDispatch::RemoteIp, config.action_dispatch.ip_spoofing_check, config.action_dispatch.trusted_proxies
|
data/lib/rails/gem_version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: railties
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.0.0.
|
|
4
|
+
version: 7.0.0.alpha2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
@@ -16,28 +16,28 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 7.0.0.
|
|
19
|
+
version: 7.0.0.alpha2
|
|
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.0.
|
|
26
|
+
version: 7.0.0.alpha2
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: actionpack
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 7.0.0.
|
|
33
|
+
version: 7.0.0.alpha2
|
|
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: 7.0.0.
|
|
40
|
+
version: 7.0.0.alpha2
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rake
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -100,14 +100,14 @@ dependencies:
|
|
|
100
100
|
requirements:
|
|
101
101
|
- - '='
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: 7.0.0.
|
|
103
|
+
version: 7.0.0.alpha2
|
|
104
104
|
type: :development
|
|
105
105
|
prerelease: false
|
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
107
|
requirements:
|
|
108
108
|
- - '='
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
|
-
version: 7.0.0.
|
|
110
|
+
version: 7.0.0.alpha2
|
|
111
111
|
description: 'Rails internals: application bootup, plugins, generators, and rake tasks.'
|
|
112
112
|
email: david@loudthinking.com
|
|
113
113
|
executables:
|
|
@@ -425,10 +425,10 @@ licenses:
|
|
|
425
425
|
- MIT
|
|
426
426
|
metadata:
|
|
427
427
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
|
428
|
-
changelog_uri: https://github.com/rails/rails/blob/v7.0.0.
|
|
429
|
-
documentation_uri: https://api.rubyonrails.org/v7.0.0.
|
|
428
|
+
changelog_uri: https://github.com/rails/rails/blob/v7.0.0.alpha2/railties/CHANGELOG.md
|
|
429
|
+
documentation_uri: https://api.rubyonrails.org/v7.0.0.alpha2/
|
|
430
430
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
|
431
|
-
source_code_uri: https://github.com/rails/rails/tree/v7.0.0.
|
|
431
|
+
source_code_uri: https://github.com/rails/rails/tree/v7.0.0.alpha2/railties
|
|
432
432
|
post_install_message:
|
|
433
433
|
rdoc_options:
|
|
434
434
|
- "--exclude"
|