Skip to content

Commit f43fc9e

Browse files
Merge pull request #864 from WordPress/chore/release-1.4.0
Prepare for new Release 1.4.0
2 parents db1059b + d66ae27 commit f43fc9e

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

plugin.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Plugin Check is a WordPress.org tool which provides checks to help plugins meet the directory requirements and follow various best practices.
66
* Requires at least: 6.3
77
* Requires PHP: 7.4
8-
* Version: 1.3.1
8+
* Version: 1.4.0
99
* Author: WordPress Performance Team and Plugin Review Team
1010
* License: GPLv2 or later
1111
* License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
@@ -16,7 +16,7 @@
1616

1717
use WordPress\Plugin_Check\Plugin_Main;
1818

19-
define( 'WP_PLUGIN_CHECK_VERSION', '1.3.1' );
19+
define( 'WP_PLUGIN_CHECK_VERSION', '1.4.0' );
2020
define( 'WP_PLUGIN_CHECK_MINIMUM_PHP', '7.4' );
2121
define( 'WP_PLUGIN_CHECK_MAIN_FILE', __FILE__ );
2222
define( 'WP_PLUGIN_CHECK_PLUGIN_DIR_PATH', plugin_dir_path( WP_PLUGIN_CHECK_MAIN_FILE ) );

readme.txt

+21-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Contributors: wordpressdotorg
44
Tested up to: 6.7
5-
Stable tag: 1.3.1
5+
Stable tag: 1.4.0
66
License: GPLv2 or later
77
License URI: https://www.gnu.org/licenses/gpl-2.0.html
88
Tags: plugin best practices, testing, accessibility, performance, security
@@ -68,6 +68,26 @@ In any case, passing the checks in this tool likely helps to achieve a smooth pl
6868

6969
== Changelog ==
7070

71+
= 1.4.0 =
72+
73+
* Enhancement - Allow ISC license in the License check.
74+
* Enhancement - Added check for use of settings with sanitization callback.
75+
* Enhancement - Added --ignore-codes in CLI to introduce a mechanism to ignore specific error codes.
76+
* Enhancement - New utils for fetching necessary version info details.
77+
* Enhancement - Added check for unsupported plugin name in plugin header field.
78+
* Enhancement - Segregate the severity of i18n checks. Make sure that is giving errors in the right context.
79+
* Enhancement - Provide more detailed information about checks when the README does not include a tested version or a list of contributors.
80+
* Enhancement - Added rules from WPCS to prevent issues with content being sent before headers and warn about the use of Call-time pass-by-reference.
81+
* Enhancement - Give more context in the error of check wrong named files.
82+
* Enhancement - Simplified PHPUnit setup. Now it does not depend of running inside a WordPress installation.
83+
* Enhancement - Added new check for restricted contributors.
84+
* Fix - Delete transients in unit tests to avoid false positives.
85+
* Fix - Incorrect Tested up to version comparison will make error for two major versions up.
86+
* Fix - Excluded the use of functions file_get_contents and file_put_contents in the check to prevent false positives.
87+
* Fix - Duplicated error message in the check for wrong named files.
88+
* Fix - Use of Json encode wasn't firing the error message.
89+
* Fix - Change error type of NonEnqueuedImage in ImageFunctions sniff from ERROR to WARNING.
90+
7191
= 1.3.1 =
7292

7393
* Enhancement - Add version utilities.

0 commit comments

Comments
 (0)