Skip to content

Commit

Permalink
Merge pull request #781 from WordPress/chore/1.3.0
Browse files Browse the repository at this point in the history
Prepare 1.3.0 release
  • Loading branch information
davidperezgar authored Dec 1, 2024
2 parents 3488cb0 + 9b61ea7 commit bea9cb5
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 4 deletions.
4 changes: 2 additions & 2 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Plugin Check is a WordPress.org tool which provides checks to help plugins meet the directory requirements and follow various best practices.
* Requires at least: 6.3
* Requires PHP: 7.4
* Version: 1.2.0
* Version: 1.3.0
* Author: WordPress Performance Team and Plugin Review Team
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Expand All @@ -16,7 +16,7 @@

use WordPress\Plugin_Check\Plugin_Main;

define( 'WP_PLUGIN_CHECK_VERSION', '1.2.0' );
define( 'WP_PLUGIN_CHECK_VERSION', '1.3.0' );
define( 'WP_PLUGIN_CHECK_MINIMUM_PHP', '7.4' );
define( 'WP_PLUGIN_CHECK_MAIN_FILE', __FILE__ );
define( 'WP_PLUGIN_CHECK_PLUGIN_DIR_PATH', plugin_dir_path( WP_PLUGIN_CHECK_MAIN_FILE ) );
Expand Down
36 changes: 34 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
=== Plugin Check (PCP) ===

Contributors: wordpressdotorg
Tested up to: 6.6
Stable tag: 1.2.0
Tested up to: 6.7
Stable tag: 1.3.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: plugin best practices, testing, accessibility, performance, security
Expand Down Expand Up @@ -68,6 +68,38 @@ In any case, passing the checks in this tool likely helps to achieve a smooth pl

== Changelog ==

= 1.3.0 =

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

= 1.2.0 =

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

0 comments on commit bea9cb5

Please sign in to comment.