actionpack 8.1.0.beta1 → 8.1.0
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 +105 -1
- data/lib/abstract_controller/base.rb +2 -1
- data/lib/abstract_controller/helpers.rb +1 -1
- data/lib/action_controller/api.rb +1 -0
- data/lib/action_controller/base.rb +1 -0
- data/lib/action_controller/log_subscriber.rb +11 -3
- data/lib/action_controller/metal/live.rb +9 -18
- data/lib/action_controller/metal/rate_limiting.rb +9 -3
- data/lib/action_controller/metal/redirecting.rb +45 -9
- data/lib/action_controller/railtie.rb +25 -2
- data/lib/action_controller/structured_event_subscriber.rb +112 -0
- data/lib/action_dispatch/http/mime_negotiation.rb +55 -1
- data/lib/action_dispatch/http/url.rb +11 -11
- data/lib/action_dispatch/journey/gtg/transition_table.rb +9 -7
- data/lib/action_dispatch/log_subscriber.rb +7 -3
- data/lib/action_dispatch/middleware/remote_ip.rb +9 -4
- data/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb +3 -0
- data/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb +3 -0
- data/lib/action_dispatch/railtie.rb +4 -0
- data/lib/action_dispatch/routing/inspector.rb +79 -59
- data/lib/action_dispatch/routing/mapper.rb +4 -2
- data/lib/action_dispatch/routing/redirection.rb +10 -7
- data/lib/action_dispatch/routing/routes_proxy.rb +1 -0
- data/lib/action_dispatch/structured_event_subscriber.rb +20 -0
- data/lib/action_dispatch/testing/integration.rb +3 -4
- data/lib/action_dispatch/testing/request_encoder.rb +9 -9
- data/lib/action_dispatch.rb +8 -0
- data/lib/action_pack/gem_version.rb +1 -1
- metadata +12 -10
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: actionpack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.1.0
|
|
4
|
+
version: 8.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 8.1.0
|
|
18
|
+
version: 8.1.0
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - '='
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 8.1.0
|
|
25
|
+
version: 8.1.0
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: nokogiri
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -127,28 +127,28 @@ dependencies:
|
|
|
127
127
|
requirements:
|
|
128
128
|
- - '='
|
|
129
129
|
- !ruby/object:Gem::Version
|
|
130
|
-
version: 8.1.0
|
|
130
|
+
version: 8.1.0
|
|
131
131
|
type: :runtime
|
|
132
132
|
prerelease: false
|
|
133
133
|
version_requirements: !ruby/object:Gem::Requirement
|
|
134
134
|
requirements:
|
|
135
135
|
- - '='
|
|
136
136
|
- !ruby/object:Gem::Version
|
|
137
|
-
version: 8.1.0
|
|
137
|
+
version: 8.1.0
|
|
138
138
|
- !ruby/object:Gem::Dependency
|
|
139
139
|
name: activemodel
|
|
140
140
|
requirement: !ruby/object:Gem::Requirement
|
|
141
141
|
requirements:
|
|
142
142
|
- - '='
|
|
143
143
|
- !ruby/object:Gem::Version
|
|
144
|
-
version: 8.1.0
|
|
144
|
+
version: 8.1.0
|
|
145
145
|
type: :development
|
|
146
146
|
prerelease: false
|
|
147
147
|
version_requirements: !ruby/object:Gem::Requirement
|
|
148
148
|
requirements:
|
|
149
149
|
- - '='
|
|
150
150
|
- !ruby/object:Gem::Version
|
|
151
|
-
version: 8.1.0
|
|
151
|
+
version: 8.1.0
|
|
152
152
|
description: Web apps on Rails. Simple, battle-tested conventions for building and
|
|
153
153
|
testing MVC web applications. Works with any Rack-compatible server.
|
|
154
154
|
email: david@loudthinking.com
|
|
@@ -218,6 +218,7 @@ files:
|
|
|
218
218
|
- lib/action_controller/railtie.rb
|
|
219
219
|
- lib/action_controller/railties/helpers.rb
|
|
220
220
|
- lib/action_controller/renderer.rb
|
|
221
|
+
- lib/action_controller/structured_event_subscriber.rb
|
|
221
222
|
- lib/action_controller/template_assertions.rb
|
|
222
223
|
- lib/action_controller/test_case.rb
|
|
223
224
|
- lib/action_dispatch.rb
|
|
@@ -326,6 +327,7 @@ files:
|
|
|
326
327
|
- lib/action_dispatch/routing/route_set.rb
|
|
327
328
|
- lib/action_dispatch/routing/routes_proxy.rb
|
|
328
329
|
- lib/action_dispatch/routing/url_for.rb
|
|
330
|
+
- lib/action_dispatch/structured_event_subscriber.rb
|
|
329
331
|
- lib/action_dispatch/system_test_case.rb
|
|
330
332
|
- lib/action_dispatch/system_testing/browser.rb
|
|
331
333
|
- lib/action_dispatch/system_testing/driver.rb
|
|
@@ -350,10 +352,10 @@ licenses:
|
|
|
350
352
|
- MIT
|
|
351
353
|
metadata:
|
|
352
354
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
|
353
|
-
changelog_uri: https://github.com/rails/rails/blob/v8.1.0
|
|
354
|
-
documentation_uri: https://api.rubyonrails.org/v8.1.0
|
|
355
|
+
changelog_uri: https://github.com/rails/rails/blob/v8.1.0/actionpack/CHANGELOG.md
|
|
356
|
+
documentation_uri: https://api.rubyonrails.org/v8.1.0/
|
|
355
357
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
|
356
|
-
source_code_uri: https://github.com/rails/rails/tree/v8.1.0
|
|
358
|
+
source_code_uri: https://github.com/rails/rails/tree/v8.1.0/actionpack
|
|
357
359
|
rubygems_mfa_required: 'true'
|
|
358
360
|
rdoc_options: []
|
|
359
361
|
require_paths:
|