Skip to content

Commit

Permalink
Merge pull request #7580 from Automattic/release/4.23.0
Browse files Browse the repository at this point in the history
Release 4.23.0
  • Loading branch information
renatho committed Apr 4, 2024
2 parents 58d96dc + 46dbd9d commit 0132d5c
Show file tree
Hide file tree
Showing 15 changed files with 756 additions and 752 deletions.
12 changes: 12 additions & 0 deletions changelog.txt
@@ -1,5 +1,17 @@
*** Changelog ***

## 4.23.0 - 2024-04-04
### Added
- Sensei pro upsell task in Sensei Home [#7562](https://github.com/Automattic/sensei/pull/7562)

### Deprecated
- Remove Sell your course with WooCommerce task from core [#7572](https://github.com/Automattic/sensei/pull/7572)

### Fixed
- Ensure student can view the lesson content when rendering the Complete Lesson button [#7579](https://github.com/Automattic/sensei/pull/7579)
- Remove opinionated CSS class from login form [#7542](https://github.com/Automattic/sensei/pull/7542)
- Visibility improved for focus elements of Course tour [#7570](https://github.com/Automattic/sensei/pull/7570)

## 4.22.0 - 2024-03-20
### Added
- Added Course onboarding tour [#7535](https://github.com/Automattic/sensei/pull/7535)
Expand Down
4 changes: 0 additions & 4 deletions changelog/add-deprecate-sell-course-wth-woocommerce-task

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/add-make-sure-focused-elements-are-visible

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/add-sensei-pro-upsell-task

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/fix-viewing-lesson-content

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/remove-opinionated-block-editor-class

This file was deleted.

2 changes: 1 addition & 1 deletion includes/admin/class-sensei-tour.php
Expand Up @@ -187,7 +187,7 @@ public function get_tour_completion_status( $tour_id, $user_id = 0 ) {
/**
* Get the callback to enqueue the course or lesson tour.
*
* @since $$next-version$$
* @since 4.23.0
*
* @param string $post_type The post type.
* @param string $handle The script handle.
Expand Down
Expand Up @@ -3,7 +3,7 @@
* File containing the Sensei_Home_Task_Pro_Upsell class.
*
* @package sensei-lms
* @since $$next-version$$
* @since 4.23.0
*/

if ( ! defined( 'ABSPATH' ) ) {
Expand All @@ -13,7 +13,7 @@
/**
* Sensei_Home_Task_Pro_Upsell.
*
* @since $$next-version$$
* @since 4.23.0
*/
class Sensei_Home_Task_Pro_Upsell implements Sensei_Home_Task {

Expand Down
Expand Up @@ -9,7 +9,7 @@
/**
* Sensei_Home_Task_Sell_Course_With_WooCommerce class.
*
* @deprecated $$next-version$$ We're now showing the "Sell your course with Sensei Pro" (Sensei_Home_Task_Pro_Upsell) task instead of this task.
* @deprecated 4.23.0 We're now showing the "Sell your course with Sensei Pro" (Sensei_Home_Task_Pro_Upsell) task instead of this task.
*
* @since 4.8.0
*/
Expand All @@ -21,9 +21,9 @@ class Sensei_Home_Task_Sell_Course_With_WooCommerce implements Sensei_Home_Task
*/
public function __construct() {
if ( is_wp_version_compatible( '6.4' ) ) {
_deprecated_class( __CLASS__, '$$next-version$$', 'Sensei_Home_Task_Pro_Upsell' );
_deprecated_class( __CLASS__, '4.23.0', 'Sensei_Home_Task_Pro_Upsell' );
} else {
_deprecated_function( __METHOD__, '$$next-version$$', 'Sensei_Home_Task_Pro_Upsell::__construct' );
_deprecated_function( __METHOD__, '4.23.0', 'Sensei_Home_Task_Pro_Upsell::__construct' );
}
}

Expand Down

0 comments on commit 0132d5c

Please sign in to comment.