Skip to content

Commit

Permalink
Merge pull request #7269 from Automattic/release/4.19.1
Browse files Browse the repository at this point in the history
Release 4.19.1
  • Loading branch information
renatho authored Nov 6, 2023
2 parents 9ffdfa8 + 1a642ac commit 96012db
Show file tree
Hide file tree
Showing 10 changed files with 715 additions and 735 deletions.
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
*** Changelog ***

## 4.19.1 - 2023-11-06
### Fixed
- Email editor styles getting leaked into other templates in site editor [#7258](https://github.com/Automattic/sensei/pull/7258)

## 4.19.0 - 2023-11-01
### Added
- Add a setting to not allow self-enrollment on courses [#7231](https://github.com/Automattic/sensei/pull/7231)
Expand Down
4 changes: 0 additions & 4 deletions changelog/fix-email-editor-styles-sneaking-into-other-editors

This file was deleted.

6 changes: 3 additions & 3 deletions includes/cli/class-sensei-validate-progress-command.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
/**
* WP-CLI command that validates the progress data.
*
* @since $$next-version$$
* @since 4.19.1
*/
class Sensei_Validate_Progress_Command {
/**
* Seed the database.
*
* @since $$next-version$$
* @since 4.19.1
*
* @param array $args Command arguments.
* @param array $assoc_args Command arguments with names.
Expand All @@ -43,7 +43,7 @@ public function __invoke( array $args = [], array $assoc_args = [] ) {
/**
* Output the validation errors.
*
* @since $$next-version$$
* @since 4.19.1
*
* @param Progress_Validation $progress_validation Progress validation.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* File containing the Progress_Validation class.
*
* @package sensei
* @since $$next-version$$
* @since 4.19.1
*/

namespace Sensei\Internal\Migration\Validations;
Expand All @@ -22,7 +22,7 @@
/**
* Class responsible for validation of the migrated progress data.
*
* @since $$next-version$$
* @since 4.19.1
*/
class Progress_Validation {
/**
Expand All @@ -37,7 +37,7 @@ class Progress_Validation {
*
* @internal
*
* @since $$next-version$$
* @since 4.19.1
*/
public function run(): void {
$this->errors = array();
Expand All @@ -64,7 +64,7 @@ public function run(): void {
*
* @internal
*
* @since $$next-version$$
* @since 4.19.1
*
* @return bool
*/
Expand All @@ -77,7 +77,7 @@ public function has_errors(): bool {
*
* @internal
*
* @since $$next-version$$
* @since 4.19.1
*
* @return Validation_Error[]
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* File containing the Validation_Error class.
*
* @package sensei
* @since $$next-version$$
* @since 4.19.1
*/

namespace Sensei\Internal\Migration\Validations;
Expand All @@ -13,7 +13,7 @@
*
* @internal
*
* @since $$next-version$$
* @since 4.19.1
*/
class Validation_Error {
/**
Expand All @@ -35,7 +35,7 @@ class Validation_Error {
*
* @internal
*
* @since $$next-version$$
* @since 4.19.1
*
* @param string $message Error message.
* @param array $data Error data.
Expand All @@ -50,7 +50,7 @@ public function __construct( string $message, array $data = [] ) {
*
* @internal
*
* @since $$next-version$$
* @since 4.19.1
*
* @return string
*/
Expand All @@ -63,7 +63,7 @@ public function get_message(): string {
*
* @internal
*
* @since $$next-version$$
* @since 4.19.1
*
* @return array
*/
Expand All @@ -76,7 +76,7 @@ public function get_data(): array {
*
* @internal
*
* @since $$next-version$$
* @since 4.19.1
*
* @return bool
*/
Expand Down
Loading

0 comments on commit 96012db

Please sign in to comment.