All Versions
19
Latest Version
Avg Release Cycle
346 days
Latest Release
1937 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.7.0 Changes
August 20, 2019- ➕ Add support for Rails 6.0.
- ⬇️ Drop support for Rails < 5.0 and Ruby < 2.4.
-
v0.6.1 Changes
April 14, 2018- ➕ Add support for Rails 5.2.
- Fix issue causing blank class not being applied to field wrapper when the result of a Proc is empty.
-
v0.6.0 Changes
May 15, 2017- 🚅 Relaxed dependencies to support Rails 5.1.
-
v0.5.0 Changes
December 09, 2015- 🚅 Relaxed dependencies to support Rails 5.
- ✂ Removed support for Rails
3.2
and4.0
and Ruby1.9.3
and2.0.0
.
✨ enhancements
- Do not generate label/content/wrapper/collection classes when config is set to
nil
.
-
v0.4.0 Changes
April 12, 2015✨ enhancements
- Change default
wrapper_tag
to generate adiv
instead ofp
. Thep
tag generates invalid HTML with collections:p > ul
, and failed tests on Rails 4.2. If you depend on thep
tag being generated, change your Show For config to setwrapper_tag
to:p
. - Remove deprecated
:method
in favor of:using
. - Improve support to Rails 4.x associations with more duck typing instead of Array checks.
- Support Rails 4.1/4.2 and Ruby 2.1/2.2.
- Add
skip_blanks
configuration option to skip generating blank attributes instead of generating them with a default message. (by github.com/moktin) - Add
slim
template for the install generator. (by github.com/voanhduy1512) - Add
separator
option that overrides the global configuration (by github.com/bernardofire)
🛠 bugfix
- Do not yield default blank value to the block when using an empty association. (by github.com/aptinio)
- Change default
-
v0.3.0 Changes
March 18, 2014🐛 bug fix
- Fix blank value not being applied when using a block. (by github.com/tfwright)
-
v0.3.0.rc Changes
May 08, 2013✨ enhancements
- Support Rails 4.
- Drop support to Rails < 3.2 and Ruby 1.8.
-
v0.2.6 Changes
May 08, 2013✨ enhancements
- Ruby 2.0 support.
- Add Haml template. (by github.com/nashby) Closes #12.
- Add
blank_html
tanslation. (by github.com/nashby) - Add
show_for_class
configuration option. (by github.com/nashby)
🐛 bug fix
- Make show_for works with namespaced models. (by github.com/fabiokr)
- Add
blank_content_class
to the attributes. (by github.com/blakehilscher). Closes #24. - Don't call
association.map
if association method is nil (by github.com/nashby). Closes #40.
-
v0.2.5 Changes
May 12, 2012✨ enhancements
- Add a
:value
option for attribute (by github.com/ml-gt) - Add
label_class
,content_class
,wrapper_class
andcollection_class
configuration options (by github.com/wojtekmach)
🐛 bug fix
- Fix problem with
label => false
andhtml_safe
(label => false) (by github.com/nashby)
- Add a
-
v0.2.4 Changes
February 06, 2011✨ enhancements
- Do not add separator if label is not present (by github.com/eugenebolshakov)
- Add method for output value only (by github.com/jenkek)
🐛 bug fix
- Fix empty labels to be
html_safe
(label => false) (by github.com/eugenebolshakov)