From f12a7322dd9011c3dcbf1234b37b60502f2fde72 Mon Sep 17 00:00:00 2001 From: David Levine Date: Fri, 4 Aug 2023 19:54:46 +0000 Subject: [PATCH 1/3] feat!: update rulesets for WPGraphQL additions --- WPGraphQL-Minimum/ruleset.xml | 3 ++- WPGraphQL-Strict/ruleset.xml | 4 ---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/WPGraphQL-Minimum/ruleset.xml b/WPGraphQL-Minimum/ruleset.xml index 2948553..3e5b22a 100644 --- a/WPGraphQL-Minimum/ruleset.xml +++ b/WPGraphQL-Minimum/ruleset.xml @@ -37,7 +37,6 @@ - @@ -55,4 +54,6 @@ + + diff --git a/WPGraphQL-Strict/ruleset.xml b/WPGraphQL-Strict/ruleset.xml index d6111b1..06ce6ef 100644 --- a/WPGraphQL-Strict/ruleset.xml +++ b/WPGraphQL-Strict/ruleset.xml @@ -30,9 +30,6 @@ 5 - - 5 - @@ -73,7 +70,6 @@ - From 172295c12355d6c3d2ef65edcad568e1cfe34377 Mon Sep 17 00:00:00 2001 From: David Levine Date: Fri, 4 Aug 2023 19:55:02 +0000 Subject: [PATCH 2/3] chore: update deps and version bump --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 09168ae..04c150e 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "axepress/wp-graphql-cs", "type": "phpcodesniffer-standard", "description": "PHP_CodeSniffer rules (sniffs) for the WPGraphQL ecosystem.", - "version": "1.0.0-beta.2", + "version": "1.0.0-beta.3", "keywords": [ "phpcs", "wpcs", From 017bdf03da6d696a62ddb335e1f72ddb1986ac16 Mon Sep 17 00:00:00 2001 From: David Levine Date: Fri, 4 Aug 2023 19:55:17 +0000 Subject: [PATCH 3/3] chore: update changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index afef17a..6cc487d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a ## [Unreleased] +## [1.0.0-beta.3] - 2023-08-04 +- feat!: Move `WordPress.WP.I18n.MissingTranslatorsComment` from `WPGraphQL-Strict` to `WPGraphQL-Minimum`. (Added to WPGraphQL in https://github.com/wp-graphql/wp-graphql/pull/2856) +- feat!: Move `SlevomatCodingStandard.Functions.StaticClosure` from `WPGraphQL-Strict` to `WPGraphQL-Minimum`. (Added to WPGraphQL in https://github.com/wp-graphql/wp-graphql/pull/2855) +- chore: Update `slevomat/coding-standard` to `8.13.4`. +- chore: Update Composer dev-deps. + ## [1.0.0-beta.2] - 2023-06-17 - dev: Remove `Squiz.Commenting.FunctionComment.ParamCommentFullStop` and `Squiz.Commenting.FunctionComment.EmptyThrows` from `WPGraphQL-Strict`. - dev: Update minimum PHPUnit version to `8.5.0`.