Skip to content

Commit

Permalink
2.0.1 release with support for Craft 4
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-west committed Sep 10, 2022
1 parent 2a977e8 commit 7250bc5
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 42 deletions.
2 changes: 1 addition & 1 deletion .craftplugin
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"pluginName": "Craft reCAPTCHA",
"pluginDescription": "Integrate Google’s reCAPTCHA into your forms.",
"pluginVersion": "1.5.3",
"pluginVersion": "2.0.1",
"pluginAuthorName": "Matt West",
"pluginVendorName": "mattwest",
"pluginAuthorUrl": "https://mattwest.design",
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,52 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## 2.0.1 - 2022-09-09

### Added

- Added support for Craft 4 (Thanks [honsa](https://github.com/matt-west/craft-recaptcha/pull/34)!)

## 1.5.3 - 2022-01-17

### Added

- Added Italian translations. (Thanks [andreapasotti](https://github.com/matt-west/craft-recaptcha/pull/31)!)
- Use local language when requesting reCAPTCHA script. (Thanks [parwinderD4D](https://github.com/matt-west/craft-recaptcha/pull/28))
- Send user IP to Google with verification requests. Optional. Default = false. (Thanks [domstubbs](https://github.com/matt-west/craft-recaptcha/pull/30))

## 1.5.2 - 2021-06-01

### Added

- Added Guzzle 7 compatibility. (Thanks [bossanova808](https://github.com/bossanova808)!)

## 1.5.1 - 2020-12-07

### Added

- Added German translation. (Thanks [MDXDave](https://github.com/MDXDave)!)

## 1.5.0 - 2020-06-29

### Added

- Allow plugin to verify requests and forward them on to other controller actions. (Thanks [Stephen Hamilton](https://github.com/totov)!)

## 1.3.0 - 2019-04-03

### Added

- Added the ability to specific size and theme options. (Thanks [Marty Wallace](https://github.com/martywallace)!)

## 1.0.1 - 2018-06-01

### Added

- The Craft [contact form](https://github.com/craftcms/contact-form) plugin is no longer required.

## 1.0.0 - 2018-03-17

### Added

- Initial release
82 changes: 41 additions & 41 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
{
"name": "matt-west/craft-recaptcha",
"description": "Integrate Google’s reCAPTCHA into your forms.",
"type": "craft-plugin",
"version": "1.5.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft recaptcha"
],
"support": {
"docs": "https://github.com/matt-west/craft-recaptcha/blob/master/README.md",
"issues": "https://github.com/matt-west/craft-recaptcha/issues"
},
"license": "MIT",
"authors": [
{
"name": "Matt West",
"homepage": "https://mattwest.io"
}
],
"require": {
"craftcms/cms": "^4.0.3",
"guzzlehttp/guzzle": "^6.3 || ^7.2"
},
"autoload": {
"psr-4": {
"mattwest\\craftrecaptcha\\": "src/"
}
},
"extra": {
"name": "reCAPTCHA",
"handle": "recaptcha",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/matt-west/craft-recaptcha/master/CHANGELOG.md",
"components": {
"craftRecaptchaService": "mattwest\\craftrecaptcha\\services\\CraftRecaptchaService"
},
"class": "mattwest\\craftrecaptcha\\CraftRecaptcha"
"name": "matt-west/craft-recaptcha",
"description": "Integrate Google’s reCAPTCHA into your forms.",
"type": "craft-plugin",
"version": "2.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft recaptcha"
],
"support": {
"docs": "https://github.com/matt-west/craft-recaptcha/blob/master/README.md",
"issues": "https://github.com/matt-west/craft-recaptcha/issues"
},
"license": "MIT",
"authors": [
{
"name": "Matt West",
"homepage": "https://mattwest.design"
}
],
"require": {
"craftcms/cms": "^4.0.3",
"guzzlehttp/guzzle": "^6.3 || ^7.2"
},
"autoload": {
"psr-4": {
"mattwest\\craftrecaptcha\\": "src/"
}
},
"extra": {
"name": "reCAPTCHA",
"handle": "recaptcha",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/matt-west/craft-recaptcha/master/CHANGELOG.md",
"components": {
"craftRecaptchaService": "mattwest\\craftrecaptcha\\services\\CraftRecaptchaService"
},
"class": "mattwest\\craftrecaptcha\\CraftRecaptcha"
}
}

0 comments on commit 7250bc5

Please sign in to comment.