Replaced use of the deprecated FILTER_SANITIZE_STRING constant.
Developer Notes
Fixed unit tests on WordPress 6.2.
Allow all the resources to be extended using register_rest_field(). #157
Added the ability for all the WP_Post and WP_User based resources to manage custom meta registered via register_meta(). #157
Added llms_rest_{$object_type}_item_schema that will allow filtering any resource schema. Additional schema fields, added via register_rest_field(), are not included. #157
Added llms_rest_allow_filtering_{$object_type}_item_schema_to_add_fields filter hook. It allows adding additional fields using the filter hook llms_rest_{$object_type}_item_schema without warnings. By default additional fields should be added via register_rest_field(). #157
Deprecated llms_rest_enrollments_item_schema and llms_rest_membership_item_schema filter hooks in favor of llms_rest_$object_type_item_schema where the object type is, respectively, equal to ‘students-enrollments’ and ‘llms-membership’. #157
Performance Improvements
Cache results of getitemschema on controller instances for performance. Additional schema fields, added via register_rest_field(), are not cached. #73
Replaced Post Title block from full-width template.
Styling improvements for Social Learning Advanced Add On.
Added stylelint and update WooCommerce element custom properties.
Added improved styling for Social Learning add on.
Added inline heading custom properties e.g. var(--wp--custom--heading--font-family).
Load editor styles for LifterLMS add-ons.
Added body element to custom properties function.
Updated custom properties in CSS files to use element properties.
Added font weight value to typography styles in theme.json.
Removes LifterLMS single templates when plugin not active.
Updates and Enhancements
Changed footer pattern to instead load site logo due to WP 6.2.2 shortcode issues.
Using element custom properties in Social Learning CSS.
Improved Logged Out view of Social Learning timeline and input fields.
Update tested up to version to 6.2.
Bug Fixes
Updating 404 to match empty search results for consistency.
Fixed missing social media brand icons in profile sidebar.
Added temporary CSS fix to avoid unsightly spaces into the course syllabus and course progress on lesson’s sidebar, due to WordPress 6.2.2 adding empty paragraphs to shortcode content when rendered in a block template.
Fixed styling for notifications that were not visible on large screens.
Breaking Changes
Removed duplicate i18n directory and Composer build:pot script.
Removed Post Title block from full-width template.
Fixed an issue that prevented the correct saving of the course length when using the block editor. #2426
Developer Notes
Fixed an issue running unit tests on PHP 7.4 and WordPress 6.2 expecting render_block() returning a string while we were applying a filter that returned the boolean true.