Skip to content

Releases: usernotnull/tall-toasts

v1.2.1

19 Nov 06:33
Compare
Choose a tag to compare

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

09 Nov 12:32
Compare
Choose a tag to compare
  • [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

07 Nov 20:08
dae73ba
Compare
Choose a tag to compare

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

30 Oct 07:24
Compare
Choose a tag to compare

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

28 Oct 17:05
Compare
Choose a tag to compare

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

11 Oct 12:51
Compare
Choose a tag to compare

✨ First public release!