Skip to content

Commit

Permalink
Merge pull request #6009 from Automattic/release/4.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yscik committed Oct 24, 2022
2 parents fcfb702 + b6ead2d commit 506b5f2
Show file tree
Hide file tree
Showing 30 changed files with 886 additions and 815 deletions.
10 changes: 10 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
*** Changelog ***

2022-10-24 - version 4.7.2
* Fix: Change admin bar visibility only in lesson pages [#5909](https://github.com/Automattic/sensei/pull/5909)
* Fix container sizing in Video Template [#5926](https://github.com/Automattic/sensei/pull/5926)
* Fix: Prevent course enrollment if user did not complete prerequisites or if course requires a password [#5957](https://github.com/Automattic/sensei/pull/5957)
* Fix broken Quiz and Question blocks [#5905](https://github.com/Automattic/sensei/pull/5905)
* Fix lesson video not showing [#5956](https://github.com/Automattic/sensei/pull/5956)
* Fix styling for older Learning Mode templates [#5969](https://github.com/Automattic/sensei/pull/5969)
* Fix lesson action buttons not showing when a quiz block is added [#5970](https://github.com/Automattic/sensei/pull/5970)
* Fix: Validate colors when saving email template options. [#5959](https://github.com/Automattic/sensei/pull/5959)

2022-10-11 - version 4.7.1
* Fix: Prevent Learning Mode styles from overriding global styles. [#5903](https://github.com/Automattic/sensei/pull/5903)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Answer {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Answer_Repository_Factory {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
interface Answer_Repository_Interface {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Comments_Based_Answer_Repository implements Answer_Repository_Interface {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Grade {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Comments_Based_Grade_Repository implements Grade_Repository_Interface {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Grade_Repository_Factory {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
interface Grade_Repository_Interface {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Submission {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Comments_Based_Submission_Repository implements Submission_Repository_Interface {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Submission_Repository_Factory {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
interface Submission_Repository_Interface {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Course_Progress {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Comments_Based_Course_Progress_Repository implements Course_Progress_Repository_Interface {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Course_Progress_Repository_Factory {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
interface Course_Progress_Repository_Interface {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Lesson_Progress {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Comments_Based_Lesson_Progress_Repository implements Lesson_Progress_Repository_Interface {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Lesson_Progress_Repository_Factory {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
interface Lesson_Progress_Repository_Interface {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Quiz_Progress {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Comments_Based_Quiz_Progress_Repository implements Quiz_Progress_Repository_Interface {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
class Quiz_Progress_Repository_Factory {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.7.2
*/
interface Quiz_Progress_Repository_Interface {
/**
Expand Down
Loading

0 comments on commit 506b5f2

Please sign in to comment.