Skip to content
Open

Release #2998

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
7e777fb
Sync branch [skip ci]
pirate-bot Aug 12, 2026
387ea08
Sync branch [skip ci]
pirate-bot Aug 12, 2026
a979b40
fix: guard widgets CSS writability check against missing WP_Filesyste…
Soare-Robert-Daniel Aug 18, 2026
30c3217
fix: Post Content dynamic value reads the loop globals instead of its…
Soare-Robert-Daniel Aug 18, 2026
3ad45e1
fix: plugin classes fail to load when the Composer classmap is stale …
Soare-Robert-Daniel Aug 18, 2026
bde5087
fix: Sabberworm dependency collision causes fatal during animation CS…
Soare-Robert-Daniel Aug 18, 2026
fdef3a8
fix: keep Meta Boxes pane open by default for WooCommerce Builder pro…
Soare-Robert-Daniel Aug 18, 2026
f7a2f39
fix: validate Stripe price ID before checkout
girishpanchal30 Aug 19, 2026
0e68fcb
fix: improve block traversal to prevent reference cycles
girishpanchal30 Aug 19, 2026
9dc2274
fix: implement caching for Stripe price mode
girishpanchal30 Aug 19, 2026
ac0fc73
fix: enhance Stripe Checkout block with token validation
girishpanchal30 Aug 20, 2026
4533331
fix: e2e test
girishpanchal30 Aug 20, 2026
b749aa4
Merge pull request #2979 from Codeinwp/bugfix/otter-internal/311
poonam279 Aug 20, 2026
9bf5d6b
Sync branch [skip ci]
pirate-bot Aug 20, 2026
587e236
Sync branch [skip ci]
pirate-bot Aug 20, 2026
0a5ecad
Sync branch [skip ci]
pirate-bot Aug 20, 2026
9be3adc
fix: translate the form response defaults on the frontend
Aug 21, 2026
265371c
build(deps-dev): bump wp-coding-standards/wpcs from 3.2.0 to 3.4.1 (#…
dependabot[bot] Aug 24, 2026
4a871c3
build(deps-dev): bump php-stubs/woocommerce-stubs from 10.9.1 to 10.9…
dependabot[bot] Aug 24, 2026
b9f691f
Merge pull request #2988 from johansolve/fix/translatable-form-respon…
selul Aug 24, 2026
1cb5835
Merge branch 'master' into development
selul Aug 25, 2026
7bddd88
Improved Atomic Wind Blocks CSS scoping (#2997)
girishpanchal30 Aug 27, 2026
a17d870
Enhanced license validation (#2999)
girishpanchal30 Aug 29, 2026
4b8418f
Enhanced block registration to handle instantiation failures (#3003)
girishpanchal30 Aug 29, 2026
01c5d5c
Sync branch [skip ci]
pirate-bot Aug 31, 2026
0cdc9d5
build(deps): bump codeinwp/themeisle-sdk in /plugins/blocks-css (#3016)
dependabot[bot] Aug 31, 2026
2b57a46
build(deps): bump codeinwp/themeisle-sdk in /plugins/blocks-animation…
dependabot[bot] Aug 31, 2026
8163e07
build(deps): bump codeinwp/themeisle-sdk from 3.3.58 to 3.3.61 (#3012)
dependabot[bot] Aug 31, 2026
ee3148b
build(deps-dev): bump php-stubs/woocommerce-stubs from 10.9.4 to 11.0…
dependabot[bot] Aug 31, 2026
191d524
fix: class name handling for blocks to support array inputs (#3002)
girishpanchal30 Sep 1, 2026
5ccc4d2
Updated styles for responsive visibility (#3024)
girishpanchal30 Sep 1, 2026
4ffcfd2
Sync branch [skip ci]
pirate-bot Sep 1, 2026
30fe439
ci: skip PR-comment job on Dependabot PRs (no secrets, always fails)
selul Sep 2, 2026
74da395
ci: revert Dependabot gate on PR-comment job (org Dependabot secret c…
selul Sep 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@ jobs:
npm run lint
env:
CI: true
- name: Run unit tests
run: npm run test:unit
env:
CI: true
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"phpunit/phpunit": "9.6.5",
"yoast/phpunit-polyfills": "^4.0",
"phpstan/phpstan": "^2.1",
"php-stubs/woocommerce-stubs": "^10.8",
"php-stubs/woocommerce-stubs": "^11.0",
"php-stubs/acf-pro-stubs": "^6.8",
"wpackagist-plugin/woocommerce": "*",
"automattic/vipwpcs": "^3.0",
Expand Down
82 changes: 41 additions & 41 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions inc/class-base-css.php
Original file line number Diff line number Diff line change
Expand Up @@ -683,10 +683,10 @@ public function get_animation_classes( $blocks ) {
);

foreach ( $blocks as $block ) {
if ( isset( $block['attrs']['className'] ) && ! empty( $block['attrs']['className'] ) ) {
if ( preg_match( '/\banimated\b/', $block['attrs']['className'] ) ) {
$classes = array_merge( $classes, explode( ' ', trim( $block['attrs']['className'] ) ) );
}
$block_classes = Registration::get_class_name( isset( $block['attrs'] ) ? $block['attrs'] : array() );

if ( ! empty( $block_classes ) && preg_match( '/\banimated\b/', $block_classes ) ) {
$classes = array_merge( $classes, explode( ' ', trim( $block_classes ) ) );
}

if ( isset( $block['innerBlocks'] ) && ! empty( $block['innerBlocks'] ) && is_array( $block['innerBlocks'] ) ) {
Expand Down
Loading