actionpack 7.1.0 → 7.1.1

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: c629ea5d973a0c87d194d595ae9441a3e0f1d274e3a8f8d36a1166227b9df997
4
- data.tar.gz: 15a763f5513a74282a0f4ad9e2a740bbd04d4db42802823ef7792ca48907f85b
3
+ metadata.gz: 01b6630f88d627d0e93a4343d0500faaff1f685bafad46d9600c44cf26d36b80
4
+ data.tar.gz: cc0218731130dddac745ee72dec869ba75c96820d25928728f3514069966e6da
5
5
  SHA512:
6
- metadata.gz: 17b16cd68d184266d827e228d83ae4ae20dc10c9369c87f22589f17308da8ea3e7bf61a4b268826a1f35999c1c81699aae97ec38c706e4533260e0b41cf5f831
7
- data.tar.gz: 77ecb360825692d5ce8731eb02d6575fe4dbb5cb3e8d3eeb2d873889b15468675e64bb7de0a1c15a1bc70f61c917cd6fc700f39b68257eb2804594d8e88271da
6
+ metadata.gz: 1bcfbc773c2468fe2566cc6932742492fa92d364b102d30c5807550052e0bd80268bac976925df52bb9c9e5f2c226b69188e0d16aca67637cf963058b80e17d6
7
+ data.tar.gz: aad1c61d934637ce06caac52edb2ab1680e55db73450033a39a625d5db5871b7030b672c0be7ae14342a07a87fa2081a84b6cf78dcdb7f2e7b583b811db8601f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## Rails 7.1.1 (October 11, 2023) ##
2
+
3
+ * No changes.
4
+
5
+
1
6
  ## Rails 7.1.0 (October 05, 2023) ##
2
7
 
3
8
  * No changes.
@@ -279,7 +284,7 @@
279
284
 
280
285
  When `before_action :callback, only: :action_name` is declared on a controller that doesn't respond to `action_name`, raise an exception at request time. This is a safety measure to ensure that typos or forgetfulness don't prevent a crucial callback from being run when it should.
281
286
 
282
- For new applications, raising an error for undefined actions is turned on by default. If you do not want to opt-in to this behavior set `config.action_pack.raise_on_missing_callback_actions` to `false` in your application configuration. See #43487 for more details.
287
+ For new applications, raising an error for undefined actions is turned on by default. If you do not want to opt-in to this behavior set `config.action_controller.raise_on_missing_callback_actions` to `false` in your application configuration. See #43487 for more details.
283
288
 
284
289
  *Jess Bees*
285
290
 
@@ -140,7 +140,7 @@ module AbstractController
140
140
 
141
141
  abstract!
142
142
 
143
- # Calls the action going through the entire action dispatch stack.
143
+ # Calls the action going through the entire Action Dispatch stack.
144
144
  #
145
145
  # The actual method that is called is determined by calling
146
146
  # #method_for_action. If no method can handle the action, then an
@@ -56,7 +56,7 @@ module AbstractController
56
56
 
57
57
  Raising for missing callback actions is a new default in Rails 7.1, if you'd
58
58
  like to turn this off you can delete the option from the environment configurations
59
- or set `config.action_pack.raise_on_missing_callback_actions` to `false`.
59
+ or set `config.action_controller.raise_on_missing_callback_actions` to `false`.
60
60
  MSG
61
61
 
62
62
  raise ActionNotFound.new(message, controller, missing_action)
@@ -9,7 +9,7 @@ module ActionPack
9
9
  module VERSION
10
10
  MAJOR = 7
11
11
  MINOR = 1
12
- TINY = 0
12
+ TINY = 1
13
13
  PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
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.1.0
4
+ version: 7.1.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-10-05 00:00:00.000000000 Z
11
+ date: 2023-10-11 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.1.0
19
+ version: 7.1.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.1.0
26
+ version: 7.1.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: nokogiri
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -114,28 +114,28 @@ dependencies:
114
114
  requirements:
115
115
  - - '='
116
116
  - !ruby/object:Gem::Version
117
- version: 7.1.0
117
+ version: 7.1.1
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - '='
123
123
  - !ruby/object:Gem::Version
124
- version: 7.1.0
124
+ version: 7.1.1
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: activemodel
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - '='
130
130
  - !ruby/object:Gem::Version
131
- version: 7.1.0
131
+ version: 7.1.1
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - '='
137
137
  - !ruby/object:Gem::Version
138
- version: 7.1.0
138
+ version: 7.1.1
139
139
  description: Web apps on Rails. Simple, battle-tested conventions for building and
140
140
  testing MVC web applications. Works with any Rack-compatible server.
141
141
  email: david@loudthinking.com
@@ -332,10 +332,10 @@ licenses:
332
332
  - MIT
333
333
  metadata:
334
334
  bug_tracker_uri: https://github.com/rails/rails/issues
335
- changelog_uri: https://github.com/rails/rails/blob/v7.1.0/actionpack/CHANGELOG.md
336
- documentation_uri: https://api.rubyonrails.org/v7.1.0/
335
+ changelog_uri: https://github.com/rails/rails/blob/v7.1.1/actionpack/CHANGELOG.md
336
+ documentation_uri: https://api.rubyonrails.org/v7.1.1/
337
337
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
338
- source_code_uri: https://github.com/rails/rails/tree/v7.1.0/actionpack
338
+ source_code_uri: https://github.com/rails/rails/tree/v7.1.1/actionpack
339
339
  rubygems_mfa_required: 'true'
340
340
  post_install_message:
341
341
  rdoc_options: []