Releases: VividCortex/angular-recaptcha
4.1.5
Added support for the new Invisible reCaptcha badge attribute and execute() API method
4.0.4
4.0.0
#176 Removed the need to manually include the Google recaptcha <script>
tag.
This also fixed #175 which was happening to many users if they loaded Google's recaptcha before the angular-recaptcha module.
Upgrade Instructions
Remove the <script>
tag that loads Google recaptcha API. You only need to include angular-recaptcha
and it will download Google's api only when needed.
Thanks to @felixmosh for it!
Fixed missing code in release files
3.2.1 3.2.1
Added support for language configuration
Now, the language of the reCaptcha can be configured in the directive (Thanks @reduardo7).
Example:
<div
vc-recaptcha
key="'---- YOUR PUBLIC KEY GOES HERE ----'"
ng-model="gRecaptchaResponse"
lang="es"
></div>
3.0.1
Release of v3.0.0
Includes:
- 3e725ab - Brand new test suite!! (@ericmdantas)
- 6617d58 - Turn
vcRecaptchaService
into a provider. (@TheSharpieOne) - 89b7e15 - Ability se configure the name of the unload function. (@TheSharpieOne)
- 1d39534 - FIX: Reset directive when reCaptcha is reset. (@TheSharpieOne)
2.5.0
2.4.1
-
Added type support through the type attribute, which just gets passed to
reCaptcha. Possible values are'audio'
and'image'
(per reCaptcha docs).
README was also update to show this attribute. -
Add required to opt out of validation
Resolves #96 by adding and documenting the required attribute.
When require isfalse
or is a scoped variable which isfalse
,
the form validation will be removed.
This is opt out to prevent a breaking change and usually the validation is
preferred. -
Use recaptcha expired-callback instead of a hard-coded 2 min timeout
-
Added documentation for changing the size