Skip to content

Commit b42ee74

Browse files
committed
chore(release): merge in release v4.5.6
2 parents 1462233 + e4c327a commit b42ee74

File tree

5 files changed

+22
-7
lines changed

5 files changed

+22
-7
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [4.5.6](https://github.com/Automattic/newspack-blocks/compare/v4.5.5...v4.5.6) (2025-01-23)
2+
3+
4+
### Bug Fixes
5+
6+
* make sure fields after floated inputs clear floats in the modal checkout ([#2030](https://github.com/Automattic/newspack-blocks/issues/2030)) ([274b4d4](https://github.com/Automattic/newspack-blocks/commit/274b4d41aa63dc818a3da49a7fc8315dbdf08757))
7+
18
## [4.5.5](https://github.com/Automattic/newspack-blocks/compare/v4.5.4...v4.5.5) (2025-01-20)
29

310

newspack-blocks.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
* Author URI: https://newspack.com/
88
* Text Domain: newspack-blocks
99
* Domain Path: /languages
10-
* Version: 4.5.5
10+
* Version: 4.5.6
1111
*
1212
* @package Newspack_Blocks
1313
*/
1414

1515
define( 'NEWSPACK_BLOCKS__PLUGIN_FILE', __FILE__ );
1616
define( 'NEWSPACK_BLOCKS__BLOCKS_DIRECTORY', 'dist/' );
1717
define( 'NEWSPACK_BLOCKS__PLUGIN_DIR', plugin_dir_path( NEWSPACK_BLOCKS__PLUGIN_FILE ) );
18-
define( 'NEWSPACK_BLOCKS__VERSION', '4.5.5' );
18+
define( 'NEWSPACK_BLOCKS__VERSION', '4.5.6' );
1919

2020
require_once NEWSPACK_BLOCKS__PLUGIN_DIR . 'includes/class-newspack-blocks.php';
2121
require_once NEWSPACK_BLOCKS__PLUGIN_DIR . 'includes/class-newspack-blocks-api.php';

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@automattic/newspack-blocks",
3-
"version": "4.5.5",
3+
"version": "4.5.6",
44
"author": "Automattic",
55
"devDependencies": {
66
"@rushstack/eslint-patch": "^1.10.5",

src/modal-checkout/checkout.scss

+10-2
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,16 @@
101101
}
102102
}
103103

104-
.woocommerce-billing-fields__field-wrapper ~ .form-row {
105-
margin: var(--newspack-ui-spacer-5, 24px) 0 0;
104+
.woocommerce-billing-fields__field-wrapper {
105+
&::after {
106+
clear: both;
107+
content: "";
108+
display: table;
109+
}
110+
111+
& ~ .form-row {
112+
margin: var(--newspack-ui-spacer-5, 24px) 0 0;
113+
}
106114
}
107115

108116
// Additional fields

0 commit comments

Comments
 (0)