With the WordPress 6.7 RC out, perform the following:
After bumping versions in a PR, we will ensure that e2e tests and overall plugin functionality continues to work as expected via regression testing following defined critical flows (if plugin functional compatibility changes were required).
Sample Changelog entry should then be:
Dev - Bump WordPress "tested up to" version 6.7.
Dev - Bump WordPress minimum supported version to 6.3.
With the WordPress 6.7 RC out, perform the following:
version_compareand then see if we're checking WordPress versions there or something else (sometimes we check PHP versions for instance or Woo versions). Some plugins also define what WordPress version we support (sometimes as a minimum) in a constant (see Square as an example). There's not always consistent naming on those constants so really the easiest way to find these is to search the codebase for the version string. Search the last few releases to catch them all. Also, suggest looking at the last PR that bumped versions because to copy what was done for those.After bumping versions in a PR, we will ensure that e2e tests and overall plugin functionality continues to work as expected via regression testing following defined critical flows (if plugin functional compatibility changes were required).
Sample Changelog entry should then be: