Thomas Shone
Thomas Shone
Should we use the [PHP latest release](https://php.net/releases/active.php) to inform the user when there is a newer version available for the PHP branch they are currently using?
There are a number of warnings in certain versions of MySQL warning about deprecation or sql mode combinations. Document and add these as checks. ## Scratch pad of warnings seen...
Create a new wiki entry on ways to write efficient queries to provide guidance when the [Inefficient Query](https://github.com/xsist10/cadfael/wiki/Inefficient-Query) check triggers.
# Issues Recommend that sql mode is set to strict avoid data truncation, bad charset conversion, weird groupings or other weird issues and have it throw errors on insertion. ```sql...
To make it easier to use Cadfael for CI (Cadfael exits with an error if any checks fail), allow the user to specify what level of reports to exit on....
We need to provide documentation on different ways to update Cadfael based on build.
Currently there is no documentation on updating Cadfael and no automated way to detect if it should be updated or ways to make it auto-update itself. - [ ] #40...
Create a check to identify whether an email column has problems with it's definitions. First you'll need to identify if you think a column is an email field. This can...
The Sane Auto Increment check should take into account that the user manually specified a starting point in the negative range.
Tables used as queues often have locking mechanisms used. Lets see if we can figure out a generic way to detect this.