All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
3.1.0 - 2026-07-27
Props: @GaryJones, @jrfnl, @mahangu, @mchanDev, @mujuonly, @rebeccahum
This release raises the minimum requirements and reworks a large number of the VIPCS sniffs.
The minimum WordPressCS requirement is raised to 3.4.1 (from 3.2.0) — a security release which also brings numerous accuracy improvements to sniffs that VIPCS bundles — along with PHP_CodeSniffer 3.13.5, PHPCSUtils 1.2.3, PHPCSExtra 1.5.1 and VariableAnalysis 2.13.0. The minimum PHP version is now 7.4. Many sniffs have been reworked to fix false positives, add support for modern PHP syntaxes and adopt PHPCSUtils. The JavaScript-specific sniffs and the DynamicCalls sniff have been hard-deprecated ahead of their removal in 4.0.0, and the unused Security.Twig sniff has been removed.
Please ensure you run composer update automattic/vipwpcs --with-dependencies to benefit from this.
- #882: Performance/NoPaging: flag
posts_per_pageandnumberpostsset to-1(WordPress' "no limit" value), which previously slipped past the WPCS> 100check. - #883: Hooks/AlwaysReturnInFilter:
exit,dieorthrowin a filter callback now raises a dedicatedTerminatingInsteadOfReturnwarning, instead of the genericMissingReturnStatementerror. - #890: Add a Byte Order Mark (BOM) check to the
WordPressVIPMinimumruleset.
- #824: Disable
WordPress.Security.EscapeOutput.ExceptionNotEscapedin theWordPressVIPMinimumruleset, as throwing an exception with a translated message triggered it and the check is considered controversial. - #854: Functions/StripTags: always flag use of
strip_tags(), as the function should never be used on the VIP platform. - As VIPCS bundles a number of WordPressCS sniffs and the minimum WordPressCS version has been raised to 3.4.1, users will now receive more accurate results from the following WPCS sniffs (see the WordPressCS 3.3.0, 3.4.0 and 3.4.1 release notes for full details):
WordPress.DB.DirectDatabaseQuery: recognises more caching functions (such as thewp_cache_*_multiple()andwp_cache_*_salted()functions), and has fewer false positives when caching functions are called using a non-canonical function name.WordPress.DB.PreparedSQL: fewer false positives for correctly escaped SQL called using a non-canonical function name, and for static method calls to a non-global class namedwpdb.WordPress.Security.EscapeOutput: adds support for attributes on anonymous classes (PHP 8.0),readonlyanonymous classes (PHP 8.3) andexitas a function call (PHP 8.4); expands*::classfalse-positive protection; fixes false positives/negatives forget_search_query()and_deprecated_file()used with non-standard casing; and no longer treatswp_kses_allowed_html()as an escaping function, which may surface a new warning where that function's return value was being output directly.WordPress.Security.NonceVerification: fewer false positives when the nonce-checking function is called using a non-canonical function name.WordPress.Security.ValidatedSanitizedInput: clearer error message for theInputNotValidatederror code.WordPress.WP.AlternativeFunctions: fixes a false negative when class members share a name with select global WP functions/constants, and a false positive for the fully qualified stream constants\STDIN,\STDOUTand\STDERR.WordPress.WP.CronInterval: fixes a false positive when the callback reference used a different case to the function declaration.
- #839: Hard-deprecate all JavaScript-specific sniffs (
WordPressVIPMinimum.JS.*). They are excluded from the rulesets and will be removed in VIPCS 4.0.0. - #865: Hard-deprecate the
WordPressVIPMinimum.Functions.DynamicCallssniff. It is excluded from the rulesets and will be removed in VIPCS 4.0.0.
- #864: Remove the unused
WordPressVIPMinimum.Security.Twigsniff.
- #840: Fix dangerous comparisons against the value of token constants.
- #842: Security/Mustache: fix potential false positives on a delimiter change, and examine double-quoted strings with interpolation and nowdocs which were previously skipped.
- #846, #848: Security/PHPFilterFunctions: fix false positives for method calls, namespaced function calls and attributes which share the function name.
- #847: Security/StaticStrreplace: fix flawed detection of
str_replace()by extending the WordPressCSAbstractFunctionParameterSniff; method calls, namespaced calls, first-class callables and argument unpacking are no longer flagged. - #850: Variables/ServerVariables: fix incorrect quote stripping and expand safeguards against false positives.
- #851: Constants/ConstantString: fix flawed detection of
define()/defined()by extendingAbstractFunctionParameterSniff, and clarify the error message. - #852: Hooks/RestrictedHooks: fix false positives (method/namespaced calls, first-class callables, attributes) and disregard comments in the hook-name parameter.
- #853: Performance/LowExpiryCacheTime: avoid a possible fatal error when a PHP 7.4+ numeric literal or 8.1+ octal literal is used as the cache time.
- #855: Performance/FetchingRemoteData: fix flawed function-call detection by extending
AbstractFunctionParameterSniff. - #858: Classes/DeclarationCompatibility: modernise and fix the sniff.
- #861: Security/EscapingVoidReturnFunctions: fix flawed detection of
esc_*()/wp_kses*()calls by extendingAbstractFunctionParameterSniff; safeguard argument unpacking, attributes and first-class callables. - #862: Functions/DynamicCalls: fix end-of-statement determination and other minor issues.
- #866: UserExperience/AdminBarRemoval: several fixes — case-insensitive function-name matching, recognise
add_action()as an alias, disregard comments in parameters, and no longer treat a CSS file as PHP; plus PHP 8.0+ function-call and 8.1+ first-class-callable support. - #867: Performance/CacheValueOverride: fix false negatives for fully qualified calls and false positives for PHP 8.1+ first-class callables and variables.
- #869: Constants/RestrictedConstants: fix a nonsensical comparison and use PHPCSUtils for quote stripping.
- #872: Performance/TaxonomyMetaInOptions: extend
AbstractFunctionParameterSniffand add PHP 8.0+ function-call and nullsafe-operator support. - #881: Hooks/AlwaysReturnInFilter: resolve bugs and adopt PHPCSUtils.
- WordPressCS 3.4.1 fixes a vulnerability in the
WordPress.WP.EnqueuedResourceParameterssniff whereby running it over untrusted code could lead to arbitrary command execution on the scanning host. The VIPCS rulesets do not enable that sniff, so VIPCS' own behaviour is unaffected, but raising the minimum WordPressCS version removes the affected releases from the dependency tree and protects users who additionally run theWordPressorWordPress-Extrastandards.
- Composer:
- #857: Raise the minimum supported versions of all coding-standard dependencies. This release requires WordPressCS 3.4.1, PHP_CodeSniffer 3.13.5, PHPCSUtils 1.2.3, PHPCSExtra 1.5.1 and VariableAnalysis 2.13.0.
- #828: Prevent a
composer.lockfile from being created. - #837: Bump the PHP Parallel Lint requirement.
- #880: Bump the minimum PHP version to 7.4, drop PHPUnit 8 support and fix CI.
- Rulesets:
- Sniffs:
- #843: Fix license information and standardise the file docblocks.
- #844: Remove
@sincetags which relate to WordPressCS. - #856: Classes/RestrictedExtendClasses: only listen for the
extendskeyword, significantly improving performance, and add tests. - #863: Functions/RestrictedFunctions: improve the
is_targetted_token()method. - #868: Security/Underscorejs: start using the PHPCSUtils
FilePathutility. - #870: Various minor CS fixes.
- Docs:
- QA:
- Tests:
- GitHub Actions:
3.0.1 - 2024-05-14
Props: @GaryJones, @jrnfl, @terriann, @rebeccahum
Increases requirements for PHPCS from 3.7.2 to 3.9.2 for improved PHP 8.2 and PHP 8.3 support. Please ensure you run composer update automattic/vipwpcs --with-dependencies to benefit from this.
- Functions/RestrictedFunctions:
- #799: Classes/DeclarationCompatibility: Sync signature definitions with WP Core.
- #797: GH: Add initial dependabot config file.
- GH Actions:
- Composer:
- #805: Raise minimum version for better PHP 8.2 support.
- #805: Up the minimum PHPCSExtra version to 1.2.1.
- #821: Up the minimum PHPCSUtils version to 1.0.11.
- #821: Up the minimum PHPCS version to 3.9.2.
- #821: Up the minimum WPCS version to 3.1.0.
- #821: Up the minimum PHPCSVariableAnalysis version to 2.11.18.
- Docs:
- #809: Unit tests: Allow for PHPUnit 8 and 9.
3.0.0 - 2023-09-05
Props: @GaryJones, @jrfnl
This release requires WordPressCS 3.0.0. It is not compatible with WordPressCS 2.x. Users should read the WordPressCS 3.0 upgrade guide for end-users.
Increases requirements for PHPCS from 3.7.1 to 3.7.2.
The tagged releases branch is now main instead of master.
- #780: Performance/WPQueryParams: defer to the parent sniff.
- Two error codes changed:
WordPressVIPMinimum.Performance.WPQueryParams.PostNotInis nowWordPressVIPMinimum.Performance.WPQueryParams.PostNotIn_post__not_in.WordPressVIPMinimum.Performance.WPQueryParams.SuppressFiltersTrueis nowWordPressVIPMinimum.Performance.WPQueryParams.SuppressFilters_suppress_filters.
- Two error codes changed:
- #774: Performance/BatcacheWhitelistedParams: remove the sniff.
- #775: Compatibility/Zoninator: remove the sniff.
- #776: Variables/VariableAnalysis: remove the sniff.
- #784: Performance/WPQueryParams: prevent false positives for
'exclude'withget_users(). - #788: Security/Mustache: prevent false positives on block editor templates.
- #778: CS: improve use statements.
- #781: Performance/NoPaging: add extra tests.
- #782: GH Actions: minor tweaks to the composer options used.
- #783: Hooks/AlwaysReturnInFilter: remove redundant condition.
- #785: Docs: remove redundant
@packagetags. - #786: Add PHPStan to QA checks.
- #787: GH Actions: tweak the way the PHPCS/WPCS versions are set.
- #789: Updates related to branch rename from
mastertomain. - #790: PHPUnit: Use 7.5 schema.
- #791: Docs: Update
CONTRIBUTING.md.
2.3.4 - 2023-07-05
Props: kshaner, GaryJones, jrfnl, yolih
Increases requirements for PHPCS from 3.5.5+ to 3.7.1.
- #709: Add
get_theme_file_path()to list of allowed include functions. - #762: IncludingFile: allow for more path-returning functions.
- #748: ProperEscapingFunction: Fix short tag detection.
- #760: RestrictedFunctions: remove reference to function which doesn't exist.
-
#768: DeclarationCompatibility: performance improvement.
-
Rulesets:
-
Composer:
- #742: Up the minimum PHPCS version to 3.7.1.
- #764: Update VariableAnalysis dependency to 2.11.17.
- #738: Allow for the 1.0.0 version of the Composer PHPCS plugin.
- #721: Update composer.json keywords.
- #714: Update PHP Parallel Lint and Console Highlighter.
- #741: Update script names.
- #747: Fix script references.
- #708: Update references to the Composer plugin.
-
Tests:
-
Coding Standards
-
CI:
- #705: Various updates.
- #750: Test Higher PHP versions.
- #724: Fix use of deprecated
set-output. - #725: Update the xmllint-problem-matcher.
- #726: Various tweaks.
- #728: Bust the cache semi-regularly.
- #711: Version update for various predefined actions.
- #712: Fix build failure.
- #755: Validate the PHPCS installed standards.
- #757: Test and Quicktest tweaks.
- #767: Minor simplifications.
- #769: .gitattributes: readability improvement.
-
Docs:
- #612: The
WordPressVIPMinimum.Compatibility.Zoninatorsniff is (soft) deprecated and will be removed in the 3.0.0 release. - #613: The
WordPressVIPMinimum.Performance.BatcacheWhitelistedParamssniff is (soft) deprecated and will be removed in the 3.0.0 release.
2.3.3 - 2021-09-29
Props: gudmdharalds, jrfnl, BrookeDot, rebeccahum
- #690: Ruleset: do not flag undefined variables in file scope or unused variables before require statement.
- #691: Composer: use VariableAnalysis 2.11.1.
- #694: PHPCS: enable caching for quicker scanning.
- #697: ProperEscapingFunction: upgrade htmlAttrNotByEscHTML to default severity level.
- #692: RestrictedFunctions: remove dbDelta group.
2.3.2 - 2021-04-28
Props: jrfnl
- #681: ProperEscapingFunction: improve attribute matching accuracy for notAttrEscAttr.
2.3.1 - 2021-04-23
Props: jrfnl
- #668: ProperEscapingFunction: fix overreach of comma usage in non-echo expressions for notAttrEscAttr.
- #670: ProperEscapingFunction: improve "action" match precision for hrefSrcEscUrl.
- #670: ProperEscapingFunction: private properties
$url_attrsand$attr_endingsare deprecated along with the public methodsis_html_attr()andattr_expects_url().
2.3.0 - 2021-04-19
Props: jrfnl, rebeccahum, kevinfodness, GaryJones.
** There is a minor breaking change in the ProperEscapingFunction sniff from PR #624. The escaping_function property can no longer be overruled via custom rulesets. Please remove any usages of the property in custom rulesets.
** Composer now requires the phpcodesniffer-composer-installer plugin per #583. Note: If you either include it in the "require-dev" of your composer.json, use another Composer PHPCS plugin, or run bash commands to register PHPCS standards, please remove it from those sources to prevent interferences or version constraint conflicts.
- #581: AlwaysReturnInFilter: flag abstract methods for manual inspection.
- #583: Composer: require phpcs-composer-installer plugin.
- #586: IncludingNonPHPFile: recognition of .phar file extensions.
- #589: WPQueryParams: flags 'exclude' array key.
- #595: Underscorejs: checks for additional print syntaxes and now throws an additional error for each occurrence of unescaped notation.
- #624: ProperEscapingFunction: account for additional escaping functions and check for
esc_attr()usage in non-HTML attributes. - #638: IncludingFile: new public property
$allowedKeywordsfor allowing custom partial keywords in constants to reduce false positives.
- #586: IncludingNonPHPFile: various performance improvements.
- #587: LowExpiryCacheTime: new warning added for manual inspection along with various improvements.
- #592: DynamicCalls: various improvements.
- #595: Underscorejs: various improvements.
- #618: RestrictedFunctions: upgrade setcookie() to error at sniff level and remove Batcache references from messaging.
- #620: Ruleset: silence UnusedVariable from VariableAnalysis to reduce noise.
- #630: VariableAnalysis: fix incompatibility for VariableAnalysis standard with previously deprecated native VIPCS sniff.
- #639: RestrictedFunctions: remove site_option group.
- #644: RestrictedFunctions: remove wp_cache_get_multi group.
- #645: Ruleset: silence WordPress.WP.AlternativeFunctions.file_system_read_readfile.
- #646: Ruleset: silence WordPress.WP.AlternativeFunctions.file_system_read_fclose.
- #647: RestrictedFunctions: remove get_super_admins group.
- #649: RestrictedFunctions: downgrade switch_to_blog() to warning and change messaging.
- #652: RestrictedFunctions/RestrictedVariables: remove usermeta related errors.
- #444: ConstantString: only error when a plain constant is passed as constant name parameter.
- #581: AlwaysReturnInFilter: fix runtime failure on abstract methods.
- #584: Performance: more selective sniffing for efficiency.
- #586: IncludingNonPHPFile: various bug fixes such as recognition of interpolated strings and case insensitivity in file extensions.
- #587: LowExpiryCacheTime: allow arithmetic operators, simple floats, numerical strings, zeroes and parentheses in calculations, and FQN time constants.
- #592: DynamicCalls: ignore comments, allow double quotes and remove potential memory leak.
- #595: Underscorejs: fixed false positive for when a variable is
_.escape()-ed. - #624: ProperEscapingFunction: slash escaped quotes and non-quoted strings in HTML attributes are now parsed as expected.
- #624: ProperEscapingFunction: remove
$escaping_functionspublic property.
- #582: CI: re-try composer install on failure.
- #599: CI: add build against PHP 8.
- #606: Ruleset: remove redundant rule ref.
- #607: Ruleset: remove redundant rule ref.
- #608: Ruleset: remove duplicate rule ref.
- #611: Ruleset: remove redundant notice type declaration.
- #617: Ruleset: remove redundant notice type declaration.
- #619: Docs: Update links to wpvip.com.
- #631: QA: remove unused use statements.
- #632: Docs: various minor improvements (typos, alignment and code examples).
- #633: CI: switch to GitHub Actions.
- #635: Ruleset: remove redundant rule ref.
- #653: CI: use parallel linting of PHP files.
- #655: QA: remove redundant ignore annotations.
- #656: CI: always check that sniffs are feature complete.
- #657: CI: add "quicktest" stage for non-PR/merge builds.
- #658: Release template: add checkbox for dependency check.
2.2.0 - 2020-09-09
Props: GaryJones, jrfnl, rebeccahum.
Technically, there's a breaking change due to the use of the VariableAnalysis package over the previous sniff. If you have WordPressVIPMinimum.Variables.Variables references in your PHPCS config file or in inline ignore comments, then these will need to be updated to VariableAnalysis.CodeAnalysis.VariableAnalysis.
- #494:
.gitattributesfile. - #495:
CODEOWNERSfile. - #450: VariableAnalysis package.
- #560: Allow checking test code coverage.
- #579: Docs: Add comparisons and props to change log for old versions.
- #500: Travis: change from "trusty" to "xenial".
- #501: Move and improve
CONTRIBUTING.md. - #502: CS Ruleset: minor tweaks.
- #508: RulesetTest: don't use the system default version of PHP.
- #558: Test bootstrap: various minor tweaks.
- #571: CS: change yoda conditions to non-yoda.
- #573: Composer: Change minimum stability to stable.
- #503: RulesetTest, fix compatibility with Windows.
- #504: RulesetTest: fail the build on failing ruleset tests, fix the failing ruleset test, and fix the test script to handle 0 values.
- #505: DeclarationCompatibility: fix incorrect signature check for
Walker::walk(). - #509: RulesetTest: Revert #485 and fix one of the three causes properly.
- #559: Variables/RestrictedVariables: fix namespace of unit test file, fix the test.
- #561: Functions/RestrictedFunctions: fix false positive on class instantiation.
- #563: Hooks/AlwaysReturnInFilter: add support for hook-ins using short arrays.
- #564: Hooks/PreGetPosts: add support for hook-ins using short arrays.
- #565: PreGetPosts: improve the
isEarlyMainQueryCheck()method. - #566: RestrictedFunctions: fix false negative - functions in
config_settingswould never match. - #569: RestrictedVariables: don't report on "use" in
isset(). - #575: ProperEscaping: Fix message for action attribute.
- #576: Docs: Update notes for releasing.
- #450: Deprecate Variables/VariableAnalysisSniff. Will be removed in the next major release.
2.1.0 - 2020-07-07
Bumps requirements to PHPCS 3.5.5+ and WPCS 2.3.0+.
Props: GaryJones, jenkoian, kevinfodness, rebeccahum.
get_page_by_path()restricted function warning, to suggestwpcom_vip_get_page_by_path()function.stats_get_csv()restricted function error, since this is a Jetpack-only function.- Expanded list of HTMLExecutingFunctions to include
after,appendTo,before,insertAfter,insertBefore,prepend,prependTo,replaceAllandreplaceWith. - Support PHP 5.4+ (down from 5.6+).
- PHP 8 nightly testing.
- Expand message for
wp_remote_get()usage. - Downgrade
append()usage violation from Error to Warning for VIP Go, to be consistent with the other HTMLExecutingFunctions. - Downgrade AdminBarRemoval sniff from Error to Warning for VIP Go.
- Add
get_parent_theme_file_path()to safelist of path functions forWordPressVIPMinimum.Files.IncludingFilesniff. - Allow short array syntax and fix tests within the VIPCS own coding standards.
- Update issue templates.
- Use new
WordPress.DateTime.RestrictedFunctionssniff instead of deprecatedWordPress.WP.TimezoneChange. - Fixed warnings and information items in Travis.
get_super_admins()restricted function rule for VIP Go.WordPressVIPMinimum.VersionControl.MergeConflictsniff in favour ofGeneric.VersionControl.GitMergeConflict.
2.0.0 - 2019-07-12
This release switches from having WPCS 1.* as a dependency, to WPCS 2.*. It is not compatible with WPCS 1.*.
The sniffs in WPCS 2.* are more accurate, so you may see new violations there weren't being reported before, and a reduction in violations for false positives.
Props: GaryJones, hanifn, paulscreiber, rebeccahum, tomjn.
- Switch to using WPCS
2.*.- Remove reference to WPCS's
PHPAliases.php. - Remove WPCS
1.*'sWordPress.VIPreferences from rulesets. - Bump PHPCS minimum required version to 3.3.1.
- Update the WPCS namespace.
- Update ruleset and ruleset test to account for WPCS 2's switch to
WordPress.PHP.IniSetsniff. - Update ruleset test for WPCS security sniffs.
- Update
DiscouragedPHPFunctionsgroup exclusion inWordPressVIPMinimumruleset.
- Remove reference to WPCS's
- Downgrade use of file operation functions from Error to Warning:
deletefile_put_contentsflockfputcsvfputsfwriteftruncateis_writableis_writeablelinkrenamesymlinktempnamtouchunlinkfclosefopenfile_get_contents
- Simplify Travis config.
- Switch references from
vip.wordpress.comtowpvip.com. - Documentation updates.
- Switch development to a
git-flowworkflow.
- Fixed CS violations in VIPCS code.
1.0.0 - 2019-04-24
This release contains many breaking changes.
It requires PHP >= 5.6, PHPCS 3.2.3+, and WPCS 1.*. It does not work with WPCS 2.*.
Props: GaryJones, rebeccahum, whyisjake, WPprodigy.
The sniffs in VIPCS have been reorganised into different categories, with new sniff names and new violation codes. The changes are detailed in the table below. If you reference any of the old violations in your custom ruleset (to change severity, type, or message), or with // phpcs:ignore or // phpcs:disable, you will need to updates these references to the new violation codes.
| Original Violation | New Violation |
|---|---|
WordPressVIPMinimum.Actions.PreGetPostSniff.PreGetPosts |
WordPressVIPMinimum.Hooks.PreGetPosts.PreGetPosts |
WordPressVIPMinimum.Cache.BatcacheWhitelistedParams.strippedGetParam |
WordPressVIPMinimum.Performance.BatcacheWhitelistedParams.StrippedGetParam |
WordPressVIPMinimum.Cache.CacheValueOverride.CacheValueOverride |
WordPressVIPMinimum.Performance.CacheValueOverride.CacheValueOverride |
WordPressVIPMinimum.Cache.LowExpiryCacheTime.LowCacheTime |
WordPressVIPMinimum.Performance.LowExpiryCacheTime.LowCacheTime |
WordPressVIPMinimum.Classes.DeclarationCompatibility.DeclarationCompatibility |
No change |
WordPressVIPMinimum.Classes.RestrictedExtendClasses.wp_cli_wp_cli_command |
WordPressVIPMinimum.Classes.RestrictedExtendClasses.wp_cli |
WordPressVIPMinimum.Constants.ConstantsRestrictions.ConstantRestrictions |
WordPressVIPMinimum.Constants.RestrictedConstants.DefiningRestrictedConstantWordPressVIPMinimum.Constants.RestrictedConstants.UsingRestrictedConstant |
WordPressVIPMinimum.Constants.ConstantString.NotCheckingConstantName |
No change |
WordPressVIPMinimum.Files.IncludingFile.IncludingFile |
WordPressVIPMinimum.Files.IncludingFile.UsingVariableWordPressVIPMinimum.Files.IncludingFile.UsingCustomConstantWordPressVIPMinimum.Files.IncludingFile.UsingCustomFunctionWordPressVIPMinimum.Files.IncludingFile.NotAbsolutePathWordPressVIPMinimum.Files.IncludingFile.ExternalURLWordPressVIPMinimum.Files.IncludingFile.RestrictedConstant |
WordPressVIPMinimum.Files.IncludingNonPHPFile.IncludingSVGCSSFile |
WordPressVIPMinimum.Files.IncludingNonPHPFile.IncludingSVGCSSFile |
WordPressVIPMinimum.Files.IncludingNonPHPFile.IncludingNonPHPFile |
WordPressVIPMinimum.Files.IncludingNonPHPFile.IncludingNonPHPFile |
WordPressVIPMinimum.Filters.AlwaysReturn.voidReturn |
WordPressVIPMinimum.Hooks.AlwaysReturnInFilter.VoidReturn |
WordPressVIPMinimum.Filters.AlwaysReturn.missingReturnStatement |
WordPressVIPMinimum.Hooks.AlwaysReturnInFilter.MissingReturnStatement |
WordPressVIPMinimum.Filters.RestrictedHook.UploadMimes |
WordPressVIPMinimum.Hooks.RestrictedHooks.upload_mimes_upload_mimes |
WordPressVIPMinimum.Filters.RestrictedHook.HighTimeout |
WordPressVIPMinimum.Hooks.RestrictedHooks.http_request_http_request_argsWordPressVIPMinimum.Hooks.RestrictedHooks.http_request_http_request_timeout |
WordPressVIPMinimum.Functions.CheckReturnValue.CheckReturnValue |
WordPressVIPMinimum.Functions.CheckReturnValue.DirectFunctionCallWordPressVIPMinimum.Functions.CheckReturnValue.NonCheckedVariable |
WordPressVIPMinimum.Functions.CreateFunction.CreateFunction |
WordPressVIPMinimum.Functions.RestrictedFunctions.create_function_create_function |
WordPressVIPMinimum.Functions.DynamicCalls.DynamicCalls |
No change |
WordPressVIPMinimum.Functions.StripTags.StripTagsOneParameter |
No change |
WordPressVIPMinimum.Functions.StripTags.StripTagsTwoParameters |
No change |
WordPressVIPMinimum.JS.DangerouslySetInnerHTML.dangerouslySetInnerHTML |
WordPressVIPMinimum.JS.DangerouslySetInnerHTML.Found |
WordPressVIPMinimum.JS.HTMLExecutingFunctions.html |
No change |
WordPressVIPMinimum.JS.HTMLExecutingFunctions.append |
No change |
WordPressVIPMinimum.JS.HTMLExecutingFunctions.write |
No change |
WordPressVIPMinimum.JS.HTMLExecutingFunctions.writeln |
No change |
WordPressVIPMinimum.JS.InnerHTML.innerHTML |
WordPressVIPMinimum.JS.InnerHTML.Found |
WordPressVIPMinimum.JS.StringConcat.StringConcatNext |
WordPressVIPMinimum.JS.StringConcat.Found |
WordPressVIPMinimum.JS.StrippingTags.VulnerableTagStripping |
No change |
WordPressVIPMinimum.JS.Window.VarAssignment |
No change |
WordPressVIPMinimum.JS.Window.location |
No change |
WordPressVIPMinimum.JS.Window.name |
No change |
WordPressVIPMinimum.JS.Window.status |
No change |
WordPressVIPMinimum.Plugins.Zoninator.Zoninator |
WordPressVIPMinimum.Compatibility.Zoninator.RequiresRESTAPI |
WordPressVIPMinimum.TemplatingEngines.UnescapedOutputMustache.{{{ |
WordPressVIPMinimum.Security.Mustache.OutputNotation |
WordPressVIPMinimum.TemplatingEngines.UnescapedOutputMustache.{{& |
WordPressVIPMinimum.Security.Mustache.VariableNotation |
WordPressVIPMinimum.TemplatingEngines.UnescapedOutputMustache.delimeterChange |
WordPressVIPMinimum.Security.Mustache.DelimiterChange |
WordPressVIPMinimum.TemplatingEngines.UnescapedOutputMustache.SafeString |
WordPressVIPMinimum.Security.Mustache.SafeString |
WordPressVIPMinimum.TemplatingEngines.UnescapedOutputTwig.autoescape false |
WordPressVIPMinimum.Security.Twig.AutoescapeFalse |
WordPressVIPMinimum.TemplatingEngines.UnescapedOutputTwig.raw |
WordPressVIPMinimum.Security.Twig.RawFound |
WordPressVIPMinimum.TemplatingEngines.UnescapedOutputUnderscorejs.<%= |
WordPressVIPMinimum.Security.Underscorejs.OutputNotation |
WordPressVIPMinimum.TemplatingEngines.UnescapedOutputUnderscorejs.interpolate |
WordPressVIPMinimum.Security.Underscorejs.InterpolateFound |
WordPressVIPMinimum.TemplatingEngines.UnescapedOutputVuejs.v-html |
WordPressVIPMinimum.Security.Vuejs.Found |
WordPressVIPMinimum.Variables.ServerVariables.BasicAuthentication |
No change |
WordPressVIPMinimum.Variables.ServerVariables.UserControlledHeaders |
No change |
WordPressVIPMinimum.Variables.VariableAnalysis.VariableRedeclaration |
No change |
WordPressVIPMinimum.Variables.VariableAnalysis.UndefinedVariables |
WordPressVIPMinimum.Variables.VariableAnalysis.UndefinedVariable |
WordPressVIPMinimum.Variables.VariableAnalysis.$... |
WordPressVIPMinimum.Variables.VariableAnalysis.SelfInsideClosureWordPressVIPMinimum.Variables.VariableAnalysis.SelfOutsideClassWordPressVIPMinimum.Variables.VariableAnalysis.StaticInsideClosureWordPressVIPMinimum.Variables.VariableAnalysis.StaticOutsideClass |
WordPressVIPMinimum.Variables.VariableAnalysis.UnusedVariable |
No change |
WordPressVIPMinimum.VIP.ErrorControl.ErrorControl |
Replaced with Generic.PHP.NoSilencedErrors |
WordPressVIPMinimum.VIP.EscapingVoidReturnFunctions.escapingVoidReturningFunction |
WordPressVIPMinimum.Security.EscapingVoidReturnFunctions.Found |
WordPressVIPMinimum.VIP.ExitAfterRedirect.NoExitInConditional |
WordPressVIPMinimum.Security.ExitAfterRedirect.NoExitInConditional |
WordPressVIPMinimum.VIP.ExitAfterRedirect.NoExit |
WordPressVIPMinimum.Security.ExitAfterRedirect.NoExit |
WordPressVIPMinimum.VIP.FetchingRemoteData.fileGetContentsUknown |
WordPressVIPMinimum.Performance.FetchingRemoteData.FileGetContentsUnknown |
WordPressVIPMinimum.VIP.FetchingRemoteData.fileGetContentsRemoteFile |
WordPressVIPMinimum.Performance.FetchingRemoteData.FileGetContentsRemoteFile |
WordPressVIPMinimum.VIP.FlushRewriteRules.FlushRewriteRules |
Replaced with WordPressVIPMinimum.Functions.RestrictedFunctions.flush_rewrite_rules_flush_rewrite_rules and WordPressVIPMinimum.Functions.RestrictedFunctions.flush_rewrite_rules_flush_rewrite_rules |
WordPressVIPMinimum.VIP.MergeConflict.HEAD |
WordPressVIPMinimum.MergeConflict.MergeConflict.Start |
WordPressVIPMinimum.VIP.MergeConflict.DELIMITER |
WordPressVIPMinimum.MergeConflict.MergeConflict.EndWordPressVIPMinimum.MergeConflict.MergeConflict.Separator |
WordPressVIPMinimum.VIP.PHPFilterFunctions.MissingThirdParameter |
WordPressVIPMinimum.Security.PHPFilterFunctions.MissingThirdParameter |
WordPressVIPMinimum.VIP.PHPFilterFunctions.RestrictedFilter |
WordPressVIPMinimum.Security.PHPFilterFunctions.RestrictedFilter |
WordPressVIPMinimum.VIP.PHPFilterFunctions.MissingSecondParameter |
WordPressVIPMinimum.Security.PHPFilterFunctions.MissingSecondParameter |
WordPressVIPMinimum.VIP.ProperEscapingFunction.hrefSrcEscUrl |
WordPressVIPMinimum.Security.ProperEscapingFunction.hrefSrcEscUrl |
WordPressVIPMinimum.VIP.ProperEscapingFunction.htmlAttrNotByEscHTML |
WordPressVIPMinimum.Security.ProperEscapingFunction.htmlAttrNotByEscHTML |
WordPressVIPMinimum.VIP.RegexpCompare.compare_compare |
WordPressVIPMinimum.Performance.RegexCompare.compare_compare |
WordPressVIPMinimum.VIP.RegexpCompare.compare_meta_compare |
WordPressVIPMinimum.Performance.RegexCompare.compare_meta_compare |
WordPressVIPMinimum.VIP.RemoteRequestTimeout.timeout_timeout |
WordPressVIPMinimum.Performance.RemoteRequestTimeout.timeout_timeout |
WordPressVIPMinimum.VIP.RestrictedFunctions.wp_cache_get_multi.wp_cache_get_multi |
WordPressVIPMinimum.Functions.RestrictedFunctions.wp_cache_get_multi_wp_cache_get_multi |
WordPressVIPMinimum.VIP.RestrictedFunctions.opcache_opcache_reset |
WordPressVIPMinimum.Functions.RestrictedFunctions.opcache_opcache_reset |
WordPressVIPMinimum.VIP.RestrictedFunctions.opcache_opcache_invalidate |
WordPressVIPMinimum.Functions.RestrictedFunctions.opcache_opcache_invalidate |
WordPressVIPMinimum.VIP.RestrictedFunctions.opcache_opcache_compile_file |
WordPressVIPMinimum.Functions.RestrictedFunctions.opcache_opcache_compile_file |
WordPressVIPMinimum.VIP.RestrictedFunctions.config_settings_opcache_is_script_cached |
WordPressVIPMinimum.Functions.RestrictedFunctions.config_settings_opcache_is_script_cached |
WordPressVIPMinimum.VIP.RestrictedFunctions.config_settings_opcache_get_status |
WordPressVIPMinimum.Functions.RestrictedFunctions.config_settings_opcache_get_status |
WordPressVIPMinimum.VIP.RestrictedFunctions.config_settings_opcache_get_configuration |
WordPressVIPMinimum.Functions.RestrictedFunctions.config_settings_opcache_get_configuration |
WordPressVIPMinimum.VIP.RestrictedFunctions.get_super_admins_get_super_admins |
WordPressVIPMinimum.Functions.RestrictedFunctions.get_super_admins_get_super_admins |
WordPressVIPMinimum.VIP.RestrictedFunctions.internal_wpcom_vip_irc |
WordPressVIPMinimum.Functions.RestrictedFunctions.internal_wpcom_vip_irc |
WordPressVIPMinimum.VIP.RestrictedFunctions.rewrite_rules_flush_rewrite_rules |
WordPressVIPMinimum.Functions.RestrictedFunctions.flush_rewrite_rules_flush_rewrite_rules |
WordPressVIPMinimum.VIP.RestrictedFunctions.attachment_url_to_postid_attachment_url_to_postid |
WordPressVIPMinimum.Functions.RestrictedFunctions.attachment_url_to_postid_attachment_url_to_postid |
WordPressVIPMinimum.VIP.RestrictedFunctions.dbDelta_dbDelta |
WordPressVIPMinimum.Functions.RestrictedFunctions.dbDelta_dbDelta |
WordPressVIPMinimum.VIP.RestrictedFunctions.switch_to_blog_switch_to_blog |
WordPressVIPMinimum.Functions.RestrictedFunctions.switch_to_blog_switch_to_blog |
WordPressVIPMinimum.VIP.RestrictedFunctions.get_page_by_title_get_page_by_title |
WordPressVIPMinimum.Functions.RestrictedFunctions.get_page_by_title_get_page_by_title |
WordPressVIPMinimum.VIP.RestrictedFunctions.url_to_postid_url_to_postid |
WordPressVIPMinimum.Functions.RestrictedFunctions.url_to_postid_url_to_postid |
WordPressVIPMinimum.VIP.RestrictedFunctions.url_to_postid_url_to_post_id |
Removed |
WordPressVIPMinimum.VIP.RestrictedFunctions.custom_role_add_role |
WordPressVIPMinimum.Functions.RestrictedFunctions.custom_role_add_role |
WordPressVIPMinimum.VIP.RestrictedFunctions.user_meta_get_user_meta |
WordPressVIPMinimum.Functions.RestrictedFunctions.user_meta_get_user_meta |
WordPressVIPMinimum.VIP.RestrictedFunctions.user_meta_update_user_meta |
WordPressVIPMinimum.Functions.RestrictedFunctions.user_meta_update_user_meta |
WordPressVIPMinimum.VIP.RestrictedFunctions.user_meta_delete_user_meta |
WordPressVIPMinimum.Functions.RestrictedFunctions.user_meta_delete_user_meta |
WordPressVIPMinimum.VIP.RestrictedFunctions.user_meta_add_user_meta |
WordPressVIPMinimum.Functions.RestrictedFunctions.user_meta_add_user_meta |
WordPressVIPMinimum.VIP.RestrictedFunctions.term_exists_term_exists |
WordPressVIPMinimum.Functions.RestrictedFunctions.term_exists_term_exists |
WordPressVIPMinimum.VIP.RestrictedFunctions.count_user_posts_count_user_posts |
WordPressVIPMinimum.Functions.RestrictedFunctions.count_user_posts_count_user_posts |
WordPressVIPMinimum.VIP.RestrictedFunctions.wp_old_slug_redirect_wp_old_slug_redirect |
WordPressVIPMinimum.Functions.RestrictedFunctions.wp_old_slug_redirect_wp_old_slug_redirect |
WordPressVIPMinimum.VIP.RestrictedFunctions.get_adjacent_post_get_adjacent_post |
WordPressVIPMinimum.Functions.RestrictedFunctions.get_adjacent_post_get_adjacent_post |
WordPressVIPMinimum.VIP.RestrictedFunctions.get_adjacent_post_get_previous_post |
WordPressVIPMinimum.Functions.RestrictedFunctions.get_adjacent_post_get_previous_post |
WordPressVIPMinimum.VIP.RestrictedFunctions.get_adjacent_post_get_previous_post_link |
WordPressVIPMinimum.Functions.RestrictedFunctions.get_adjacent_post_get_previous_post_link |
WordPressVIPMinimum.VIP.RestrictedFunctions.get_adjacent_post_get_next_post |
WordPressVIPMinimum.Functions.RestrictedFunctions.get_adjacent_post_get_next_post |
WordPressVIPMinimum.VIP.RestrictedFunctions.get_adjacent_post_get_next_post_link |
WordPressVIPMinimum.Functions.RestrictedFunctions.get_adjacent_post_get_next_post_link |
WordPressVIPMinimum.VIP.RestrictedFunctions.get_intermediate_image_sizes_get_intermediate_image_sizes |
WordPressVIPMinimum.Functions.RestrictedFunctions.get_intermediate_image_sizes_get_intermediate_image_sizes |
WordPressVIPMinimum.VIP.RestrictedFunctions.wp_is_mobile_wp_is_mobile |
WordPressVIPMinimum.Functions.RestrictedFunctions.wp_is_mobile_wp_is_mobile |
WordPressVIPMinimum.VIP.RestrictedFunctions.wp_mail_wp_mail |
WordPressVIPMinimum.Functions.RestrictedFunctions.wp_mail_wp_mail |
WordPressVIPMinimum.VIP.RestrictedFunctions.wp_mail_mail |
WordPressVIPMinimum.Functions.RestrictedFunctions.wp_mail_mail |
WordPressVIPMinimum.VIP.RestrictedFunctions.is_multi_author_is_multi_author |
WordPressVIPMinimum.Functions.RestrictedFunctions.is_multi_author_is_multi_author |
WordPressVIPMinimum.VIP.RestrictedFunctions.advanced_custom_fields_the_sub_field |
WordPressVIPMinimum.Functions.RestrictedFunctions.advanced_custom_fields_the_sub_field |
WordPressVIPMinimum.VIP.RestrictedFunctions.advanced_custom_fields_the_field |
WordPressVIPMinimum.Functions.RestrictedFunctions.advanced_custom_fields_the_field |
WordPressVIPMinimum.VIP.RestrictedFunctions.wp_remote_get_wp_remote_get |
WordPressVIPMinimum.Functions.RestrictedFunctions.wp_remote_get_wp_remote_get |
WordPressVIPMinimum.VIP.RestrictedFunctions.cookies_setcookie |
WordPressVIPMinimum.Functions.RestrictedFunctions.cookies_setcookie |
WordPressVIPMinimum.VIP.RestrictedFunctions.get_posts_get_posts |
WordPressVIPMinimum.Functions.RestrictedFunctions.get_posts_get_posts |
WordPressVIPMinimum.VIP.RestrictedFunctions.get_posts_wp_get_recent_posts |
WordPressVIPMinimum.Functions.RestrictedFunctions.get_posts_wp_get_recent_posts |
WordPressVIPMinimum.VIP.RestrictedFunctions.get_posts_get_children |
WordPressVIPMinimum.Functions.RestrictedFunctions.get_posts_get_children |
WordPressVIPMinimum.VIP.RestrictedFunctions.wpcom_vip_get_term_link_wpcom_vip_get_term_link |
WordPressVIPMinimum.Functions.RestrictedFunctions.wpcom_vip_get_term_link_wpcom_vip_get_term_link |
WordPressVIPMinimum.VIP.RestrictedFunctions.wpcom_vip_get_term_by_wpcom_vip_get_term_by |
WordPressVIPMinimum.Functions.RestrictedFunctions.wpcom_vip_get_term_by_wpcom_vip_get_term_by |
WordPressVIPMinimum.VIP.RestrictedFunctions.wpcom_vip_get_category_by_slug_wpcom_vip_get_category_by_slug |
WordPressVIPMinimum.Functions.RestrictedFunctions.wpcom_vip_get_category_by_slug_wpcom_vip_get_category_by_slug |
WordPressVIPMinimum.VIP.Robotstxt.RobotstxtSniff |
WordPressVIPMinimum.Hooks.RestrictedHooks.robotstxt_do_robotstxtWordPressVIPMinimum.Hooks.RestrictedHooks.robotstxt_robots_txt |
WordPressVIPMinimum.VIP.StaticStrreplace.StaticStrreplace |
WordPressVIPMinimum.Security.StaticStrreplace.StaticStrreplace |
WordPressVIPMinimum.VIP.TaxonomyMetaInOptions.PossibleTermMetaInOptions |
WordPressVIPMinimum.Performance.TaxonomyMetaInOptions.PossibleTermMetaInOptions |
WordPressVIPMinimum.VIP.WPQueryParams.suppressFiltersTrue |
WordPressVIPMinimum.Performance.WPQueryParams.SuppressFiltersTrue |
WordPressVIPMinimum.VIP.WPQueryParams.post__not_in |
WordPressVIPMinimum.Performance.WPQueryParams.PostNotIn |
- New violations:
WordPressVIPMinimum.Functions.RestrictedFunctions.chmod_chgrpWordPressVIPMinimum.Functions.RestrictedFunctions.chmod_chownWordPressVIPMinimum.Functions.RestrictedFunctions.chmod_chmodWordPressVIPMinimum.Functions.RestrictedFunctions.chmod_lchgrpWordPressVIPMinimum.Functions.RestrictedFunctions.chmod_lchownWordPressVIPMinimum.Functions.RestrictedFunctions.directory_mkdirWordPressVIPMinimum.Functions.RestrictedFunctions.directory_rmdirWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_deleteWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_file_put_contentsWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_flockWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_fputcsvWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_fputsWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_ftruncateWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_fwriteWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_is_writableWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_is_writeableWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_linkWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_renameWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_symlinkWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_tempnamWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_touchWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_unlinkWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_abortWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_cache_expireWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_cache_limiterWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_commitWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_create_idWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_decodeWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_destroyWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_encodeWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_gcWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_get_cookie_paramsWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_idWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_is_registeredWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_module_nameWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_nameWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_regenerate_idWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_register_shutdownWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_registerWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_resetWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_save_pathWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_set_cookie_paramsWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_set_save_handlerWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_startWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_statusWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_unregisterWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_unsetWordPressVIPMinimum.Functions.RestrictedFunctions.session_session_write_closeWordPressVIPMinimum.Functions.RestrictedFunctions.site_option_add_site_optionWordPressVIPMinimum.Functions.RestrictedFunctions.site_option_delete_site_optionWordPressVIPMinimum.Functions.RestrictedFunctions.site_option_update_site_optionWordPressVIPMinimum.Performance.NoPaging.nopaging_nopagingWordPressVIPMinimum.Performance.OrderByRand.orderby_orderbyWordPressVIPMinimum.UserExperience.AdminBarRemoval.HidingDetectedWordPressVIPMinimum.UserExperience.AdminBarRemoval.RemovalDetectedWordPressVIPMinimum.Variables.RestrictedVariables.user_meta__wpdb__usersWordPressVIPMinimum.Variables.RestrictedVariables.user_meta__wpdb__usermetaWordPressVIPMinimum.Variables.RestrictedVariables.cache_constraints___COOKIEWordPressVIPMinimum.Variables.RestrictedVariables.cache_constraints___SERVER__HTTP_USER_AGENT__WordPressVIPMinimum.Variables.RestrictedVariables.cache_constraints___SERVER__REMOTE_ADDR__WordPressVIPMinimum.Variables.RestrictedVariables.session___session
WordPress-VIP-Goruleset test.- docs about ruleset tests.
- XSD reference and ruleset validation.
phpcodesniffer-composer-installerplugin.- Copy
has_html_open_tag()from WPCS. - Copy
AbstractVariableRestrictionsSnifffrom WPCS.
- Switch from PHPCS 2.* class names to PHPCS 3.* namespaced classes.
- Refactor all sniffs to extend
VIPCS\Sniff, which is an extension ofWordPress\Sniff. - Tidied up:
- unused imports
- unused local variables
- unused parameters
- unused private field
- duplicate array keys
- redundant self-assignment
- assignment in conditions
- not returning void function calls
- undefined class fields
- strict comparisons
- missing scope keywords
- parentheses to clarify one specific conditional
- consolidate multiple
isset()calls - consolidate positive nested
if()’s - difference in case for function calls
- simplified return statements
- switched to
__DIR__ - switched FQCN to import statements
- use static property
- use more performant
strpos()instead ofsubstr() - split or remove
else/elseifworkflows for lower complexity and more comprehension - misuse of
array_push() - misuse of
array_values() - misuse of
in_array() - useless
return - redundant
continue - comments that were naming parameters
- default assignments of
nullto class properties - function parameters that match default arg values
- redundant parentheses
- Ruleset Test improvements:
- Move mostly duplicate
PHPCS_Ruleset_Testclasses into newRulesetTestclass. - Refactor new class:
- Accept a ruleset name in the constructor
- Change public method from
run()topasses(). - Break out logic into smaller private methods to make the logic more self-documenting.
- Refactor variable names in some methods.
- Decode JSON into objects, not arrays
- Fix incorrect reference to local
$expectedto$this->expected. Somehow, this was still working regardless. - Fix bug where it doesn't catch proper number of errors/warnings on a line basis due to order of operations of incrementating after assignment.
- Add further documentation.
- Change ruleset test class usage, including adding the name to the "tests passed!" message.
- Replaced WPCS whitelisting
// XSS OKcomments in this files with// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscapedcomments. - Change naming of tests from "integration test" to "ruleset tests", to make it more intuitive exactly what these are (composer script, Travis, bin filename).
- Move mostly duplicate
- Improve
addError()andaddWarning()calls - Remove
Generic.NamingConventions.ConstructorName.OldStylefromWordPress-VIP-Goruleset - Travis: Restrict PHPUnit versions to match PHPCS
- Travis: Use
7.4snapshotinstead of nightly, switch from Trusty to Xenial, removesudo: false. EscapingVoidReturnFunctions: Fix docs and improve logicAlwaysReturnSniff: trigger errors instead of warnings, don't give violation for when callback args is passed by reference- Change
exec()andshell_exec()to be flagged as Error. - Disallow long array syntax in VIPCS sniff code.
- Remove a
WordPress.CodeAnalysis.AssignmentInCondition.FoundInWhileConditionexclusion in the PHPCS config for VIPCS itself. - Update docs.
- Bumped PHPCompatibility
testVersionto match PHP requirement. - Silence
Generic.PHP.DisallowShortOpenTag.EchoFoundforWordPress-VIP-Goruleset:<?=is no longer reported. - Silence
WordPress.WP.AlternativeFunctions.file_system_read_fwriteandWordPress.WP.AlternativeFunctions.file_system_read_file_put_contentssince we haveWordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_*. - Silence Short Echo tags on
WordPress-VIP-Go.
0.4.0 - 2018-12-19
This release contains breaking changes.
Props: GaryJones, nickdaugherty, rebeccahum, tomjn.
WordPressVIPMinimum.Cache.LowExpiryCacheTimesniff.WordPressVIPMinimum.Classes.RestrictedExtendedClassessniff, forWP_CLI_Command.WordPressVIPMinimum.Filters.RestrictedHookssniff, forupload_mimes, as well ashttp_request_timeoutandhttp_request_argsfilters which change timeouts, as we typically don't recommend anything above 3s.WordPressVIPMinimum.Functions.StripTagssniff.WordPressVIPMinimum.JS.DangerouslySetInnerHTMLsniff.WordPressVIPMinimum.JS.Windowsniff.WordPressVIPMinimum.VIP.PHPFilterFunctionssniff.- GitHub issue templates.
opcache_*()functions to list of restricted functions.- ACF templating function to list of restricted functions.
.editorconfigto repo.Generic.PHP.SyntaxtoWordPressVIPMinimumruleset.
- Allow unused
$ewhen catching exceptions. - Improved accuracy of
WordPressVIPMinimum.Files.IncludingFile - Refactor
WordPressVIPMinimum.VIP.RestrictedFunctionssniff. - Include documentation links directly in error message for
WordPressVIPMinimum.VIP.WPQueryParams.post__not_in. - Composer: Normalized
composer.json. - Composer: Bump to PHPCompatibility ^9.
- Change severity of
WordPress.CodeAnalysis.AssignmentInCondition.Foundto 1 instead of removing it. - Increases the PHPCS (3.2.3) and PHP (5.6+) minimum versions to supported and known good values.
- Travis: Remove PHPUnit 6 workaround.
- Travis: updates the PHPCS referenced in the Travis file, and remove the PHP 5.5 and 5.4 checks.
- Travis: Switch to using build stages.
- Travis: Extract shell scripts out of Travis config file.
- Silence
WordPressVIPMinimum.Cache.BatcacheWhitelistedParamsfor VIP Go ruleset. - Silence variable assignment condition rule.
- Docs: Updated Readme for more accuracy.
- Docs: Updated VIP link references.
- Removed string concatenation for messages for better readability.
- Unreplaced placeholders for violation messages in
WordPressVIPMinimum.VIP.FetchingRemoteDataSniff. WordPressVIPMinimum.Filters.AlwaysReturnSniffnot reporting filter callbacks that don'treturnanywhere inside the function body.- Incorrect severity level parameters in
WordPressVIPMinimum.Variables.VariableAnalysissniff since they are passed in as a string. - Detection of double quotes in
WordPressVIPMinimum.Variables.ServerVariables, add additional server variables and update unit tests. - Typo:
WordPressVIPMinimum.Files.IncludingNonPHPFilemessages, switchingget_file_contentstofile_get_contents. - Typo: "returning" in
WordPressVIPMinimum.Filters.AlwaysReturn.voidReturnmessage. - Typo:
WordPressVIPMinimum.VIP.WPQueryParameters.suppressFiltersTrue, switchingprobihtedtoprohibited. IntegrationRuleset tests not running in Travis.
- BREAKING:
WordPressVIPMinimum.SVG.HTMLCodeSniff(SVG support), since it was not working well. You should remove any reference to this in your custom ruleset. var_dumpfromWordPressVIPMinimumruleset since it should be the same type asvar_exportwpcom_vip_get_page_by_pathfromWordPressVIPMinimum.VIP.RestrictedFunctions- Version check for PHP 7 or less in
WordPressVIPMinimum.Variables.VariableAnalysisunit test since tests are not failing anymore.
0.3.1 - 2018-12-04
Originally tagged as 0.2.5.
Props: emrikol, GaryJones, gudmdharalds, mikeyarce, nickdaugherty, paulschreiber, rebeccahum, sboisvert, tomjn.
0.3.0 - 2018-08-15
Props: BrookeDot, david-binda, GaryJones, gudmdharalds, rebeccahum, sboisvert, tomjn, uxcitizen.
0.2.4 - 2018-07-18
Props: david-binda, sboisvert, tessneedham, trepmal.
0.2.3 - 2018-03-29
Props: david-binda, jacklenox, pyronaur, sboisvert, trepmal, vaurdan.
0.2.2 - 2018-01-19
Props: david-binda.
0.2.1 - 2017-12-01
Props: david-binda, philipjohn, tomjn.
0.2.0 - 2017-08-15
Props: david-binda.
0.1.0 - 2017-08-14
Initial release.
Props: david-binda, pkevan.