Releases: hotwired-laravel/turbo-laravel
Releases · hotwired-laravel/turbo-laravel
2.0.0-beta2
Changelog
- NEW: New Blade components that allow configuring Turbo Drive behavior were added. See docs
- CHANGED: The Blade components moved from the
<x-turbo-*notation to<x-turbo::*; Besides looking better, the later format allows us to remove the PHP classes and use anonymous components instead. The 2.x upgrade guide was updated.
2.0.0-beta1
What's Changed
- CHANGED: Renames the Code namespace and Composer/Packagist namespace by @tonysm in #112
- NEW:
Request::wasFromTurboFramemacro by @tonysm in #123 - NEW: Adds the plural version of wantsTurboStream() macro for convenience by @tonysm in #124
- NEW: Turbo frame testing helpers by @tonysm in #125
- NEW: Send flash messages via query string on Turbo Native redirects (recede, resume, & refresh) by @tonysm in #127
- NEW: Page Refreshes by @tonysm in #128
- INTERNAL: Workbench Improvements by @crynobone in #117
- INTERNAL: Workbench by @tonysm in #116
New Contributors
- @crynobone made their first contribution in #117
Full Changelog: 1.12.2...2.0.0-beta1
Upgrade guide can be found at https://turbo-laravel.com/docs/2.x/upgrade
1.12.2
1.12.1
What's Changed
- Reuse
Nameinstances to improve performance when usingdom_idanddom_classfunctions (on my benchmarks, it went from 3.596μs to just 0.252μs) by @tobyzerner in #106
New Contributors
- @tobyzerner made their first contribution in #106
Full Changelog: 1.12.0...1.12.1
1.12.0
Changelog
- FIXED: Fixes the redirect route guessing behavior when using form requests, since in that case, Laravel will set the exception's
redirectTo, bypassing the guessing behavior. Thanks, @yttrian, for reporting it (see #105) - NEW: Adds a new
redirect_guessing_exceptionsconfig in theturbo-laravel.phpfor adding exceptions to the guessing behavior. The internal redirect will still happen when using this config, just not the route-guessing behavior.
1.11.1
1.11.0
1.10.0
1.9.0
Changelog
- NEW: Turbo Stream broadcasts are now decoupled from models! Testing broadcasts was also improved! (#97 and handmade broadcasts docs and testing broadcasts docs)
- FIXED: The
turbo-echo-stream-sourcecustom HTML tag that ships with the package was not being able to connect to public channels (#98)