All Versions
124
Latest Version
Avg Release Cycle
47 days
Latest Release
755 days ago
Changelog History
Page 1
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.
- ๐ coffee-script is removed from development dependency
-
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.
- ๐ฅ [breaking] Use
-
v2.16.2 Changes
August 07, 2022๐ Fixed
- ๐ Fix an issue when
disable_capture: false
is set and a Ruby comment is put afterdo
- ๐ Fix an issue when
-
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.
- For Rails, this must be
- 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.
- Scripts starting with
- Default:
- Introduce
-
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
- ๐ป Raise an exception on a Haml-level syntax error with
-
v2.15.2 Changes
January 04, 2022๐ Fixed
- Consider
playsinline
a boolean attribute #187 Thanks to @ghiculescu
- Consider
-
v2.15.1 Changes
July 23, 2021๐ Fixed
- โ Remove
benchmark
from the gem package to reduce its size #186 Thanks to @pocke
- โ Remove
-
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
- Support