-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rails 6 #936
Conversation
# end | ||
|
||
puts "\n== Preparing database ==" | ||
system! 'bin/rails db:setup' | ||
system! 'bin/rails db:prepare' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: I have to check this is ok.
@@ -12,6 +12,8 @@ | |||
# policy.object_src :none | |||
# policy.script_src :self, :https | |||
# policy.style_src :self, :https | |||
# # If you are using webpack-dev-server then specify webpack-dev-server host | |||
# policy.connect_src :self, :https, "http://localhost:3035", "ws://localhost:3035" if Rails.env.development? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New features As others have commented, #937 is maybe the most useful part of the rails 6 feature set; outside of the swap to webpack by default. |
Ugh, https://dev.to/nuttapon/handle-csrf-issue-when-upgrade-rails-from-5-to-6-1edp will need to be added to our changelog |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I installed locally and performed basic CRUD actions. Everything seems to be working as before. No features seem to have broken in upgrading
Fixes #842