All Versions
124
Latest Version
Avg Release Cycle
47 days
Latest Release
588 days ago

Changelog History
Page 1

  • v3.0.1 Changes

    August 18, 2022

    ๐Ÿ”„ Changed

    • ๐Ÿšš coffee-script is removed from development dependency
      • It's not runtime dependency, so it shouldn't impact your application
      • :coffee filter still works if you explicitly install coffee-script, however, it's no longer maintained and possibly removed in the future.
  • v3.0.0 Changes

    August 07, 2022

    ๐Ÿ”„ Changed

    • ๐Ÿ’ฅ [breaking] Use disable_capture: false for non-Rails environments
      • :disable_capture is an option introduced in v2.16.1. See its release notes for details.
      • If you use Rails, it continues to use disable_capture: true, so you're not impacted by this change.
  • v2.16.2 Changes

    August 07, 2022

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fix an issue when disable_capture: false is set and a Ruby comment is put after do
  • v2.16.1 Changes

    August 07, 2022

    โž• Added

    • Introduce :disable_capture option to capture a block
      • Default: disable_capture: true (backward-compatible)
        • For Rails, this must be true anyway to use Rails-native capturing.
      • If you override the option like disable_capture: false in Hamlit::Template, scripts starting with = (e.g. = render do) capture a block content.
        • Scripts starting with - (e.g. - users.each do) are not impacted.
  • v2.16.0 Changes

    February 03, 2022

    โž• Added

    • ๐Ÿ‘ป Raise an exception on a Haml-level syntax error with hamlit compile -c #189 Thanks to @dlwr
  • v2.15.2 Changes

    January 04, 2022

    ๐Ÿ›  Fixed

    • Consider playsinline a boolean attribute #187 Thanks to @ghiculescu
  • v2.15.1 Changes

    July 23, 2021

    ๐Ÿ›  Fixed

    • โœ‚ Remove benchmark from the gem package to reduce its size #186 Thanks to @pocke
  • v2.15.0 Changes

    April 12, 2021

    โž• Added

    • ๐Ÿš… Always use Hamlit when both haml.gem and hamlit.gem are installed in Rails Thanks to @igor-drozdov
  • v2.14.6 Changes

    March 23, 2021

    ๐Ÿ›  Fixed

    • โšก๏ธ Optimize v2.14.5's implementation a little
  • v2.14.5 Changes

    March 23, 2021

    โž• Added

    • Support config.action_view.annotate_rendered_view_with_filenames = true of Rails 6.1 Thanks to @kirin121