Skip to content

Releases: samueljseay/recaptcha

Various fixes

07 Jul 04:12
Compare
Choose a tag to compare

This accumulates mainly bug fixes and some minor improvements made over the past while that have been overdue for a
release.

The biggest change is that the library defaults to Jason for json processing now.

Add async recaptcha

02 Jul 10:44
8b44570
Compare
Choose a tag to compare

Update dependencies

06 Aug 22:00
Compare
Choose a tag to compare

This release includes an update of dependencies and other minor changes.

Allow runtime environment config

08 Oct 02:13
Compare
Choose a tag to compare

Configuration can now accept any of the following:

  • Standard variables:
config :recaptcha,
  public_key: "some public key string",
  secret: "some private string"
  • Environment variable at compile time:
config :recaptcha,
  public_key: System.get_env("RECAPTCHA_PUBLIC_KEY"),
  secret: System.get_env("RECAPTCHA_PRIVATE_KEY")
  • Environment variable at runtime:
config :recaptcha,
  public_key: {:system, "RECPATCHA_PUBLIC_KEY"},
  secret: {:system, "RECAPTCHA_PRIVATE_KEY"}

Thanks to @kennyballou for the addition 👍

Support poison 1.5

07 Sep 21:37
Compare
Choose a tag to compare

Support for Poison 1.5 added to the mix dependency list.

Version 2.0 rewrite

05 Sep 10:09
Compare
Choose a tag to compare

A rewritten API. See the README and code documentation for details.