File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
test/sandbox/config/environments Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ nav_order: 5
1010
1111## main
1212
13+ * Use correct value for the ` config.action_dispatch.show_exceptions ` config option for edge Rails.
14+
15+ * Cameron Dutro*
16+
1317* Remove unsupported versions of Rails & Ruby from CI matrix.
1418
1519 * Reegan Viljoen*
Original file line number Diff line number Diff line change 1717 config . action_controller . perform_caching = false
1818
1919 # Raise exceptions instead of rendering exception templates
20- config . action_dispatch . show_exceptions = false
20+ config . action_dispatch . show_exceptions = ( Rails :: VERSION :: STRING < "7.1" ) ? false : :none
2121
2222 # Disable request forgery protection in test environment
2323 config . action_controller . allow_forgery_protection = false
You can’t perform that action at this time.
0 commit comments