Releases: liip/bootstrap-blocks-wordpress-plugin
Releases · liip/bootstrap-blocks-wordpress-plugin
5.2.0
5.1.0
- [CHANGE] Renamed
color
attribute of thestyleOptions
for the button block tobgColor
. Additionally addedtextColor
attribute to be able to change the text color of the button in the editor as well. If you are modifying thestyleOptions
via thewpBootstrapBlocks.button.styleOptions
JavaScript filter please add the according colors to your style objects. - [FIX] Remove usage of deprecated
IconButton
component (will be removed in WordPress 6.2).
5.0.0
Starting with this version the plugin only supports WordPress versions >= 5.3.
This step was needed to be able to catch up with the current development practices and remove a lot of deprecations.
- Breaking Change [CHANGE] The default Bootstrap version is now
5.x
. Please check in the settings if your using the appropriate version of Bootstrap after updating to this release. - [COMPATIBILITY] Dropped support for WordPress < 5.3. Please update your website if you still would like to receive updates for this plugin.
- [FEATURE] Added block.json meta files to describe and register blocks (supported in WordPress >= 5.8).
- [CHANGE] Rewrite all blocks to functional components.
4.3.1
NOTICE: Version 4.x of the plugin will be the last version to support WordPress versions lower than 5.3.
If you're on a lower version of WordPress think about updating it if you still would like receive updates for this plugin.
- [FIX] Apply default color to button if
color
attribute is missing instyleOptions
.
4.3.0
- [COMPATIBILITY] Tested up to WordPress 6.1.
- [CHANGE] Set default
style
attribute of the Button block toprimary
. This shouldn't be a breaking change since the template already added thebtn-primary
class if nostyle
was selected. - [FEATURE] Add
color
attribute to thestyleOptions
to be able to display the buttons in the correct color in the editor. If you have changed thestyleOptions
via thewpBootstrapBlocks.button.styleOptions
JavaScript filter please add the according colors to your style objects.
4.2.1
- [FIX] Rename blocks to
<Blockname> (Bootstrap)
for better discoverability when searching for a block.
4.2.0
- [FEATURE] Reflect noGutters and horizontalGutters options visually in editor (WordPress >= 5.4).
- [CHANGE] Add missing "Medium" size to vertical gutter options. If you're using the
wpBootstrapBlocks.row.verticalGuttersOptions
JavaScript filter to modify the options please check if the new option (gy-4
) doesn't conflict with your custom options. - [FIX] Fix label of default css grid gutter option ("Medium" instead of "None").
- [FIX] Only allow enabling CSS grid option if Bootstrap version is >= 5.
4.1.0
- [COMPATIBILITY] Tested up to WordPress 6.0.
- [CHANGE] Prefix all block names with "Bootstrap" to make them distinguishable with other blocks.
- [FIX] Manually set box-sizing attribute to blocks (has been removed in WordPress 6.0).
4.0.1
Changelog
- [COMPATIBILITY] Tested up to WordPress 5.9.
- [CHANGE] Remove
wp-polyfill
dependency.
4.0.0
Changelog
This version adds (experimental) support for Bootstraps CSS grid. Please read the documentation for further information.
- [FEATURE] Add experimental support for Bootstraps CSS grid. The support is still experimental since it's also marked as experimental in the Bootstarp library. To use it you need to enable it in the plugins settings and the
$enable-cssgrid: true
setting has to be enabled in your Bootstrap variables file. - [FEATURE] Introduce new JavaScript filter
wpBootstrapBlocks.row.cssGridGuttersOptions
for CSS grid. Please read the documentation for further information. - [FEATURE] Introduce new PHP filters for CSS grid templates:
wp_bootstrap_blocks_row_css_grid_classes
,wp_bootstrap_blocks_row_css_grid_styles
,wp_bootstrap_blocks_column_css_grid_classes
,wp_bootstrap_blocks_column_css_grid_content_classes
. Please read the documentation for further information. - New Templates:
column-css-grid.php
,row-css-grid.php