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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 809add07149bc6a8fc6bd9e1848b4237e6a39642319d686c0e5e7c1ff005a0fe
4
- data.tar.gz: 3676fc831492d4e660fe82b657b25630373e1176d5dfc0d6375857aa0de0d0cd
3
+ metadata.gz: b8e0ad6e3f3a0fb64531451d78166c6cede2e31642aa4322dba9b5b51440581f
4
+ data.tar.gz: ff60ae45c8d2b5a202467bdf7ac92d94777ebf4d4affc828f6ed298c5c500174
5
5
  SHA512:
6
- metadata.gz: 136de74c284cec25a993107e665b70f0732116b770c0ca3081b2b9f6a2366046d318d0153da438b557485aadb18ab0850c7135c20ef662154418e1690a0f8788
7
- data.tar.gz: a6ad192510bd25f054e931fcbb7ef7fa3c34cbc90a9445d7b8ca173c9c2f58b5ffd40e33b10ddb27d7cdf5cf026ebb5e2a9cd7e6637804d291e922310fc795c8
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.insert_after(ActionDispatch::Executor, Rails.cache.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 ::ActionDispatch::MiddlewareStack::FakeRuntime
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
@@ -10,7 +10,7 @@ module Rails
10
10
  MAJOR = 7
11
11
  MINOR = 0
12
12
  TINY = 0
13
- PRE = "alpha1"
13
+ PRE = "alpha2"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
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.alpha1
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.alpha1
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.alpha1
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.alpha1
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.alpha1
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.alpha1
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.alpha1
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.alpha1/railties/CHANGELOG.md
429
- documentation_uri: https://api.rubyonrails.org/v7.0.0.alpha1/
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.alpha1/railties
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"