Tracking issue for deferred cleanup, from TODOs at src/Handlers/PluginStateChangeHandler.php:76 and :81.
While v3 is in beta we intentionally keep the legacy data on uninstall as a safety net. Once v3 is stable, the uninstall routine should also:
delete_option( 'antispam_bee' ) (the legacy options array)
- delete the legacy comment meta:
DELETE FROM {commentmeta} WHERE meta_key IN ('antispam_bee_iphash', 'antispam_bee_reason')
Both lines are currently commented out in maybe_remove_antispam_bee_data(). Do not enable before the stable 3.0 release.
Tracking issue for deferred cleanup, from TODOs at
src/Handlers/PluginStateChangeHandler.php:76and:81.While v3 is in beta we intentionally keep the legacy data on uninstall as a safety net. Once v3 is stable, the uninstall routine should also:
delete_option( 'antispam_bee' )(the legacy options array)DELETE FROM {commentmeta} WHERE meta_key IN ('antispam_bee_iphash', 'antispam_bee_reason')Both lines are currently commented out in
maybe_remove_antispam_bee_data(). Do not enable before the stable 3.0 release.