Skip to content

Commit bea9cb5

Browse files
Merge pull request #781 from WordPress/chore/1.3.0
Prepare 1.3.0 release
2 parents 3488cb0 + 9b61ea7 commit bea9cb5

File tree

2 files changed

+36
-4
lines changed

2 files changed

+36
-4
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.2.0
8+
* Version: 1.3.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.2.0' );
19+
define( 'WP_PLUGIN_CHECK_VERSION', '1.3.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

+34-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
=== Plugin Check (PCP) ===
22

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

6969
== Changelog ==
7070

71+
= 1.3.0 =
72+
73+
* Enhancement - Update disallowed domains for Plugin URI check.
74+
* Enhancement - Added new checks for Plugin Header fields: missing plugin description, missing plugin version and invalid plugin version.
75+
* Enhancement - New check for validation of donate link in the readme file.
76+
* Enhancement - Increased severity for wrong Plugin Requires.
77+
* Enhancement - Added check Restrict parse_str() without second argument.
78+
* Enhancement - New check for Disallow usage of HEREDOC and NOWDOC.
79+
* Enhancement - Added acronyms allowed in Trademark checks.
80+
* Enhancement - Added option in CLI to add low severity errors and warnings.
81+
* Enhancement - Change error type for License check error codes.
82+
* Enhancement - Always use prefixed tables during runtime check requests.
83+
* Enhancement - Created a new class for checking licenses.
84+
* Enhancement - Added support for MPL-2.0 license.
85+
* Enhancement - Implement gherkin linter in GH action.
86+
* Enhancement - Update check for Contributors in markdown readme files.
87+
* Enhancement - CLI: Fix confusing runtime environment setup order.
88+
* Enhancement - Allow custom checks to provide installed_paths.
89+
* Enhancement - Improved the use of localhost URLs in the Plugin.
90+
* Enhancement - Documented checks in the plugin.
91+
* Enhancement - Increased severity for Code obfuscation checks.
92+
* Enhancement - Diffentiate between no existent readme and default readme file.
93+
* Enhancement - Encourage developers to use native functions for loading images in templates.
94+
* Enhancement - Added a check for not allowing include libraries already in WordPress core.
95+
* Enhancement - Warning for usage of query_posts() in favor of WP_Query.
96+
* Fix - Fix for the local environment is set up before testing.
97+
* Fix - Fix addon checks not being executed when running runtime checks.
98+
* Fix - Allow `default` as a text domain in the text domain check.
99+
* Fix - Allow GitHub URLs in the Plugin URI field.
100+
* Fix - Don't flag Apache license. It's allowed in the WordPress.org plugin repository.
101+
* Fix - Removes the path before the plugin, so it won't affect to badly named files.
102+
71103
= 1.2.0 =
72104

73105
* Enhancement - Added a check for badly used names in files.

0 commit comments

Comments
 (0)