Skip to content

Releases: samueljseay/recaptcha

Various fixes

Choose a tag to compare

@samueljseay samueljseay released this 07 Jul 04:12

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

Choose a tag to compare

@sobolevn sobolevn released this 02 Jul 10:44
8b44570

Update dependencies

Choose a tag to compare

@samueljseay samueljseay released this 06 Aug 22:00

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

Allow runtime environment config

Choose a tag to compare

@samueljseay samueljseay released this 08 Oct 02:13

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

Choose a tag to compare

@samueljseay samueljseay released this 07 Sep 21:37

Support for Poison 1.5 added to the mix dependency list.

Version 2.0 rewrite

Choose a tag to compare

@samueljseay samueljseay released this 05 Sep 10:09

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