Skip to content
This repository has been archived by the owner on Feb 17, 2022. It is now read-only.

Releases: DarkGhostHunter/Captchavel

Reworked frontend default script

27 May 00:58
8157652
Compare
Choose a tag to compare

This releases comes with a new script in the frontend that enable some workarounds on specific scenarios.

What's changed?

  • The resources/views/script.blade.php script. It now includes a opt-out submission blocker when the token is not resolved completely, and a form property that hints just that.

What's added?

  • Nothing

What's removed?

  • Nothing.

What's fixed?

  • Nothing.

Fixes recaptcha key submission

25 Apr 20:41
f234c8e
Compare
Choose a tag to compare

What's changed?

  • Nothing.

What's added?

  • Nothing

What's removed?

  • Nothing.

What's fixed?

  • The javascript wasn't sending the reCAPTCHA key once submitting the form. This has been now fixed. #20

Minor fixes

08 Apr 22:47
68ff9c9
Compare
Choose a tag to compare

Okay, a lot of changes, fixed, what not. Let's start with the drill so you don't have to read the whole README:

What's changed?

  • The javascript now attach the token retrieval from reCAPTCHA when submitting the form, fixing #15 and #16.

What's added?

  • Nothing

What's removed?

  • Nothing.

What's fixed?

  • The is_robot now is detected when in form inputs or query.

Added Laravel 7 support.

08 Mar 05:22
6726ec8
Compare
Choose a tag to compare
Merge pull request #18 from DarkGhostHunter/master

Added Laravel 7 support.

Fixed exception on route group

25 Nov 17:43
246c761
Compare
Choose a tag to compare

Fixed #12

Basically, if you used in on a group of routes, and these included a GET request, that route would return an exception.

Laravel 6 compatibility

20 Oct 03:17
90eceb4
Compare
Choose a tag to compare
  • Added Laravel 6 compatibility.
  • Added some PHPDocs to some classes, mainly Exceptions.
  • Minor fix to the Transparent Recaptcha (uses the already resolved reCaptcha service instead of resolving it again).
  • Updated Travis CI build without PHP 7.1

Fixes helpers

13 Aug 16:51
3ab2573
Compare
Choose a tag to compare

Fixes

  • Helpers app('recaptcha') and recaptcha() fixed due to not aliasing the (same) ReCaptcha instance. #6

Multiple features

13 Jun 21:00
c5f94e1
Compare
Choose a tag to compare
  • Added helper macros to the Request class.
  • All Exceptions implements the CaptchavelException.
  • Captchavel no longer throws an Exception when the threshold is below (why would you want that!?).

Fixed variable token string (again)

13 Jun 05:36
1b3a0a2
Compare
Choose a tag to compare

Seems reCAPTCHA is very lenient on the token length. I've seen from 40 char to 360 char. Instead of validating the length of the token, the validation only checks if the token is a string. Whatever reCAPTCHA decides to use in the future, it should be covered.

Fixed variable token string

13 Jun 05:04
3bf4823
Compare
Choose a tag to compare
Merge pull request #2 from DarkGhostHunter/master

Fixed variable string given by reCAPTCHA servers.