Skip to content

Releases: tallstackui/envbar

v1.2.0

28 Mar 18:06

Choose a tag to compare

What's Changed

Notes

This new version brings support for TailwindCSS 4 and also for Laravel 12. Since this tool is extremely simple, we can do this without compromising the main version, 1.x. In addition, there are some new features:

  • The way to identify the routes to be ignored was changed from Request::is to Request::routeIs
    • ⚠️ If you published the config/envbar.php please, upgrade the ignore_on to this new pattern:
    // ...
    
    'ignore_on' => [
        'pulse.*',
        'horizon.*',
        'telescope.*',
    ],
  • We've added the ability to set the EnvBar at the bottom using ENVBAR_BOTTOM env. variable
  • We've added the ability to insert the EnvBar wherever you want using @envbar in the HTML. Otherwise, the EnvBar will still be injected automatically

Full Changelog: v1.0.1...v1.2.0