You can find recent releases with docs in GitHub:
https://github.com/bootstrap-ruby/bootstrap_form/releases
- 5.3.2 Closed issues
- 5.3.1 Closed issues
- 5.3.0 Closed issues
- 5.2.2 Closed issues
- 5.2.2 Closed issues
- 5.2.1 Closed issues
- 5.2.0 Closed issues
- 5.1.0 Closed issues
- 5.0.0
- 4.5.0
- 4.4.0
- 4.3.0
- 4.2.0
- 4.1.0
- 4.0.0
- 4.0.0.alpha1
- 2.7.0
- 2.6.0
- 2.5.3
- 2.5.2
- 2.5.1
- 2.5.0
- 2.4.0
The tooling to support our old way of doing the change log doesn't work anymore, and we don't have a better solution, so this change log has become unreliable since version 4.5.0. Please refer to the commit history if you need to debug changes.
-
#572: Simplify the formatting of the file upload control to follow the new Bootstrap 5 styles
-
#573: Add support for Bootstrap 5's floating labels
-
#215: Add
include_hidden
option tocheck_box
- #582: Fix tests in bootstrap-5 branch, removes Rubocop offenses, and adds testing with Rails 6.1.
- [#569] Remove
role="form"
from the default generated form HTML so forms pass W3C validation. (Only a breaking change if you depended on theform
attribute.bootstrap_form
doesn't depend on it.)
- Your contribution here!
- [#284] [#300] Field's help message is displayed, even while inline error message is displayed. - @antpaw
5.0.0 (2021-11-11)
- Generates markup for Bootstrap 5.
- #572: Simplify the formatting of the file upload control to follow the new Bootstrap 5 styles
- #573: Add support for Bootstrap 5's floating labels
- #582: Fix tests in bootstrap-5 branch, removes Rubocop offenses, and adds testing with Rails 6.1.
- [#569] Remove
role="form"
from the default generated form HTML so forms pass W3C validation. (Only a breaking change if you depended on theform
attribute.bootstrap_form
doesn't depend on it.)
- Your contribution here!
4.5.0 (2020-04-29)
- #562: Allow to configure default form attributes - @sharshenov.
4.4.0 (2020-03-08)
- #557: Allow prepending and appending multiple items to an input by passing an array to
prepend
andappend
options - @donv. - #550: Add
default_layout
so we can use it for all forms - @duleorlovic.
- Your contribution here!
4.3.0 (2019-09-22)
- [#503] Support Rails 6.0.0.
- Small documentation changes.
4.2.0 (2019-03-08)
- [#508] Support
rich_text_area
AKA the Trix editor on Rails 6+. - [#518] Move all inputs to separate, more maintainable files.
- #514: Add support for BS 4.2 switches - @simmerz
- #522: Clean up rubocop offences - @simmerz
- #524: Fix non-inline layout rendering without help text - @simmerz
4.1.0 (2019-01-19)
- [#259] Allow to render input without wrapper [@yevhene].
- [#496] Ensure required attribute is passed through to input tag.
4.0.0 (2018-10-27)
🚨 This release adds support for Bootstrap v4 and drops support for Bootstrap v3. 🚨
If your app uses Bootstrap v3, you should continue using bootstrap_form 2.7.x instead.
Bootstrap v3 and v4 are very different, and thus bootstrap_form now produces different markup in order to target v4. The changes are too many to list here; you can refer to Bootstrap's Migrating to v4 page for a detailed explanation.
In addition to these necessary markup changes, the bootstrap_form API itself has the following important changes in this release.
- See Migrating to v4.
- [#476] Give a way to pass classes to the
div.form-check
wrapper for check boxes and radio buttons - @lcreid. - 461: default form-inline class applied to parent content div on date select helpers. Can override with a :skip_inline option on the field helper - @lancecarlson.
- The
button
,submit
, andprimary
helpers can now receive an additional option,extra_class
. This option allows us to specify additional CSS classes to be added to the corresponding button/input, while maintaining the original default ones. E.g., a primary button with anextra_class
'test-button' will have its final CSS classes declaration as 'btn btn-primary test-button'. - #488: add required option on form_group_builder - @ThomasSevestre.
- #347 Fix
wrapper_class
andwrapper
options for helpers that havehtml_options
. - #472 Use
id
option value asfor
attribute of label for custom checkboxes and radio buttons. - #478 Fix offset for form group without label when multiple label widths are specified.
4.0.0.alpha1 (2018-06-16)
🚨 This release adds support for Bootstrap v4 and drops support for Bootstrap v3. 🚨
If your app uses Bootstrap v3, you should continue using bootstrap_form 2.7.x instead.
Bootstrap v3 and v4 are very different, and thus bootstrap_form now produces different markup in order to target v4. The changes are too many to list here; you can refer to Bootstrap's Migrating to v4 page for a detailed explanation.
In addition to these necessary markup changes, the bootstrap_form API itself has the following important changes in this release.
- Rails 4.x is no longer supported
- Ruby 2.2 or newer is required
- Built-in support for the
nested_form
gem has been completely removed - The
icon
option is no longer supported (Bootstrap v4 does not include icons) - The deprecated Rails methods
check_boxes_collection
andradio_buttons_collection
have been removed hide_label: true
andskip_label: true
on individual check boxes and radio buttons apply Bootstrap 4 markup. This means the appearance of a page may change if you're upgrading from the Bootstrap 3 version ofbootstrap_form
, and you usedcheck_box
orradio_button
with either of those optionsstatic_control
will no longer properly show error messages. This is the result of bootstrap changes.static_control
will also no longer accept a block, use thevalue
option instead.form_group
with a block that produces arbitrary text needs to be modified to produce validation error messages (see the UPGRADE-4.0 document). @lcreid.form_group
with a block that contains more than onecheck_box
orradio_button
needs to be modified to produce validation error messages (see the UPGRADE-4.0 document). @lcreid.- #456: Fix label
for
attribute when passing non-english characters usingcollection_check_boxes
- @ug0. - #449: Bootstrap 4 no longer mixes in
.row
in.form-group
.bootstrap_form
adds.row
todiv.form-group
when layout is horizontal.
- Support for Rails 5.1
form_with
- @lcreid. - Support Bootstrap v4's Custom Checkboxes and Radios with a new
custom: true
option - Allow HTML in help translations by using the
_html
suffix on the key - @unikitty37 - #408: Add option[:id] on static control #245 - @duleorlovic.
- #455: Support for i18n
:html
subkeys in help text - @jsaraiva. - Adds support for
label_as_placeholder
option, which will set the label text as an input fields placeholder (and hiding the label for sr_only). - #449: Passing
.form-row
overrides default.form-group.row
in horizontal layouts. - Added an option to the
submit
(andprimary
, by transitivity) form tag helper,render_as_button
, which when truthy makes the submit button render as a button instead of an input. This allows you to easily provide further styling to your form submission buttons, without requiring you to reinvent the wheel and use thebutton
helper (and having to manually insert the typical Bootstrap classes). - @jsaraiva. - Add
:error_message
option tocheck_box
andradio_button
, so they can output validation error messages if needed. @lcreid. - #487: Add add_control_col_class option on form_group. - @ThomasSevestre.
- Your contribution here!
- #357 if provided,
use html option
id
to specifyfor
attribute on label @duleorlovic
2.7.0 (2017-04-21)
Features:
2.6.0 (2017-02-03)
Bugfixes:
- Fix ambiguous first argument warning (#311, @mikenicklas)
Features:
- Add a FormBuilder#custom_control helper #289
2.5.3 (2016-12-23)
There are no user-facing changes with this release. Behind the scenes, the tests have been greatly improved. The project is now tested against and compatible with the following Rails versions 4.0, 4.1, 4.2 and 5.0 (#278).
2.5.2 (2016-10-08)
Bugfixes:
- Allow objects without
model_name
s to act as form objects (#295, @laserlemon) - Fix offset for submit for horizontal forms when using non-sm column breakers for label column (#293, @oteyatosys)
2.5.1 (2016-09-23)
Bugfixes:
- Fix getting help text for elements when using anonymous models (see issue 282)
2.5.0 (2016-08-12)
Bugfixes:
- Sanitize name (IE
for
attribute) in same manner that Rails sanitizes theid
attribute to fix a11y issue withfor
andid
mismatch - Fix loading of ActionView helpers in combination with RSpec and
rails-controller-testing
. (see rails-controller-testing/issues#24)
Features:
- Add support for input-group-sm and input-group-lg in prepend/append (#226, @rusanu)
- Added option to prevent the 'required' CSS class on labels (#205, @LucasAU)
2.4.0 (2016-07-04)
This version is ready to use with Rails 5.0.0!
Bugfixes:
- Minor README corrections (#184, @msmithstubbs)
- Fix
alias_method_chain
deprecation warnings when using Rails 5 - Allow
form_group
to work with frozen string options
Features:
- Allow primary button classes to be overridden (#183, @tanimichi)
- Allow to pass a block to select helper in Rails >= 4.1.0 (#229, @doits)
Bugfixes:
- Use #underscore, not #downcase for help text scope (#140, @atipugin)
- Radio button and checkbox labels will now include the disabled class as needed. (#156, @ScottSwezey)
- Fixed issue with setting offset in form_group without label in horizontal layout when form uses non-default label_col
- Fixed wrapper options (#153, @veilleperso)
- Fix errors on non-ActiveRecord setups (#200, @sgnn7)
Features:
- Allow users to display validation errors in labels (#144, @timcheadle)
- Use humanized attribute name in label errors (#146, @atipugin)
- Allow to skip label rendering (#145, @atipugin)
- Added a
required
CSS class for labels with required attributes (#150, @krsyoung) - Added option to customize labels' class.
- Allow callable value_method and text_method for collection_check_boxes and collection_radio_buttons (#199, @shadwell)
Bugfixes:
- Fixed an exception raised when form_group block returns nil (#111)
- Fixed an exception on human_attribute_name when using bootstrap_form_tag (#115)
- Set offset in form_group without label in horizontal layout (#94, @datWav)
- Fixes an offset bug in form_group without a given label in horizontal layout (#130, @datWav)
- Fixed bug where collection_check_boxes doesn't work if all are unchecked (#116, @burnt43)
Features:
- Added the ability to append/prepend buttons (@retoo)
- Added support for time_zone_select
- Accept multiple values, and objects as well, on
collection_check_boxes
checked option (#114) - Added support for hiding attribute name in errors_on helper (@datWav)
- Added support for additional class to the wrapper form_group by a field (@datWav)
- Support showing error summaries when inline_errors is enabled (@rosswilson)
- Name is now optional when creating static controls
- Keep original form helper methods with _without_bootstrap suffix (#123, @a2ikm)
- Added glyphicon support
- Added i18n support for help messages (#122, @huynhquancam)
- Added the ability to pass any attributes to wrapper (#136, @atipugin)
- Split monolithic test file into several smaller files (#141, @spacewander)
- Added role="form" attribute to forms (#142, @spacewander)
Bugfixes:
- Do not reset additional classes on the form-group (@rzane)
- Fixed an exception when specifying a label while using bootstrap_form_tag
Features:
- nested_form integration via
bootstrap_nested_form_for
(#44 and #66) form_group
no longer requires a name (#83)
Moved GitHub repository from https://github.com/potenza/bootstrap_form to https://github.com/bootstrap-ruby/bootstrap_form
Bugfixes:
- i18n fix for checkbox labels (@i10a)
- Wrapped date & time helpers inside control-specific css classes to prevent stacking
- control-label class was not being added unless the form was horizontal (@slave2zeros)
- selects & collection selects were dropping label options
- allow html content in check_box tag label (@desheikh)
- allow check_box label to be defined with a block
- omit form-control class from file_field (@mbrictson)
- Collection inputs honour
checked
attribute (@desheikh) - Fixing label/input pairing for checkbox collections (@byped)
- Removing for attribute on radio button labels (@sigmike)
Features:
- The control_class can be overridden per field by passing in the :control_class option. Default value is "form-control".
- Make name optional in FormBuilder#submit (@adrpac)
- Added the FormBuilder#primary helper back in
- Added a FormBuilder#static_control helper
- Added support for radio_buttons_collection and check_boxes_collection
- Added a FormBuilder#error_summary helper method
- inline_errors can be turned off: bootstrap_form_for(obj, inline_errors: false) When inline errors are off, FormBuilder#alert_message contains the error summary. This can also be turned off with the option 'error_summary: false'
- Added support for: color_field, date_field, datetime_field, datetime_local_field, month_field, range_field, search_field (#42), time_field, week_field
- Added ability to override the left/right classes for a particular control when using horizontal forms. (@baldwindavid)
- Added support for grouped_collection_select (@rzane)
- Added support of Rails 4 syntax for collection inputs (@desheikh)
- Renamed options :left to :label_col and :right to :control_col
- Renamed option :style to :layout (@baldwindavid)
- Added errors_on helper (@baldwindavid)
- Added per field layout option (@baldwindavid)
- Added support for bootstrap_form_tag (@baldwindavid)