You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CHANGED: When handling invalid form submissions we were previously flashing the errors and redirecting to the form page (based on the resource route naming convention). This had to change because Turbo expects only successful responses to redirect, while invalid responses should return a 422 status code with the form containing the invalid messages. #36 Thanks to @bakerkretzmar@taylorotwell@tobyzerner for the help there.
CHANGED: The TurboMiddleware is now automatically prepended to the web route group. If you were already using it, either move it to the top of the group stack or remove it entirely from your HTTP Kernel.
NEW: We can now build and combine multiple Turbo Stream responses in a single Response. This should be an alternative to using a custom Turbo Stream view. #39
CHANGED: updated the JS scaffolding to add a resources/js/libs folder with a file for each lib. New installs should be more organized this way (I think)
CHANGED: updated @hotwired/turbo to the latest RC3
CHANGED: updated Stimulus imports and installs. The package moved from stimulus to @hotwired/stimulus.
CHANGED: tweaked the install command so it generates a more organized initial setup.