diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ef9609..563da95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 3.0.8 - 2021-08-25 +### Changed +- Excluded the `templates/render` controller action from being validated ([#20](https://github.com/putyourlightson/craft-snaptcha/issues/20)). + ## 3.0.7 - 2021-06-28 ### Changed - Excluded GraphQL requests that do not use `application/graphql` as their MIME type from being validated ([#17](https://github.com/putyourlightson/craft-snaptcha/issues/17)). diff --git a/composer.json b/composer.json index 28b5f89..f2ccae8 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "putyourlightson/craft-snaptcha", "description": "Automatically validates forms and prevents spam bots from submitting to your site.", - "version": "3.0.7", + "version": "3.0.8", "type": "craft-plugin", "homepage": "https://putyourlightson.com/plugins/snaptcha", "license": "proprietary", diff --git a/src/services/SnaptchaService.php b/src/services/SnaptchaService.php index 800c431..27f9b9a 100644 --- a/src/services/SnaptchaService.php +++ b/src/services/SnaptchaService.php @@ -45,6 +45,7 @@ class SnaptchaService extends Component 'complete-cookie-consent/consent/submit', 'cookie-consent/consent/update', 'graphql/api', + 'templates/render', ]; /**