railties 7.1.5.1 → 7.2.2.1
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 +197 -767
- data/lib/minitest/rails_plugin.rb +5 -2
- data/lib/rails/all.rb +1 -3
- data/lib/rails/api/task.rb +6 -4
- data/lib/rails/application/bootstrap.rb +5 -6
- data/lib/rails/application/configuration.rb +68 -33
- data/lib/rails/application/dummy_config.rb +2 -2
- data/lib/rails/application/finisher.rb +7 -0
- data/lib/rails/application.rb +22 -89
- data/lib/rails/backtrace_cleaner.rb +14 -1
- data/lib/rails/cli.rb +0 -1
- data/lib/rails/command.rb +1 -1
- data/lib/rails/commands/app/update_command.rb +102 -0
- data/lib/rails/commands/boot/boot_command.rb +14 -0
- data/lib/rails/commands/console/console_command.rb +2 -21
- data/lib/rails/commands/console/irb_console.rb +146 -0
- data/lib/rails/commands/credentials/credentials_command.rb +2 -2
- data/lib/rails/commands/dbconsole/dbconsole_command.rb +21 -30
- data/lib/rails/commands/devcontainer/devcontainer_command.rb +39 -0
- data/lib/rails/commands/rake/rake_command.rb +1 -1
- data/lib/rails/commands/runner/runner_command.rb +14 -3
- data/lib/rails/commands/server/server_command.rb +5 -3
- data/lib/rails/commands/test/test_command.rb +2 -0
- data/lib/rails/configuration.rb +10 -1
- data/lib/rails/console/app.rb +5 -32
- data/lib/rails/console/helpers.rb +5 -16
- data/lib/rails/console/methods.rb +23 -0
- data/lib/rails/engine.rb +7 -7
- data/lib/rails/gem_version.rb +2 -2
- data/lib/rails/generators/app_base.rb +70 -49
- data/lib/rails/generators/base.rb +5 -1
- data/lib/rails/generators/database.rb +227 -69
- data/lib/rails/generators/erb/scaffold/templates/edit.html.erb.tt +2 -0
- data/lib/rails/generators/erb/scaffold/templates/index.html.erb.tt +2 -0
- data/lib/rails/generators/erb/scaffold/templates/new.html.erb.tt +2 -0
- data/lib/rails/generators/generated_attribute.rb +26 -1
- data/lib/rails/generators/rails/app/app_generator.rb +56 -28
- data/lib/rails/generators/rails/app/templates/Dockerfile.tt +22 -15
- data/lib/rails/generators/rails/app/templates/Gemfile.tt +17 -17
- data/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb.tt +4 -0
- data/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +8 -1
- data/lib/rails/generators/rails/app/templates/app/views/pwa/manifest.json.erb.tt +22 -0
- data/lib/rails/generators/rails/app/templates/app/views/pwa/service-worker.js +26 -0
- data/lib/rails/generators/rails/app/templates/bin/brakeman.tt +6 -0
- data/lib/rails/generators/rails/app/templates/bin/rubocop.tt +7 -0
- data/lib/rails/generators/rails/app/templates/bin/setup.tt +6 -2
- data/lib/rails/generators/rails/app/templates/config/application.rb.tt +1 -1
- data/lib/rails/generators/rails/app/templates/config/databases/mysql.yml.tt +3 -3
- data/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml.tt +7 -0
- data/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml.tt +8 -1
- data/lib/rails/generators/rails/app/templates/config/databases/trilogy.yml.tt +3 -3
- data/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +14 -7
- data/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +8 -0
- data/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +8 -5
- data/lib/rails/generators/rails/app/templates/config/initializers/assets.rb.tt +1 -1
- data/lib/rails/generators/rails/app/templates/config/initializers/filter_parameter_logging.rb.tt +1 -1
- data/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_7_2.rb.tt +70 -0
- data/lib/rails/generators/rails/app/templates/config/puma.rb.tt +25 -35
- data/lib/rails/generators/rails/app/templates/config/routes.rb.tt +6 -0
- data/lib/rails/generators/rails/app/templates/docker-entrypoint.tt +5 -0
- data/lib/rails/generators/rails/app/templates/dockerignore.tt +13 -0
- data/lib/rails/generators/rails/app/templates/github/ci.yml.tt +138 -0
- data/lib/rails/generators/rails/app/templates/github/dependabot.yml +12 -0
- data/lib/rails/generators/rails/app/templates/gitignore.tt +3 -3
- data/lib/rails/generators/rails/app/templates/public/406-unsupported-browser.html +66 -0
- data/lib/rails/generators/rails/app/templates/public/icon.png +0 -0
- data/lib/rails/generators/rails/app/templates/public/icon.svg +3 -0
- data/lib/rails/generators/rails/app/templates/rubocop.yml.tt +8 -0
- data/lib/rails/generators/rails/app/templates/test/application_system_test_case.rb.tt +1 -1
- data/lib/rails/generators/rails/controller/controller_generator.rb +1 -1
- data/lib/rails/generators/rails/db/system/change/change_generator.rb +131 -20
- data/lib/rails/generators/rails/devcontainer/devcontainer_generator.rb +166 -0
- data/lib/rails/generators/rails/devcontainer/templates/devcontainer/Dockerfile.tt +3 -0
- data/lib/rails/generators/rails/devcontainer/templates/devcontainer/compose.yaml.tt +47 -0
- data/lib/rails/generators/rails/devcontainer/templates/devcontainer/devcontainer.json.tt +37 -0
- data/lib/rails/generators/rails/migration/migration_generator.rb +4 -0
- data/lib/rails/generators/rails/plugin/plugin_generator.rb +40 -7
- data/lib/rails/generators/rails/plugin/templates/%name%.gemspec.tt +2 -2
- data/lib/rails/generators/rails/plugin/templates/Gemfile.tt +5 -1
- data/lib/rails/generators/rails/plugin/templates/app/views/layouts/%namespaced_name%/application.html.erb.tt +2 -0
- data/lib/rails/generators/rails/plugin/templates/bin/rubocop.tt +7 -0
- data/lib/rails/generators/rails/plugin/templates/github/ci.yml.tt +103 -0
- data/lib/rails/generators/rails/plugin/templates/github/dependabot.yml +12 -0
- data/lib/rails/generators/rails/plugin/templates/rubocop.yml.tt +8 -0
- data/lib/rails/generators/rails/plugin/templates/test/application_system_test_case.rb.tt +1 -1
- data/lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt +2 -2
- data/lib/rails/generators/test_unit/mailer/templates/functional_test.rb.tt +6 -4
- data/lib/rails/generators/test_unit/mailer/templates/preview.rb.tt +3 -2
- data/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +15 -1
- data/lib/rails/generators/test_unit/scaffold/templates/api_functional_test.rb.tt +2 -2
- data/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb.tt +2 -2
- data/lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt +2 -0
- data/lib/rails/generators/test_unit/system/templates/application_system_test_case.rb.tt +1 -1
- data/lib/rails/generators/testing/assertions.rb +20 -0
- data/lib/rails/generators/testing/behavior.rb +7 -6
- data/lib/rails/generators.rb +6 -2
- data/lib/rails/health_controller.rb +1 -1
- data/lib/rails/info.rb +2 -2
- data/lib/rails/mailers_controller.rb +14 -1
- data/lib/rails/paths.rb +2 -2
- data/lib/rails/pwa_controller.rb +15 -0
- data/lib/rails/rack/logger.rb +15 -7
- data/lib/rails/railtie/configurable.rb +2 -2
- data/lib/rails/railtie.rb +2 -3
- data/lib/rails/tasks/framework.rake +0 -26
- data/lib/rails/tasks/tmp.rake +1 -1
- data/lib/rails/templates/layouts/application.html.erb +1 -1
- data/lib/rails/templates/rails/mailers/email.html.erb +12 -8
- data/lib/rails/templates/rails/welcome/index.html.erb +4 -2
- data/lib/rails/test_help.rb +2 -4
- data/lib/rails/test_unit/reporter.rb +8 -2
- data/lib/rails/test_unit/runner.rb +26 -2
- data/lib/rails/test_unit/test_parser.rb +45 -0
- data/lib/rails.rb +6 -3
- metadata +40 -30
- data/lib/rails/app_updater.rb +0 -52
- data/lib/rails/commands/secrets/USAGE +0 -61
- data/lib/rails/commands/secrets/secrets_command.rb +0 -47
- data/lib/rails/generators/rails/app/templates/config/databases/jdbc.yml.tt +0 -68
- data/lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml.tt +0 -54
- data/lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml.tt +0 -70
- data/lib/rails/generators/rails/app/templates/config/databases/jdbcsqlite3.yml.tt +0 -24
- data/lib/rails/generators/rails/app/templates/config/databases/oracle.yml.tt +0 -62
- data/lib/rails/generators/rails/app/templates/config/databases/sqlserver.yml.tt +0 -53
- data/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_7_1.rb.tt +0 -280
- data/lib/rails/generators/rails/app/templates/public/apple-touch-icon-precomposed.png +0 -0
- data/lib/rails/generators/rails/app/templates/public/apple-touch-icon.png +0 -0
- data/lib/rails/generators/rails/app/templates/public/favicon.ico +0 -0
- data/lib/rails/ruby_version_check.rb +0 -17
- data/lib/rails/secrets.rb +0 -110
data/CHANGELOG.md
CHANGED
@@ -1,951 +1,381 @@
|
|
1
|
-
## Rails 7.
|
1
|
+
## Rails 7.2.2.1 (December 10, 2024) ##
|
2
2
|
|
3
3
|
* No changes.
|
4
4
|
|
5
5
|
|
6
|
-
## Rails 7.
|
6
|
+
## Rails 7.2.2 (October 30, 2024) ##
|
7
7
|
|
8
8
|
* No changes.
|
9
9
|
|
10
10
|
|
11
|
-
## Rails 7.1.
|
11
|
+
## Rails 7.2.1.2 (October 23, 2024) ##
|
12
12
|
|
13
13
|
* No changes.
|
14
14
|
|
15
15
|
|
16
|
-
## Rails 7.1.
|
16
|
+
## Rails 7.2.1.1 (October 15, 2024) ##
|
17
17
|
|
18
18
|
* No changes.
|
19
19
|
|
20
20
|
|
21
|
-
## Rails 7.1
|
21
|
+
## Rails 7.2.1 (August 22, 2024) ##
|
22
22
|
|
23
|
-
*
|
23
|
+
* Fix `rails console` for application with non default application constant.
|
24
24
|
|
25
|
-
|
26
|
-
|
27
|
-
* Allow string keys for SQLCommenter.
|
28
|
-
|
29
|
-
*Ngan Pham*
|
30
|
-
|
31
|
-
* Fix derived foreign key to return correctly when association id is part of query constraints.
|
32
|
-
|
33
|
-
*Varun Sharma*
|
34
|
-
|
35
|
-
* Show warning for `secret_key_base` in development too.
|
36
|
-
|
37
|
-
*fatkodima*
|
38
|
-
|
39
|
-
* Fix sanitizer vendor configuration in 7.1 defaults.
|
40
|
-
|
41
|
-
In apps where `rails-html-sanitizer` was not eagerly loaded, the sanitizer default could end up
|
42
|
-
being Rails::HTML4::Sanitizer when it should be set to `Rails::HTML5::Sanitizer`.
|
43
|
-
|
44
|
-
*Mike Dalessio*, *Rafael Mendonça França*
|
45
|
-
|
46
|
-
* Revert the use of `Concurrent.physical_processor_count` in default Puma config
|
47
|
-
|
48
|
-
While for many people this saves one config to set, for many others using
|
49
|
-
a shared hosting solution, this cause the default configuration to spawn
|
50
|
-
way more workers than reasonable.
|
51
|
-
|
52
|
-
There is unfortunately no reliable way to detect how many cores an application
|
53
|
-
can realistically use, and even then, assuming the application should use
|
54
|
-
all the machine resources is often wrong.
|
25
|
+
The wrongly assumed the Rails application would be named `AppNamespace::Application`,
|
26
|
+
which is the default but not an obligation.
|
55
27
|
|
56
28
|
*Jean Boussier*
|
57
29
|
|
30
|
+
* Fix the default Dockerfile to include the full sqlite3 package.
|
58
31
|
|
59
|
-
|
60
|
-
|
61
|
-
* No changes.
|
32
|
+
Prior to this it only included `libsqlite3`, so it wasn't enough to
|
33
|
+
run `rails dbconsole`.
|
62
34
|
|
35
|
+
*Jerome Dalbert*
|
63
36
|
|
64
|
-
|
65
|
-
|
66
|
-
* No changes.
|
67
|
-
|
68
|
-
|
69
|
-
## Rails 7.1.3.2 (February 21, 2024) ##
|
70
|
-
|
71
|
-
* No changes.
|
72
|
-
|
73
|
-
|
74
|
-
## Rails 7.1.3.1 (February 21, 2024) ##
|
75
|
-
|
76
|
-
* No changes.
|
77
|
-
|
78
|
-
|
79
|
-
## Rails 7.1.3 (January 16, 2024) ##
|
80
|
-
|
81
|
-
* Make sure `config.after_routes_loaded` hook runs on boot.
|
82
|
-
|
83
|
-
*Rafael Mendonça França*
|
84
|
-
|
85
|
-
* Fix `config.log_level` not being respected when using a `BroadcastLogger`
|
86
|
-
|
87
|
-
*Édouard Chin*
|
88
|
-
|
89
|
-
* Fix isolated engines to take `ActiveRecord::Base.table_name_prefix` into consideration.
|
90
|
-
This will allow for engine defined models, such as inside Active Storage, to respect
|
91
|
-
Active Record table name prefix configuration.
|
37
|
+
* Don't update public directory during `app:update` command for API-only Applications.
|
92
38
|
|
93
|
-
*
|
39
|
+
*y-yagi*
|
94
40
|
|
95
|
-
*
|
96
|
-
gem platforms via `bundle lock --add-platform=...` commands.
|
41
|
+
* Don't add bin/brakeman if brakeman is not in bundle when upgrading an application.
|
97
42
|
|
98
|
-
*
|
43
|
+
*Etienne Barrié*
|
99
44
|
|
45
|
+
* Remove PWA views and routes if its an API only project.
|
100
46
|
|
101
|
-
|
47
|
+
*Jean Boussier*
|
102
48
|
|
103
|
-
*
|
49
|
+
* Simplify generated Puma configuration
|
104
50
|
|
105
|
-
*
|
51
|
+
*DHH*, *Rafael Mendonça França*
|
106
52
|
|
107
|
-
* If you accessed `config.eager_load_paths` and friends, later changes to
|
108
|
-
`config.paths` were not reflected in the expected auto/eager load paths.
|
109
|
-
Now, they are.
|
110
53
|
|
111
|
-
|
54
|
+
## Rails 7.2.0 (August 09, 2024) ##
|
112
55
|
|
113
|
-
|
56
|
+
* The new `bin/rails boot` command boots the application and exits. Supports the
|
57
|
+
standard `-e/--environment` options.
|
114
58
|
|
115
59
|
*Xavier Noria*
|
116
60
|
|
117
|
-
|
118
|
-
|
119
|
-
* Ensures the Rails generated Dockerfile uses correct ruby version and matches Gemfile.
|
120
|
-
|
121
|
-
*Abhay Nikam*
|
122
|
-
|
123
|
-
|
124
|
-
## Rails 7.1.0 (October 05, 2023) ##
|
61
|
+
* Create a Dev Container Generator that generates a Dev Container setup based on the current configuration
|
62
|
+
of the application. Usage:
|
125
63
|
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
## Rails 7.1.0.rc2 (October 01, 2023) ##
|
64
|
+
`bin/rails devcontainer`
|
130
65
|
|
131
|
-
*
|
132
|
-
|
133
|
-
*Edouard Chin*
|
66
|
+
*Andrew Novoselac*
|
134
67
|
|
68
|
+
* Add Rubocop and GitHub Actions to plugin generator.
|
69
|
+
This can be skipped using --skip-rubocop and --skip-ci.
|
135
70
|
|
136
|
-
|
71
|
+
*Chris Oliver*
|
137
72
|
|
138
|
-
*
|
139
|
-
|
73
|
+
* Remove support for `oracle`, `sqlserver` and JRuby specific database adapters from the
|
74
|
+
`rails new` and `rails db:system:change` commands.
|
140
75
|
|
141
|
-
|
76
|
+
The supported options are `sqlite3`, `mysql`, `postgresql` and `trilogy`.
|
142
77
|
|
143
|
-
*
|
144
|
-
|
145
|
-
* Raise error when generating attribute with dangerous name.
|
146
|
-
|
147
|
-
The following will now raise an error as `save` and `hash` are already
|
148
|
-
defined by Active Record.
|
149
|
-
|
150
|
-
```bash
|
151
|
-
$ bin/rails generate model Post save
|
152
|
-
$ bin/rails generate model Post hash
|
153
|
-
```
|
78
|
+
*Andrew Novoselac*
|
154
79
|
|
155
|
-
|
80
|
+
* Add options to `bin/rails app:update`.
|
156
81
|
|
82
|
+
`bin/rails app:update` now supports the same generic options that generators do:
|
157
83
|
|
158
|
-
|
84
|
+
* `--force`: Accept all changes to existing files
|
85
|
+
* `--skip`: Refuse all changes to existing files
|
86
|
+
* `--pretend`: Don't make any changes
|
87
|
+
* `--quiet`: Don't output all changes made
|
159
88
|
|
160
|
-
|
161
|
-
|
162
|
-
```bash
|
163
|
-
$ bin/test --profile # additionally prints 10 (default) slowest tests
|
164
|
-
# or
|
165
|
-
$ bin/test --profile 20 # prints 20 slowest tests
|
166
|
-
```
|
167
|
-
|
168
|
-
*fatkodima*
|
169
|
-
|
170
|
-
* `rails new --javascript` generator now supports Bun
|
171
|
-
|
172
|
-
```bash
|
173
|
-
$ rails new my_new_app --javascript=bun
|
174
|
-
```
|
175
|
-
|
176
|
-
*Jason Meller*
|
177
|
-
|
178
|
-
* bin/setup uses `bun` instead of `yarn` when generated an app with bun
|
179
|
-
|
180
|
-
Use `bun install` on `bin/setup` when using `bun`.
|
181
|
-
|
182
|
-
*Cadu Ribeiro*
|
183
|
-
|
184
|
-
* `config/application.rb` now includes
|
185
|
-
|
186
|
-
```ruby
|
187
|
-
config.autoload_lib(ignore: %w(assets tasks))
|
188
|
-
```
|
189
|
-
|
190
|
-
In practice, this means that new 7.1 applications autoload from `lib` out of the box.
|
191
|
-
|
192
|
-
*Xavier Noria*
|
193
|
-
|
194
|
-
* Add an option to start rails console in sandbox mode by default
|
195
|
-
|
196
|
-
`sandbox_by_default` option is added to start rails console in sandbox
|
197
|
-
mode by default. With this option turned on, `--no-sandbox` must be
|
198
|
-
specified to start rails in non-sandbox mode.
|
199
|
-
|
200
|
-
Note that this option is ignored when rails environment is development
|
201
|
-
or test.
|
89
|
+
*Étienne Barrié*
|
202
90
|
|
203
|
-
|
91
|
+
* Implement Rails console commands and helpers with IRB v1.13's extension APIs.
|
204
92
|
|
205
|
-
|
93
|
+
Rails console users will now see `helper`, `controller`, `new_session`, and `app` under
|
94
|
+
IRB help message's `Helper methods` category. And `reload!` command will be displayed under
|
95
|
+
the new `Rails console` commands category.
|
206
96
|
|
207
|
-
|
97
|
+
Prior to this change, Rails console's commands and helper methods are added through IRB's
|
98
|
+
private components and don't show up in its help message, which led to poor discoverability.
|
208
99
|
|
209
|
-
*
|
100
|
+
*Stan Lo*
|
210
101
|
|
211
|
-
|
212
|
-
following command runs tests from line 10 to 20.
|
102
|
+
* Remove deprecated `Rails::Generators::Testing::Behaviour`.
|
213
103
|
|
214
|
-
|
215
|
-
$ rails test test/models/user_test.rb:10-20
|
216
|
-
```
|
104
|
+
*Rafael Mendonça França*
|
217
105
|
|
218
|
-
|
106
|
+
* Remove deprecated `find_cmd_and_exec` console helper.
|
219
107
|
|
220
|
-
*
|
221
|
-
on redirect for the update action for XHR requests other than GET or POST
|
222
|
-
to avoid issues (e.g browsers trying to follow the redirect using the
|
223
|
-
original request method resulting in double PATCH/PUT)
|
108
|
+
*Rafael Mendonça França*
|
224
109
|
|
225
|
-
|
110
|
+
* Remove deprecated `Rails.config.enable_dependency_loading`.
|
226
111
|
|
227
|
-
*
|
228
|
-
except that it adds `lib` to `config.autoload_once_paths` instead.
|
112
|
+
*Rafael Mendonça França*
|
229
113
|
|
230
|
-
|
231
|
-
autoloaded, even from application initializers, but won't be reloaded.
|
114
|
+
* Remove deprecated `Rails.application.secrets`.
|
232
115
|
|
233
|
-
|
234
|
-
guide](https://guides.rubyonrails.org/v7.1/autoloading_and_reloading_constants.html).
|
116
|
+
*Rafael Mendonça França*
|
235
117
|
|
236
|
-
|
118
|
+
* Generated Gemfile will include `require: "debug/prelude"` for the `debug` gem.
|
237
119
|
|
238
|
-
|
239
|
-
|
120
|
+
Requiring `debug` gem directly automatically activates it, which could introduce
|
121
|
+
additional overhead and memory usage even without entering a debugging session.
|
240
122
|
|
241
|
-
|
242
|
-
|
123
|
+
By making Bundler require `debug/prelude` instead, developers can keep their access
|
124
|
+
to breakpoint methods like `debugger` or `binding.break`, but the debugger won't be
|
125
|
+
activated until a breakpoint is hit.
|
243
126
|
|
244
|
-
*
|
127
|
+
*Stan Lo*
|
245
128
|
|
246
|
-
*
|
129
|
+
* Skip generating a `test` job in ci.yml when a new application is generated with the
|
130
|
+
`--skip-test` option.
|
247
131
|
|
248
|
-
|
249
|
-
when running `rails railties:install:migrations`.
|
132
|
+
*Steve Polito*
|
250
133
|
|
251
|
-
|
252
|
-
$ rails railties:install:migrations DATABASE=animals
|
253
|
-
```
|
134
|
+
* Update the `.node-version` file conditionally generated for new applications to 20.11.1
|
254
135
|
|
255
|
-
*
|
136
|
+
*Steve Polito*
|
256
137
|
|
257
|
-
*
|
258
|
-
autoload from `lib`:
|
138
|
+
* Fix sanitizer vendor configuration in 7.1 defaults.
|
259
139
|
|
260
|
-
|
261
|
-
|
262
|
-
config.autoload_lib(ignore: %w(assets tasks))
|
263
|
-
```
|
140
|
+
In apps where rails-html-sanitizer was not eagerly loaded, the sanitizer default could end up
|
141
|
+
being Rails::HTML4::Sanitizer when it should be set to Rails::HTML5::Sanitizer.
|
264
142
|
|
265
|
-
|
266
|
-
guide](https://guides.rubyonrails.org/v7.1/autoloading_and_reloading_constants.html).
|
143
|
+
*Mike Dalessio*, *Rafael Mendonça França*
|
267
144
|
|
268
|
-
|
145
|
+
* Set `action_mailer.default_url_options` values in `development` and `test`.
|
269
146
|
|
270
|
-
|
147
|
+
Prior to this commit, new Rails applications would raise `ActionView::Template::Error`
|
148
|
+
if a mailer included a url built with a `*_path` helper.
|
271
149
|
|
272
|
-
|
150
|
+
*Steve Polito*
|
273
151
|
|
274
|
-
|
275
|
-
Rails.application.config.inspect
|
276
|
-
"#<Rails::Application::Configuration:0x00000001132b02a0 @root=... @secret_key_base=\"b3c631c314c0bbca50c1b2843150fe33\" ... >"
|
277
|
-
```
|
152
|
+
* Introduce `Rails::Generators::Testing::Assertions#assert_initializer`.
|
278
153
|
|
279
|
-
|
154
|
+
Compliments the existing `initializer` generator action.
|
280
155
|
|
281
|
-
```
|
282
|
-
|
283
|
-
"#<Rails::Application::Configuration:0x00000001132b02a0>"
|
156
|
+
```rb
|
157
|
+
assert_initializer "mail_interceptors.rb"
|
284
158
|
```
|
285
159
|
|
286
|
-
*
|
287
|
-
|
288
|
-
* Deprecate calling `Rails.application.secrets`.
|
289
|
-
|
290
|
-
Rails `secrets` have been deprecated in favor of `credentials`.
|
291
|
-
Calling `Rails.application.secrets` should show a deprecation warning.
|
292
|
-
|
293
|
-
*Petrik de Heus*
|
294
|
-
|
295
|
-
* Store `secret_key_base` in `Rails.config` for local environments.
|
296
|
-
|
297
|
-
Rails `secrets` have been deprecated in favor of `credentials`.
|
298
|
-
For the local environments the `secret_key_base` is now stored in
|
299
|
-
`Rails.config.secret_key_base` instead of the soft deprecated
|
300
|
-
`Rails.application.secrets.secret_key_base`.
|
301
|
-
|
302
|
-
*Petrik de Heus*
|
303
|
-
|
304
|
-
* Enable force_ssl=true in production by default: Force all access to the app over SSL,
|
305
|
-
use Strict-Transport-Security, and use secure cookies
|
306
|
-
|
307
|
-
*Justin Searls*, *Aaron Patterson*, *Guillermo Iguaran*, *Vinícius Bispo*
|
308
|
-
|
309
|
-
* Add engine's draw paths to application route set, so that the application
|
310
|
-
can draw route files defined in engine paths.
|
311
|
-
|
312
|
-
*Gannon McGibbon*
|
313
|
-
|
314
|
-
* Support `VISUAL` environment variable for commands which open an editor,
|
315
|
-
and prefer it over `EDITOR`.
|
316
|
-
|
317
|
-
*Summer ☀️*
|
160
|
+
*Steve Polito*
|
318
161
|
|
319
|
-
*
|
320
|
-
path exists and is under the Rails application root.
|
162
|
+
* Generate a .devcontainer folder and its contents when creating a new app.
|
321
163
|
|
322
|
-
|
164
|
+
The .devcontainer folder includes everything needed to boot the app and do development in a remote container.
|
323
165
|
|
324
|
-
|
325
|
-
|
166
|
+
The container setup includes:
|
167
|
+
- A redis container for Kredis, ActionCable etc.
|
168
|
+
- A database (SQLite, Postgres, MySQL or MariaDB)
|
169
|
+
- A Headless chrome container for system tests
|
170
|
+
- Active Storage configured to use the local disk and with preview features working
|
326
171
|
|
327
|
-
|
172
|
+
If any of these options are skipped in the app setup they will not be included in the container configuration.
|
328
173
|
|
329
|
-
|
174
|
+
These files can be skipped using the `--skip-devcontainer` option.
|
330
175
|
|
331
|
-
|
176
|
+
*Andrew Novoselac & Rafael Mendonça França*
|
332
177
|
|
333
|
-
|
178
|
+
* Introduce `SystemTestCase#served_by` for configuring the System Test application server.
|
334
179
|
|
335
|
-
|
336
|
-
|
337
|
-
`rails generate migration CreateAuthor name:text{medium}`
|
338
|
-
|
339
|
-
This generates a migration which includes the size attribute:
|
180
|
+
By default this is localhost. This method allows the host and port to be specified manually.
|
340
181
|
|
341
182
|
```ruby
|
342
|
-
class
|
343
|
-
|
344
|
-
create_table :authors do |t|
|
345
|
-
t.text :name, size: :medium
|
346
|
-
end
|
347
|
-
end
|
183
|
+
class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
|
184
|
+
served_by host: "testserver", port: 45678
|
348
185
|
end
|
349
186
|
```
|
350
187
|
|
351
|
-
*
|
352
|
-
|
353
|
-
* Trying to set a config key with the same name of a method now raises:
|
354
|
-
|
355
|
-
```ruby
|
356
|
-
config.load_defaults = 7.0
|
357
|
-
# NoMethodError: Cannot assign to `load_defaults`, it is a configuration method
|
358
|
-
```
|
359
|
-
|
360
|
-
*Xavier Noria*
|
361
|
-
|
362
|
-
* Deprecate `secrets:edit/show` and remove `secrets:setup`
|
188
|
+
*Andrew Novoselac & Rafael Mendonça França*
|
363
189
|
|
364
|
-
|
365
|
-
credentials. This command has been removed.
|
190
|
+
* `bin/rails test` will no longer load files named `*_test.rb` if they are located in the `fixtures` folder.
|
366
191
|
|
367
|
-
|
368
|
-
in favor of credentials.
|
369
|
-
|
370
|
-
Run `bin/rails credentials:help` for more information
|
371
|
-
|
372
|
-
*Petrik de Heus*
|
373
|
-
|
374
|
-
* `bin/rails --help` will now list only framework and plugin commands. Rake
|
375
|
-
tasks defined in `lib/tasks/*.rake` files will no longer be included. For a
|
376
|
-
list of those tasks, use `rake -T`.
|
377
|
-
|
378
|
-
*Jonathan Hefner*
|
379
|
-
|
380
|
-
* Allow calling `bin/rails restart` outside of app directory.
|
192
|
+
*Edouard Chin*
|
381
193
|
|
382
|
-
|
194
|
+
* Ensure logger tags configured with `config.log_tags` are still active in `request.action_dispatch` handlers.
|
383
195
|
|
384
|
-
|
385
|
-
$ blog/bin/rails restart
|
386
|
-
```
|
196
|
+
*KJ Tsanaktsidis*
|
387
197
|
|
388
|
-
|
198
|
+
* Setup jemalloc in the default Dockerfile for memory optimization.
|
389
199
|
|
390
|
-
*
|
200
|
+
*Matt Almeida*, *Jean Boussier*
|
391
201
|
|
392
|
-
|
202
|
+
* Commented out lines in .railsrc file should not be treated as arguments when using
|
203
|
+
rails new generator command. Update ARGVScrubber to ignore text after `#` symbols.
|
393
204
|
|
394
|
-
*
|
205
|
+
*Willian Tenfen*
|
395
206
|
|
396
|
-
|
397
|
-
and modules under `app/services` to be defined in the `Services` namespace
|
398
|
-
without an extra `app/services/services` directory, this is now enough:
|
207
|
+
* Skip CSS when generating APIs.
|
399
208
|
|
400
|
-
|
401
|
-
# config/initializers/autoloading.rb
|
209
|
+
*Ruy Rocha*
|
402
210
|
|
403
|
-
|
404
|
-
#
|
405
|
-
# In this example we define the module on the spot. Could also be created
|
406
|
-
# elsewhere and its definition loaded here with an ordinary `require`. In
|
407
|
-
# any case, `push_dir` expects a class or module object.
|
408
|
-
module Services; end
|
211
|
+
* Rails console now indicates application name and the current Rails environment:
|
409
212
|
|
410
|
-
|
213
|
+
```txt
|
214
|
+
my-app(dev)> # for RAILS_ENV=development
|
215
|
+
my-app(test)> # for RAILS_ENV=test
|
216
|
+
my-app(prod)> # for RAILS_ENV=production
|
217
|
+
my-app(my_env)> # for RAILS_ENV=my_env
|
411
218
|
```
|
412
219
|
|
413
|
-
|
220
|
+
The application name is derived from the application's module name from `config/application.rb`.
|
221
|
+
For example, `MyApp` will displayed as `my-app` in the prompt.
|
414
222
|
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
be installed as a gem. Rails will then use the installed version of irb for its console instead of
|
419
|
-
relying on Ruby's built-in version.
|
420
|
-
This ensures that Rails has access to the most up-to-date and reliable version of irb for its console.
|
223
|
+
Additionally, the environment name will be colorized when the environment is
|
224
|
+
`development` (blue), `test` (blue), or `production` (red), if your
|
225
|
+
terminal supports it.
|
421
226
|
|
422
227
|
*Stan Lo*
|
423
228
|
|
424
|
-
*
|
425
|
-
|
426
|
-
*Petrik de Heus*
|
427
|
-
|
428
|
-
* Credentials commands (e.g. `bin/rails credentials:edit`) now respect
|
429
|
-
`config.credentials.content_path` and `config.credentials.key_path` when set
|
430
|
-
in `config/application.rb` or `config/environments/#{Rails.env}.rb`.
|
431
|
-
|
432
|
-
Before:
|
229
|
+
* Ensure `autoload_paths`, `autoload_once_paths`, `eager_load_paths`, and
|
230
|
+
`load_paths` only have directories when initialized from engine defaults.
|
433
231
|
|
434
|
-
|
435
|
-
`config/credentials.yml.enc`.
|
232
|
+
Previously, files under the `app` directory could end up there too.
|
436
233
|
|
437
|
-
|
438
|
-
`config/credentials/foo.yml.enc`.
|
234
|
+
*Takumasa Ochi*
|
439
235
|
|
440
|
-
|
441
|
-
was set, `bin/rails credentials:edit` could not be used to edit the
|
442
|
-
credentials. Editing credentials required using `bin/rails
|
443
|
-
encrypted:edit path/to/credentials --key path/to/key`.
|
236
|
+
* Prevent unnecessary application reloads in development.
|
444
237
|
|
445
|
-
|
238
|
+
Previously, some files outside autoload paths triggered unnecessary reloads.
|
239
|
+
With this fix, application reloads according to `Rails.autoloaders.main.dirs`,
|
240
|
+
thereby preventing unnecessary reloads.
|
446
241
|
|
447
|
-
|
448
|
-
would load for the current `RAILS_ENV`.
|
242
|
+
*Takumasa Ochi*
|
449
243
|
|
450
|
-
|
451
|
-
and `config.credentials.key_path` when set in `config/application.rb`
|
452
|
-
or `config/environments/#{Rails.env}.rb`.
|
244
|
+
* Use `oven-sh/setup-bun` in GitHub CI when generating an app with Bun.
|
453
245
|
|
454
|
-
|
455
|
-
`config/credentials/foo.yml.enc` _if_ `config.credentials.content_path`
|
456
|
-
has not been set for the `foo` environment. Ultimately, it will edit
|
457
|
-
the credentials file that the app would load for the `foo` environment.
|
246
|
+
*TangRufus*
|
458
247
|
|
459
|
-
|
248
|
+
* Disable `pidfile` generation in the `production` environment.
|
460
249
|
|
461
|
-
*
|
250
|
+
*Hans Schnedlitz*
|
462
251
|
|
463
|
-
|
252
|
+
* Set `config.action_view.annotate_rendered_view_with_filenames` to `true` in
|
253
|
+
the `development` environment.
|
464
254
|
|
465
|
-
*
|
255
|
+
*Adrian Marin*
|
466
256
|
|
467
|
-
|
468
|
-
Rails outputs all options for running the `rails new` command. This can be
|
469
|
-
confusing to users when they probably want to see the common Rails commands.
|
257
|
+
* Support the `BACKTRACE` environment variable to turn off backtrace cleaning.
|
470
258
|
|
471
|
-
|
472
|
-
inside or outside a Rails application.
|
259
|
+
Useful for debugging framework code:
|
473
260
|
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
*Petrik de Heus*
|
479
|
-
|
480
|
-
* Add Rails::HealthController#show and map it to /up for newly generated applications.
|
481
|
-
Load balancers and uptime monitors all need a basic endpoint to tell whether the app is up.
|
482
|
-
This is a good starting point that'll work in many situations.
|
483
|
-
|
484
|
-
*DHH*
|
485
|
-
|
486
|
-
* Only use HostAuthorization middleware if `config.hosts` is not empty
|
261
|
+
```sh
|
262
|
+
BACKTRACE=1 bin/rails server
|
263
|
+
```
|
487
264
|
|
488
|
-
*
|
265
|
+
*Alex Ghiculescu*
|
489
266
|
|
490
|
-
* Raise
|
491
|
-
options reference an action that doesn't exist. This will be enabled by
|
492
|
-
default but can be overridden via config.
|
267
|
+
* Raise `ArgumentError` when reading `config.x.something` with arguments:
|
493
268
|
|
494
269
|
```ruby
|
495
|
-
#
|
496
|
-
config.action_controller.raise_on_missing_callback_actions = false
|
270
|
+
config.x.this_works.this_raises true # raises ArgumentError
|
497
271
|
```
|
498
272
|
|
499
|
-
*
|
273
|
+
*Sean Doyle*
|
500
274
|
|
501
|
-
*
|
502
|
-
This can be overridden by setting `ENV["WEB_CONCURRENCY"]` or editing the
|
503
|
-
generated "config/puma.rb" directly.
|
275
|
+
* Add default PWA files for manifest and service-worker that are served from `app/views/pwa` and can be dynamically rendered through ERB. Mount these files explicitly at the root with default routes in the generated routes file.
|
504
276
|
|
505
277
|
*DHH*
|
506
278
|
|
507
|
-
*
|
508
|
-
These files can be skipped with `--skip-docker`. They're intended as a starting point for
|
509
|
-
a production deploy of the application. Not intended for development (see Docked Rails for that).
|
510
|
-
|
511
|
-
Example:
|
512
|
-
|
513
|
-
```bash
|
514
|
-
$ docker build -t app .
|
515
|
-
$ docker volume create app-storage
|
516
|
-
$ docker run --rm -it -v app-storage:/rails/storage -p 3000:3000 --env RAILS_MASTER_KEY=<see config/master.key> app
|
517
|
-
```
|
518
|
-
|
519
|
-
You can also start a console or a runner from this image:
|
520
|
-
|
521
|
-
```bash
|
522
|
-
$ docker run --rm -it -v app-storage:/rails/storage --env RAILS_MASTER_KEY=<see config/master.key> app console
|
523
|
-
```
|
524
|
-
|
525
|
-
To create a multi-platform image on Apple Silicon to deploy on AMD or Intel and push to Docker Hub for user/app:
|
526
|
-
|
527
|
-
```bash
|
528
|
-
$ docker login -u <user>
|
529
|
-
$ docker buildx create --use
|
530
|
-
$ docker buildx build --push --platform=linux/amd64,linux/arm64 -t <user/image> .
|
531
|
-
```
|
532
|
-
|
533
|
-
*DHH, Sam Ruby*
|
534
|
-
|
535
|
-
* Add ENV["SECRET_KEY_BASE_DUMMY"] for starting production environment with a generated secret base key,
|
536
|
-
which can be used to run tasks like `assets:precompile` without making the RAILS_MASTER_KEY available
|
537
|
-
to the build process.
|
538
|
-
|
539
|
-
Dockerfile layer example:
|
540
|
-
|
541
|
-
```
|
542
|
-
RUN SECRET_KEY_BASE_DUMMY=1 bundle exec rails assets:precompile
|
543
|
-
```
|
279
|
+
* Updated system tests to now use headless Chrome by default for the new applications.
|
544
280
|
|
545
281
|
*DHH*
|
546
282
|
|
547
|
-
*
|
548
|
-
|
549
|
-
When calling `rails help` most commands missed their description. We now
|
550
|
-
show the same descriptions as shown in `rails -T`.
|
551
|
-
|
552
|
-
*Petrik de Heus*
|
553
|
-
|
554
|
-
* Always generate the storage/ directory with rails new to ensure there's a stable place to
|
555
|
-
put permanent files, and a single mount point for containers to map. Then default sqlite3 databases
|
556
|
-
to live there instead of db/, which is only meant for configuration, not data.
|
283
|
+
* Add GitHub CI files for Dependabot, Brakeman, RuboCop, and running tests by default. Can be skipped with `--skip-ci`.
|
557
284
|
|
558
285
|
*DHH*
|
559
286
|
|
560
|
-
*
|
561
|
-
|
562
|
-
Setting `IRB_USE_AUTOCOMPLETE=true` can override this default.
|
563
|
-
|
564
|
-
*Stan Lo*
|
565
|
-
|
566
|
-
* Add `config.precompile_filter_parameters`, which enables precompilation of
|
567
|
-
`config.filter_parameters` using `ActiveSupport::ParameterFilter.precompile_filters`.
|
568
|
-
Precompilation can improve filtering performance, depending on the quantity
|
569
|
-
and types of filters.
|
570
|
-
|
571
|
-
`config.precompile_filter_parameters` defaults to `true` for
|
572
|
-
`config.load_defaults 7.1` and above.
|
573
|
-
|
574
|
-
*Jonathan Hefner*
|
575
|
-
|
576
|
-
* Add `after_routes_loaded` hook to `Rails::Railtie::Configuration` for
|
577
|
-
engines to add a hook to be called after application routes have been
|
578
|
-
loaded.
|
579
|
-
|
580
|
-
```ruby
|
581
|
-
MyEngine.config.after_routes_loaded do
|
582
|
-
# code that must happen after routes have been loaded
|
583
|
-
end
|
584
|
-
```
|
585
|
-
|
586
|
-
*Chris Salzberg*
|
587
|
-
|
588
|
-
* Send 303 See Other status code back for the destroy action on newly generated
|
589
|
-
scaffold controllers.
|
590
|
-
|
591
|
-
*Tony Drake*
|
592
|
-
|
593
|
-
* Add `Rails.application.deprecators` as a central point to manage deprecators
|
594
|
-
for an application.
|
595
|
-
|
596
|
-
Individual deprecators can be added and retrieved from the collection:
|
597
|
-
|
598
|
-
```ruby
|
599
|
-
Rails.application.deprecators[:my_gem] = ActiveSupport::Deprecation.new("2.0", "MyGem")
|
600
|
-
Rails.application.deprecators[:other_gem] = ActiveSupport::Deprecation.new("3.0", "OtherGem")
|
601
|
-
```
|
602
|
-
|
603
|
-
And the collection's configuration methods affect all deprecators in the
|
604
|
-
collection:
|
605
|
-
|
606
|
-
```ruby
|
607
|
-
Rails.application.deprecators.debug = true
|
608
|
-
|
609
|
-
Rails.application.deprecators[:my_gem].debug
|
610
|
-
# => true
|
611
|
-
Rails.application.deprecators[:other_gem].debug
|
612
|
-
# => true
|
613
|
-
```
|
614
|
-
|
615
|
-
Additionally, all deprecators in the collection can be silenced for the
|
616
|
-
duration of a given block:
|
617
|
-
|
618
|
-
```ruby
|
619
|
-
Rails.application.deprecators.silence do
|
620
|
-
Rails.application.deprecators[:my_gem].warn # => silenced (no warning)
|
621
|
-
Rails.application.deprecators[:other_gem].warn # => silenced (no warning)
|
622
|
-
end
|
623
|
-
```
|
624
|
-
|
625
|
-
*Jonathan Hefner*
|
626
|
-
|
627
|
-
* Move dbconsole logic to Active Record connection adapter.
|
628
|
-
|
629
|
-
Instead of hosting the connection logic in the command object, the
|
630
|
-
database adapter should be responsible for connecting to a console session.
|
631
|
-
This patch moves #find_cmd_and_exec to the adapter and exposes a new API to
|
632
|
-
lookup the adapter class without instantiating it.
|
633
|
-
|
634
|
-
*Gannon McGibbon*, *Paarth Madan*
|
635
|
-
|
636
|
-
* Add `Rails.application.message_verifiers` as a central point to configure
|
637
|
-
and create message verifiers for an application.
|
638
|
-
|
639
|
-
This allows applications to, for example, rotate old `secret_key_base`
|
640
|
-
values:
|
641
|
-
|
642
|
-
```ruby
|
643
|
-
config.before_initialize do |app|
|
644
|
-
app.message_verifiers.rotate(secret_key_base: "old secret_key_base")
|
645
|
-
end
|
646
|
-
```
|
647
|
-
|
648
|
-
And for libraries to create preconfigured message verifiers:
|
649
|
-
|
650
|
-
```ruby
|
651
|
-
ActiveStorage.verifier = Rails.application.message_verifiers["ActiveStorage"]
|
652
|
-
```
|
653
|
-
|
654
|
-
*Jonathan Hefner*
|
655
|
-
|
656
|
-
* Support MySQL's ssl-mode option for the dbconsole command.
|
657
|
-
|
658
|
-
Verifying the identity of the database server requires setting the ssl-mode
|
659
|
-
option to VERIFY_CA or VERIFY_IDENTITY. This option was previously ignored
|
660
|
-
for the dbconsole command.
|
661
|
-
|
662
|
-
*Petrik de Heus*
|
663
|
-
|
664
|
-
* Delegate application record generator description to orm hooked generator.
|
665
|
-
|
666
|
-
*Gannon McGibbon*
|
667
|
-
|
668
|
-
* Show BCC recipients when present in Action Mailer previews.
|
669
|
-
|
670
|
-
*Akshay Birajdar*
|
671
|
-
|
672
|
-
* Extend `routes --grep` to also filter routes by matching against path.
|
673
|
-
|
674
|
-
Example:
|
675
|
-
|
676
|
-
```bash
|
677
|
-
$ bin/rails routes --grep /cats/1
|
678
|
-
Prefix Verb URI Pattern Controller#Action
|
679
|
-
cat GET /cats/:id(.:format) cats#show
|
680
|
-
PATCH /cats/:id(.:format) cats#update
|
681
|
-
PUT /cats/:id(.:format) cats#update
|
682
|
-
DELETE /cats/:id(.:format) cats#destroy
|
683
|
-
```
|
684
|
-
|
685
|
-
*Orhan Toy*
|
686
|
-
|
687
|
-
* Improve `rails runner` output when given a file path that doesn't exist.
|
688
|
-
|
689
|
-
*Tekin Suleyman*
|
690
|
-
|
691
|
-
* `config.allow_concurrency = false` now use a `Monitor` instead of a `Mutex`
|
692
|
-
|
693
|
-
This allows to enable `config.active_support.executor_around_test_case` even
|
694
|
-
when `config.allow_concurrency` is disabled.
|
695
|
-
|
696
|
-
*Jean Boussier*
|
697
|
-
|
698
|
-
* Add `routes --unused` option to detect extraneous routes.
|
699
|
-
|
700
|
-
Example:
|
287
|
+
* Add Brakeman by default for static analysis of security vulnerabilities. Allow skipping with `--skip-brakeman option`.
|
701
288
|
|
702
|
-
|
703
|
-
$ bin/rails routes --unused
|
289
|
+
*vipulnsward*
|
704
290
|
|
705
|
-
|
291
|
+
* Add RuboCop with rules from `rubocop-rails-omakase` by default. Skip with `--skip-rubocop`.
|
706
292
|
|
707
|
-
|
708
|
-
one GET /one(.:format) action#one
|
709
|
-
two GET /two(.:format) action#two
|
710
|
-
```
|
711
|
-
|
712
|
-
*Gannon McGibbon*
|
713
|
-
|
714
|
-
* Add `--parent` option to controller generator to specify parent class of job.
|
293
|
+
*DHH* and *zzak*
|
715
294
|
|
716
|
-
|
295
|
+
* Use `bin/rails runner --skip-executor` to not wrap the runner script with an
|
296
|
+
Executor.
|
717
297
|
|
718
|
-
|
719
|
-
|
720
|
-
```ruby
|
721
|
-
class Admin::UsersController < AdminController
|
722
|
-
# ...
|
723
|
-
end
|
724
|
-
```
|
725
|
-
|
726
|
-
*Gannon McGibbon*
|
727
|
-
|
728
|
-
* In-app custom credentials templates are now supported. When a credentials
|
729
|
-
file does not exist, `rails credentials:edit` will now try to use
|
730
|
-
`lib/templates/rails/credentials/credentials.yml.tt` to generate the
|
731
|
-
credentials file, before falling back to the default template.
|
732
|
-
|
733
|
-
This allows e.g. an open-source Rails app (which would not include encrypted
|
734
|
-
credentials files in its repo) to include a credentials template, so that
|
735
|
-
users who install the app will get a custom pre-filled credentials file when
|
736
|
-
they run `rails credentials:edit`.
|
737
|
-
|
738
|
-
*Jonathan Hefner*
|
739
|
-
|
740
|
-
* Except for `dev` and `test` environments, newly generated per-environment
|
741
|
-
credentials files (e.g. `config/credentials/production.yml.enc`) now include
|
742
|
-
a `secret_key_base` for convenience, just as `config/credentials.yml.enc`
|
743
|
-
does.
|
744
|
-
|
745
|
-
*Jonathan Hefner*
|
746
|
-
|
747
|
-
* `--no-*` options now work with the app generator's `--minimal` option, and
|
748
|
-
are both comprehensive and precise. For example:
|
749
|
-
|
750
|
-
```bash
|
751
|
-
$ rails new my_cool_app --minimal
|
752
|
-
Based on the specified options, the following options will also be activated:
|
753
|
-
|
754
|
-
--skip-active-job [due to --minimal]
|
755
|
-
--skip-action-mailer [due to --skip-active-job, --minimal]
|
756
|
-
--skip-active-storage [due to --skip-active-job, --minimal]
|
757
|
-
--skip-action-mailbox [due to --skip-active-storage, --minimal]
|
758
|
-
--skip-action-text [due to --skip-active-storage, --minimal]
|
759
|
-
--skip-javascript [due to --minimal]
|
760
|
-
--skip-hotwire [due to --skip-javascript, --minimal]
|
761
|
-
--skip-action-cable [due to --minimal]
|
762
|
-
--skip-bootsnap [due to --minimal]
|
763
|
-
--skip-dev-gems [due to --minimal]
|
764
|
-
--skip-system-test [due to --minimal]
|
765
|
-
|
766
|
-
...
|
767
|
-
|
768
|
-
$ rails new my_cool_app --minimal --no-skip-active-storage
|
769
|
-
Based on the specified options, the following options will also be activated:
|
770
|
-
|
771
|
-
--skip-action-mailer [due to --minimal]
|
772
|
-
--skip-action-mailbox [due to --minimal]
|
773
|
-
--skip-action-text [due to --minimal]
|
774
|
-
--skip-javascript [due to --minimal]
|
775
|
-
--skip-hotwire [due to --skip-javascript, --minimal]
|
776
|
-
--skip-action-cable [due to --minimal]
|
777
|
-
--skip-bootsnap [due to --minimal]
|
778
|
-
--skip-dev-gems [due to --minimal]
|
779
|
-
--skip-system-test [due to --minimal]
|
780
|
-
|
781
|
-
...
|
782
|
-
```
|
298
|
+
*Ben Sheldon*
|
783
299
|
|
784
|
-
|
300
|
+
* Fix isolated engines to take `ActiveRecord::Base.table_name_prefix` into consideration.
|
785
301
|
|
786
|
-
|
787
|
-
|
302
|
+
This will allow for engine defined models, such as inside Active Storage, to respect
|
303
|
+
Active Record table name prefix configuration.
|
788
304
|
|
789
|
-
*
|
305
|
+
*Chedli Bourguiba*
|
790
306
|
|
791
|
-
*
|
307
|
+
* Fix running `db:system:change` when the app has no Dockerfile.
|
792
308
|
|
793
|
-
|
794
|
-
|
795
|
-
* Correctly check if frameworks are disabled when running app:update.
|
309
|
+
*Hartley McGuire*
|
796
310
|
|
797
|
-
|
311
|
+
* In Action Mailer previews, list inline attachments separately from normal
|
312
|
+
attachments.
|
798
313
|
|
799
|
-
|
314
|
+
For example, attachments that were previously listed like
|
800
315
|
|
801
|
-
|
316
|
+
> Attachments: logo.png file1.pdf file2.pdf
|
802
317
|
|
803
|
-
|
318
|
+
will now be listed like
|
804
319
|
|
805
|
-
|
320
|
+
> Attachments: file1.pdf file2.pdf (Inline: logo.png)
|
806
321
|
|
807
|
-
*
|
322
|
+
*Christian Schmidt* and *Jonathan Hefner*
|
808
323
|
|
809
|
-
*
|
324
|
+
* In mailer preview, only show SMTP-To if it differs from the union of To, Cc and Bcc.
|
810
325
|
|
811
|
-
|
812
|
-
go through Rake and cause the app to be booted twice. Now all the test:*
|
813
|
-
subtasks are defined as Thor tasks and directly load the test environment.
|
326
|
+
*Christian Schmidt*
|
814
327
|
|
815
|
-
|
328
|
+
* Enable YJIT by default on new applications running Ruby 3.3+.
|
816
329
|
|
817
|
-
|
330
|
+
This can be disabled by setting `Rails.application.config.yjit = false`
|
818
331
|
|
819
|
-
*
|
332
|
+
*Jean Boussier*, *Rafael Mendonça França*
|
820
333
|
|
821
|
-
*
|
334
|
+
* In Action Mailer previews, show date from message `Date` header if present.
|
822
335
|
|
823
|
-
|
336
|
+
*Sampat Badhe*
|
824
337
|
|
825
|
-
|
338
|
+
* Exit with non-zero status when the migration generator fails.
|
826
339
|
|
827
|
-
*
|
340
|
+
*Katsuhiko YOSHIDA*
|
828
341
|
|
829
|
-
*
|
830
|
-
can be opted out of with the app generator's `--skip-decrypted-diffs` flag.
|
342
|
+
* Use numeric UID and GID in Dockerfile template.
|
831
343
|
|
832
|
-
|
344
|
+
The Dockerfile generated by `rails new` sets the default user and group
|
345
|
+
by name instead of UID:GID. This can cause the following error in Kubernetes:
|
833
346
|
|
834
|
-
* Support declarative-style test name filters with `bin/rails test`.
|
835
|
-
|
836
|
-
This makes it possible to run a declarative-style test such as:
|
837
|
-
|
838
|
-
```ruby
|
839
|
-
class MyTest < ActiveSupport::TestCase
|
840
|
-
test "does something" do
|
841
|
-
# ...
|
842
|
-
end
|
843
|
-
end
|
844
347
|
```
|
845
|
-
|
846
|
-
Using its declared name:
|
847
|
-
|
848
|
-
```bash
|
849
|
-
$ bin/rails test test/my_test.rb -n "does something"
|
348
|
+
container has runAsNonRoot and image has non-numeric user (rails), cannot verify user is non-root
|
850
349
|
```
|
851
350
|
|
852
|
-
|
853
|
-
|
854
|
-
```bash
|
855
|
-
$ bin/rails test test/my_test.rb -n test_does_something
|
856
|
-
```
|
351
|
+
This change sets default user and group by their numeric values.
|
857
352
|
|
858
|
-
*
|
353
|
+
*Ivan Fedotov*
|
859
354
|
|
860
|
-
*
|
355
|
+
* Disallow invalid values for rails new options.
|
861
356
|
|
862
|
-
`--
|
357
|
+
The `--database`, `--asset-pipeline`, `--css`, and `--javascript` options
|
358
|
+
for `rails new` take different arguments. This change validates them.
|
863
359
|
|
864
|
-
|
360
|
+
*Tony Drake*, *Akhil G Krishnan*, *Petrik de Heus*
|
865
361
|
|
866
|
-
|
362
|
+
* Conditionally print `$stdout` when invoking `run_generator`.
|
867
363
|
|
868
|
-
|
364
|
+
In an effort to improve the developer experience when debugging
|
365
|
+
generator tests, we add the ability to conditionally print `$stdout`
|
366
|
+
instead of capturing it.
|
869
367
|
|
870
|
-
|
368
|
+
This allows for calls to `binding.irb` and `puts` work as expected.
|
871
369
|
|
872
|
-
|
873
|
-
|
874
|
-
Fix `rails test ./test/model/post_test.rb` to run a single test file.
|
875
|
-
|
876
|
-
*Shouichi Kamiya* and *oljfte*
|
877
|
-
|
878
|
-
* Deprecate `config.enable_dependency_loading`. This flag addressed a limitation of the `classic` autoloader and has no effect nowadays. To fix this deprecation, please just delete the reference.
|
879
|
-
|
880
|
-
*Xavier Noria*
|
881
|
-
|
882
|
-
* Define `config.enable_reloading` to be `!config.cache_classes` for a more intuitive name. While `config.enable_reloading` and `config.reloading_enabled?` are preferred from now on, `config.cache_classes` is supported for backwards compatibility.
|
883
|
-
|
884
|
-
*Xavier Noria*
|
885
|
-
|
886
|
-
* Add JavaScript dependencies installation on bin/setup
|
887
|
-
|
888
|
-
Add `yarn install` to bin/setup when using esbuild, webpack, or rollout.
|
889
|
-
|
890
|
-
*Carlos Ribeiro*
|
891
|
-
|
892
|
-
* Use `controller_class_path` in `Rails::Generators::NamedBase#route_url`
|
893
|
-
|
894
|
-
The `route_url` method now returns the correct path when generating
|
895
|
-
a namespaced controller with a top-level model using `--model-name`.
|
896
|
-
|
897
|
-
Previously, when running this command:
|
898
|
-
|
899
|
-
```bash
|
900
|
-
$ bin/rails generate scaffold_controller Admin/Post --model-name Post
|
901
|
-
```
|
902
|
-
|
903
|
-
the comments above the controller action would look like:
|
904
|
-
|
905
|
-
``` ruby
|
906
|
-
# GET /posts
|
907
|
-
def index
|
908
|
-
@posts = Post.all
|
909
|
-
end
|
370
|
+
```sh
|
371
|
+
RAILS_LOG_TO_STDOUT=true ./bin/test test/generators/actions_test.rb
|
910
372
|
```
|
911
373
|
|
912
|
-
|
913
|
-
|
914
|
-
``` ruby
|
915
|
-
# GET /admin/posts
|
916
|
-
def index
|
917
|
-
@posts = Post.all
|
918
|
-
end
|
919
|
-
```
|
920
|
-
|
921
|
-
Fixes #44662.
|
922
|
-
|
923
|
-
*Andrew White*
|
924
|
-
|
925
|
-
* No longer add autoloaded paths to `$LOAD_PATH`.
|
926
|
-
|
927
|
-
This means it won't be possible to load them with a manual `require` call, the class or module can be referenced instead.
|
928
|
-
|
929
|
-
Reducing the size of `$LOAD_PATH` speed-up `require` calls for apps not using `bootsnap`, and reduce the
|
930
|
-
size of the `bootsnap` cache for the others.
|
931
|
-
|
932
|
-
*Jean Boussier*
|
933
|
-
|
934
|
-
* Remove default `X-Download-Options` header
|
935
|
-
|
936
|
-
This header is currently only used by Internet Explorer which
|
937
|
-
will be discontinued in 2022 and since Rails 7 does not fully
|
938
|
-
support Internet Explorer this header should not be a default one.
|
939
|
-
|
940
|
-
*Harun Sabljaković*
|
941
|
-
|
942
|
-
* Add .node-version files for Rails apps that use Node.js
|
943
|
-
|
944
|
-
Node version managers that make use of this file:
|
945
|
-
https://github.com/shadowspawn/node-version-usage#node-version-file-usage
|
374
|
+
*Steve Polito*
|
946
375
|
|
947
|
-
|
376
|
+
* Remove the option `config.public_file_server.enabled` from the generators
|
377
|
+
for all environments, as the value is the same in all environments.
|
948
378
|
|
949
|
-
*
|
379
|
+
*Adrian Hirt*
|
950
380
|
|
951
|
-
Please check [7-
|
381
|
+
Please check [7-1-stable](https://github.com/rails/rails/blob/7-1-stable/railties/CHANGELOG.md) for previous changes.
|