Skip to content

Commit

Permalink
Merge pull request #6987 from Automattic/release/4.15.1
Browse files Browse the repository at this point in the history
Release 4.15.1
  • Loading branch information
merkushin authored Jun 22, 2023
2 parents e336713 + 3410d49 commit dba5a5d
Show file tree
Hide file tree
Showing 18 changed files with 187 additions and 155 deletions.
14 changes: 14 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
*** Changelog ***

## 4.15.1 - 2023-06-22
### Added
- Add Enrolled and Completion columns on the reports course page. [#6966](https://github.com/Automattic/sensei/pull/6966)

### Fixed
- Avoid an error with getting future post URL for a scheduled sensei_email post. [#6975](https://github.com/Automattic/sensei/pull/6975)
- Fix auto grading for non-multiple choice questions. [#6984](https://github.com/Automattic/sensei/pull/6984)
- Fix auto grading not working for multiple choice questions when multiple correct answers. [#6906](https://github.com/Automattic/sensei/pull/6906)
- Fix Course Wizard spacing issue when using latest Gutenberg. [#6940](https://github.com/Automattic/sensei/pull/6940)
- Fix editor block error when updating an email. [#6936](https://github.com/Automattic/sensei/pull/6936)
- Fix resetting a quiz also resets the course start date. [#6643](https://github.com/Automattic/sensei/pull/6643)
- In lesson complete email use course author as lesson teacher. [#6977](https://github.com/Automattic/sensei/pull/6977)
- Fix conflicts with modules using the same name. [#6437](https://github.com/Automattic/sensei/pull/6437)

## 4.15.0 - 2023-06-01
### Security
- Fix shortcodes being called in teacher's messages.
Expand Down
4 changes: 0 additions & 4 deletions changelog/fix-auto-grading-non-multiple

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/fix-course-start-date-reset

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/fix-course-wizard-spacing-on-latest-gutenberg

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/fix-editor-block-error-when-changing-email-status

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/fix-frontend-error-when-schedule-email

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/fix-lesson-complete-email-recipient

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/fix-multiple-choice-question-auto-grading

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/update-course-outline-placeholder-options

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/update-course-report

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.15.1
*/
trait Course_Teachers_Trait {
/**
* Get the teacher IDs for a given course.
*
* @internal
*
* @since $$next-version$$
* @since 4.15.1
*
* @param int $course_id The course ID.
* @return array The teacher IDs.
Expand All @@ -35,7 +35,7 @@ public function get_course_teachers( $course_id ): array {
/**
* Filter the teacher IDs for a given course.
*
* @since $$next-version$$
* @since 4.15.1
*
* @param array $teacher_ids The teacher IDs.
* @param int $course_id The course ID.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ protected function get_row_data( $item ) {
/**
* Get completion rate for a lesson.
*
* @since $$next-version$$
* @since 4.15.1
*
* @param int $total_enrollments Total of enrollments in a course.
* @param int $total_completion Total of students who completed the course.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public function get_average_days_to_completion( array $course_ids ) : float {
/**
* Get total of enrollments
*
* @since $$next-version$$
* @since 4.15.1
* @param array $course_ids Courses ids to filter by.
*
* @return int total of enrollments
Expand Down
Loading

0 comments on commit dba5a5d

Please sign in to comment.