Skip to content

Commit 9079085

Browse files
Merge pull request #708 from WordPress/chore/v1.2.0-changelog
Changelog and changes for version 1.2.0
2 parents 11cff79 + 7700428 commit 9079085

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

plugin.php

Lines changed: 2 additions & 2 deletions
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.2.24
8-
* Version: 1.1.0
8+
* Version: 1.2.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.1.0' );
19+
define( 'WP_PLUGIN_CHECK_VERSION', '1.2.0' );
2020
define( 'WP_PLUGIN_CHECK_MINIMUM_PHP', '7.2.24' );
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

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Contributors: wordpressdotorg
44
Tested up to: 6.6
5-
Stable tag: 1.1.0
5+
Stable tag: 1.2.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,29 @@ In any case, passing the checks in this tool likely helps to achieve a smooth pl
6868

6969
== Changelog ==
7070

71+
= 1.2.0 =
72+
73+
* Enhacement - Added a check for badly used names in files.
74+
* Enhancement - Increased severity for `BacktickOperator`, `DisallowShortOpenTag`, `DisallowAlternativePHPTags`, `RestrictedClasses`, and `RestrictedFunctions`.
75+
* Enhancement - Added security checks to the Plugin repository category.
76+
* Enhancement - Allowed `runtime-set` in code sniffer checks.
77+
* Enhancement - Changed warnings to errors in plugin header checks.
78+
* Enhancement - Detect forbidden plugin headers such as repository URIs in the Directory.
79+
* Enhancement - Added a new check for development functions that are not allowed in final plugins.
80+
* Enhancement - Created new images and icons for the plugin.
81+
* Enhancement - Introduced a slug argument in the CLI.
82+
* Enhancement - Added a check for discouraged PHP functions.
83+
* Enhancement - Added validation for Contributors in the readme file.
84+
* Enhancement - Added a warning for mismatched plugin names in the plugin header and readme file.
85+
* Enhancement - Checked for validation of Plugin Header fields: Name, Plugin URI, Description, Author URI, Requires at least, Requires PHP, and Requires Plugins.
86+
* Enhancement - Added a warning if the "Tested up to" value in the readme file exceeds the released version of WordPress.
87+
* Fix - Display a success message if no errors or warnings are found.
88+
* Fix - Made table results responsive.
89+
* Fix - Prevent proceeding to the next check if the Stable Tag value is set to `trunk`.
90+
* Fix - Allow runtime initialization even when only add-on checks are requested.
91+
* Fix - Fixed an SPDX warning for the `GPL version 3` license.
92+
* Fix - Prevent runtime checks in the CLI context when they cannot be used.
93+
7194
= 1.1.0 =
7295

7396
* Feature - New `Non_Blocking_Scripts_Check` (`non_blocking_scripts`) runtime check to warn about enqueued scripts that use neither `defer` nor `async`.

0 commit comments

Comments
 (0)