recaptcha 4.11.0 → 5.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +64 -0
- data/README.md +428 -74
- data/lib/recaptcha/adapters/controller_methods.rb +96 -0
- data/lib/recaptcha/adapters/view_methods.rb +26 -0
- data/lib/recaptcha/configuration.rb +29 -5
- data/lib/recaptcha/helpers.rb +332 -0
- data/lib/recaptcha/rails.rb +1 -0
- data/lib/recaptcha/railtie.rb +24 -4
- data/lib/recaptcha/version.rb +1 -1
- data/lib/recaptcha.rb +119 -30
- data/rails/locales/en.yml +5 -0
- data/rails/locales/fr.yml +5 -0
- data/rails/locales/ja.yml +5 -0
- data/rails/locales/nl.yml +5 -0
- metadata +16 -25
- data/lib/recaptcha/client_helper.rb +0 -140
- data/lib/recaptcha/verify.rb +0 -107
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4696b1987122715318c6ea1ce3ce1930dfe1cf9aad40913e74617f746db4176b
|
4
|
+
data.tar.gz: ab251d09e9ad5f9596dc8a8a0d70d9f108dbfbafaaff92fbfe72758877f84354
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 764ffc3bad21f61f1b6d87212af60fcfa2533fe643de904a127f4ae47227aec45965a9d118429ea262e638e9021b62387716e8e96c3748ba71cb21cf96a7edc0
|
7
|
+
data.tar.gz: 5a61522e047c0a2fe8da6a6facdd4228dbd322904144f15646bf5a8ea7adbff51fbf6ce7b880a406a01192fc3adf9128a875611307b352a19f2501d72ff309a9
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,62 @@
|
|
1
|
+
## Next
|
2
|
+
|
3
|
+
* Added Dutch locale
|
4
|
+
* Added Japanese locale
|
5
|
+
|
6
|
+
## 5.10.1
|
7
|
+
* Fix enterprise_verify_url #415
|
8
|
+
|
9
|
+
## 5.10.0
|
10
|
+
* Drop ruby 2.4 2.5 2.6
|
11
|
+
* Add maxiumm score support for hcaptcha
|
12
|
+
|
13
|
+
## 5.9.0
|
14
|
+
* Gracefully handle invalid params
|
15
|
+
|
16
|
+
## 5.8.1
|
17
|
+
* Allow configuring response limit
|
18
|
+
|
19
|
+
## 5.8.0
|
20
|
+
* Add support for the enterprise API
|
21
|
+
|
22
|
+
## 5.7.0
|
23
|
+
* french locale
|
24
|
+
* drop ruby 2.3
|
25
|
+
|
26
|
+
## 5.6.0
|
27
|
+
* Allow multiple invisible recaptchas on a single page by setting custom selector
|
28
|
+
|
29
|
+
## 5.5.0
|
30
|
+
* add `recaptcha_reply` controller method for better debugging/inspection
|
31
|
+
|
32
|
+
## 5.4.1
|
33
|
+
* fix v2 vs 'data' postfix
|
34
|
+
|
35
|
+
## 5.4.0
|
36
|
+
* added 'data' postfix to g-recaptcha-response attribute name to avoid collisions
|
37
|
+
|
38
|
+
## 5.3.0
|
39
|
+
* turbolinks support
|
40
|
+
|
41
|
+
## 5.2.0
|
42
|
+
* remove dependency on rails methods
|
43
|
+
|
44
|
+
## 5.1.0
|
45
|
+
* Added default translations for rails/i18n
|
46
|
+
* use recaptcha.net for the script tag
|
47
|
+
|
48
|
+
## 5.0.0
|
49
|
+
* Changed host to Recaptcha.net
|
50
|
+
* Add v3 API support
|
51
|
+
* Renamed `Recaptcha::ClientHelper` to `Recaptcha::Adapters::ViewMethods`
|
52
|
+
* Renamed `Recaptcha::Verify` to `Recaptcha::Adapters::ControllerMethods`
|
53
|
+
|
54
|
+
## 4.12.0 - 2018-08-30
|
55
|
+
* add `input` option to `invisible_recaptcha_tags`'s `ui` setting
|
56
|
+
|
57
|
+
## 4.11.1 - 2018-08-08
|
58
|
+
* leave `tabindex` attribute alone for `invisible_recaptcha_tags`
|
59
|
+
|
1
60
|
## 4.11.0 - 2018-08-06
|
2
61
|
* prefer RAILS_ENV over RACK_ENV #286
|
3
62
|
|
@@ -60,6 +119,11 @@
|
|
60
119
|
* support disabling stoken
|
61
120
|
* support Rails.env
|
62
121
|
|
122
|
+
## 0.4.0 / 2015-03-22
|
123
|
+
|
124
|
+
* Add support for ReCaptcha v2 API
|
125
|
+
* V2 API requires `g-recaptcha-response` parameters; https://github.com/ambethia/recaptcha/pull/114
|
126
|
+
|
63
127
|
## 0.3.6 / 2012-01-07
|
64
128
|
|
65
129
|
* Many documentation changes
|