recaptcha 1.3.0 → 5.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: e3c89ffab2c2bcfb9e2310157d81cca7a6310eb7
4
- data.tar.gz: 12e9212f8ec32eb1f67470fc0a0644a8570b1dae
2
+ SHA256:
3
+ metadata.gz: ec76ff47d12ef3388c2a45d56850272fff3675c9f59619a09b55c918f70b5494
4
+ data.tar.gz: 697f0a4d41ffab63c6eb5b7d7b81c1f5ac2b1305f27bb84b5fccc421bcd38e2c
5
5
  SHA512:
6
- metadata.gz: 354b302b4061839590ac00b6c599c9d7317c1f8221e0ac3ef38ec514d52e459d0ecabbb347aaf1930a7e0aff8957e9835f122e8c73d8a7aba8763ddb6715a6d7
7
- data.tar.gz: b1045a9e879f6267ba59a44e738c89bbaac29c5f52fa68b8421dc68ec0fc782dfdf2557d63b10cefc9bb013f44f9d3826fcdf292128055e12c20e9daad3fb397
6
+ metadata.gz: 51b3627583241aef9a99e2a3ed9c78091c87a92e87210749d38e9ccf0d418dbec455fd524d83210b8331be7064efac2be2308366b8288c574c53b84f6013333e
7
+ data.tar.gz: 8018c4668d7eef292e5908d609a7ebdd5cfbfb84b0c86a361dac36d3982cc075dc7e694c51639dd09eaf148cfd9536cecb12f6fa188ec72f87328e85976a4e22
data/CHANGELOG.md CHANGED
@@ -1,3 +1,81 @@
1
+ ## Next
2
+
3
+ ## 5.7.0
4
+ * french locale
5
+ * drop ruby 2.3
6
+
7
+ ## 5.6.0
8
+ * Allow multiple invisible recaptchas on a single page by setting custom selector
9
+
10
+ ## 5.5.0
11
+ * add `recaptcha_reply` controller method for better debugging/inspection
12
+
13
+ ## 5.4.1
14
+ * fix v2 vs 'data' postfix
15
+
16
+ ## 5.4.0
17
+ * added 'data' postfix to g-recaptcha-response attribute name to avoid collisions
18
+
19
+ ## 5.3.0
20
+ * turbolinks support
21
+
22
+ ## 5.2.0
23
+ * remove dependency on rails methods
24
+
25
+ ## 5.1.0
26
+ * Added default translations for rails/i18n
27
+ * use recaptcha.net for the script tag
28
+
29
+ ## 5.0.0
30
+ * Changed host to Recaptcha.net
31
+ * Add v3 API support
32
+ * Renamed `Recaptcha::ClientHelper` to `Recaptcha::Adapters::ViewMethods`
33
+ * Renamed `Recaptcha::Verify` to `Recaptcha::Adapters::ControllerMethods`
34
+
35
+ ## 4.12.0 - 2018-08-30
36
+ * add `input` option to `invisible_recaptcha_tags`'s `ui` setting
37
+
38
+ ## 4.11.1 - 2018-08-08
39
+ * leave `tabindex` attribute alone for `invisible_recaptcha_tags`
40
+
41
+ ## 4.11.0 - 2018-08-06
42
+ * prefer RAILS_ENV over RACK_ENV #286
43
+
44
+ ## 4.0.0 - 2016-11-14
45
+ * public_key -> site_key and private_key -> secret_key
46
+
47
+ ## 3.4.0 - 2016-11-01
48
+ * Update fallback html
49
+
50
+ ## 3.2.0 - 2016-06-13
51
+ * remove SKIP_VERIFY_ENV constant, use `skip_verify_env` instance variable instead
52
+
53
+ ## 3.1.0 - 2016-06-10
54
+ * better error messages
55
+ * frozen constants
56
+
57
+ ## 3.0.0 - 2016-05-27
58
+ * remove all non-ssl options
59
+
60
+ ## 2.3.0 - 2016-05-25
61
+ * enable ssl verification by default ... disable via `disable_ssl_verification = true`
62
+
63
+ ## 2.2.0 - 2016-05-23
64
+ * Add global hostname validator config
65
+ * Clean up after with_configuration exception
66
+
67
+ ## 2.1.0 - 2016-05-19
68
+ * do not query google if repactcha was not submitted
69
+
70
+ ## 2.0.0 - 2016-05-17
71
+ * remove stoken support, must use custom domain verification or domain whitelist
72
+
73
+ ## 1.3.0 - 2016-04-07
74
+ * do not set model error and flash
75
+
76
+ ## 1.2.0 - 2016-04-01
77
+ * custom domain validation
78
+
1
79
  ## 1.1.0 - 2016-01-27
2
80
  * support RACK_ENV
3
81
 
@@ -22,6 +100,11 @@
22
100
  * support disabling stoken
23
101
  * support Rails.env
24
102
 
103
+ ## 0.4.0 / 2015-03-22
104
+
105
+ * Add support for ReCaptcha v2 API
106
+ * V2 API requires `g-recaptcha-response` parameters; https://github.com/ambethia/recaptcha/pull/114
107
+
25
108
  ## 0.3.6 / 2012-01-07
26
109
 
27
110
  * Many documentation changes