Skip to content

Commit

Permalink
Merge branch 'release/2.35.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
JiveDig committed Dec 4, 2024
2 parents 878cdca + 6b28fed commit ee1049a
Show file tree
Hide file tree
Showing 3,216 changed files with 118,675 additions and 87,474 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ vendor/composer/semver
vendor/composer/xdebug-handler
!vendor/afragen
!vendor/collizo4sky
!vendor/kirki-framework
!vendor/maithemewp
!vendor/proteusthemes
!vendor/wpengine
Expand Down
5 changes: 1 addition & 4 deletions .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,5 @@
"stylelint-config-wordpress",
"stylelint-config-wordpress/scss",
"stylelint-config-rational-order"
],
"rules": {
"color-named": always-where-possible
}
]
}
6 changes: 1 addition & 5 deletions .stylelintscssrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,5 @@
"extends": [
"stylelint-config-wordpress/scss",
"stylelint-config-rational-order"
],
"rules": {
"color-named": always-where-possible
}
]
}

43 changes: 43 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,48 @@
# Changelog

## 2.35.0 (12/4/24)
* Added: [WooCommerce] Better compatibility with WooCommerce Cart and Checkout blocks.
* Added: [FacetWP] Now allow FacetWP on a single Mai Post Grid instance by adding `facetwp-template` class to the block.
* Added: New `current` value can be used for `id` and `post_type` parameters in `mai_content` shortcode.
* Added: New `--button-outline-width` custom prop to more consistently override outline button styles.
* Added: Prior `—viewport-width` property is now included again.
* Changed: Reusable Blocks are now Synced Patterns to stay aligned with WP terminology.
* Changed: Update ACF to 6.3.11.
* Changed: Update Gulp to 5.0.0.
* Changed: Removed legacy genesis-accessibility attribute for 404-page.
* Changed: More through and simpler encoding handling with PHP's `DOMDocument`.
* Changed: Better handling of post exclusion when using Mai Post Grid.
* Changed: Using `100svh` instead of `100dvh` for body height.
* Changed: Now using less specific `:has()` for CSS class checks.
* Changed: Add transient caching to classic editor styles from customizer.
* Changed: Tweak order of processing in `mai_get_processed_content()`.
* Changed: Sticky header is now disabled in landscape mode on mobile.
* Changed: CSS is now on `:focus-visible` instead of `:focus` better visual handling of non-keyboard enabled focus.
* Changed: CSS grid now uses `minmax()` instead of `1fr` in some scenarios to prevent grid blowout.
* Changed: [Performance] More efficient `get_terms()` queries when we only need `id` and `name`.
* Changed: [Performance] Only run ACF field filters in the admin, when loading field data dynamically.
* Changed: Disable preloading of featured and page header images. This was often causing more issues than it was helping.
* Changed: Convert `DOMDocument` to `WP_HTML_Tag_Processor` for Mai custom attributes.
* Changed: Convert `DOMDocument` to `WP_HTML_Tag_Processor` for WooCommerce button classes.
* Changed: Check if post type exists after `mai_grid_post_types` filter.
* Changed: Validate ACF fields that don't use `field_` as the field key prefix.
* Changed: Added prefixes for our ACF field groups that didn't have one.
* Changed: Update the updater.
* Fixed: Social links gap when inside Mai Columns.
* Fixed: Full aligned blocks did not always display correctly in the editor, particularly when nested, and/or when the content alignment was left or right.
* Fixed: Wide aligned blocks were sometimes cut off in the editor.
* Fixed: Mai Divider was not showing full width when inside Group/Cover block with content aligned left/right.
* Fixed: Comments had unexpected list margin in some scenarios.
* Fixed: The has-z-index-2 wasn't applying the correct z-index of 2.
* Fixed: Search block was not centering correctly in some scenarios, when set to be center aligned.
* Fixed: Author description not always showing correctly on the author archive.
* Fixed: Invalid markup in page header when a category/term has no intro text.
* Fixed: Site title was not always white when using a dark transparent header.
* Fixed: Menu toggle text color was not styed correctly when screen-reader-text class is removed.
* Fixed: Accent color being applied unexpectedly on select fields in some browsers, looking at you Safari.
* Fixed: Select field now sets min-height instead of height.
* Fixed: Removed the "remove global styles" setting to maintain compatibility with WP and fix "Missing Dependencies" error.

## 2.34.1 (4/18/24)
* Changed: Order of processing in `mai_get_processed_content()` to match `get_the_block_template_html()` function in WP core.
* Fixed: The Setup Wizard missing steps for some users.
Expand Down
12 changes: 6 additions & 6 deletions Gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
process.env.DISABLE_NOTIFIER = true;

const gulp = require( 'gulp' ),
tasks = require( './bin/tasks' );
const gulp = require('gulp'),
tasks = require('./bin/tasks');

Object.keys( tasks ).forEach( function( taskName ) {
const args = [ taskName ].concat( tasks[ taskName ] );
Object.keys(tasks).forEach(function(taskName) {
const args = [taskName].concat(tasks[taskName]);

gulp.task.apply( gulp, args );
} );
gulp.task.apply(gulp, args);
});
2 changes: 1 addition & 1 deletion assets/css/admin.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/advanced-custom-fields.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/atomic-blocks.min.css

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

Loading

0 comments on commit ee1049a

Please sign in to comment.