Releases: usernotnull/tall-toasts
Releases · usernotnull/tall-toasts
v1.2.1
What's Changed
Fixes
- Avoid showing 'undefined' as toast title/message in rare situations.
Library Updates
- Update orchestra/testbench requirement from ^v6.22 to ^v6.23 by @dependabot in #29
- Update rollup requirement from ^2.59.0 to ^2.60.0 by @dependabot in #30
- Update friendsofphp/php-cs-fixer requirement from ^v3.2 to ^v3.3 by @dependabot in #35
- Update @babel/preset-env requirement from ^7.16.0 to ^7.16.4 by @dependabot in #36
- Update pestphp/pest requirement from ^v1.20 to ^v1.21 by @dependabot in #37
Full Changelog: v1.2.0...v1.2.1
v1.2.0
- [FEATURE] Sanitization of the toast title and message is now optional and enabled by default.
toast()
->danger('I will go…<br><i>to the next line 💪</i>', 'I am <span style="color:red;">HOT</span>')
->doNotSanitize()
->push();
IF you have previously published the vendor views, you should re-publish them, or just change x-text
to x-html
inside includes\content.blade.php
See the documentation's Text Sanitization, and review
the security best practices.
v1.1.2
What's Changed
Fixes
- Fixed container view which was not allowing click-through between and around toasts.
Full Changelog: https://github.com/usernotnull/tall-toasts/commits/v1.1.2
v1.1.1
What's Changed
Fixes
- Fixed a rare race condition between frontend and backend which caused an infinite loop of livewire requests
Full Changelog: https://github.com/usernotnull/tall-toasts/commits/v1.1.1
v1.1.0
What's Changed
New Features
- Ability to delay toasts with pushOnNextPage()
- Make session keys configurable
Fixes
- Issue with dispatchBrowserEvent if called in same livewire request with a toast notification
Full Changelog: https://github.com/usernotnull/tall-toasts/commits/v1.1.0
v1.0.0
✨ First public release!