Skip to content

Releases: trenpixster/addict

Compatibility with Ecto 2 (and Phoenix 1.2) and ex_rm

19 Jul 18:47
Compare
Choose a tag to compare

This is a breaking update

Breaking changes

  • Configuration hooks, such as post action hooks now must be defined in the {Module, :function} format. Issue #77
  • Ecto 2 is now a hard dependency. This was required due to the coupling of this version and Phoenix 1.2. Issue #98

New stuff

  • Addict now allows customizable password encryption strategies (thanks @steveklebanoff!). Issue #93

Enhancements

Bug fixing and enhancements

02 Jun 13:37
Compare
Choose a tag to compare
Pre-release

Fixes:

  • Unreliable detection of existing Addict configuration
  • Incorrect listing of GET /logout route
  • is_logged_in/1 Addict helper was always returning true

Changes:

  • Switched logout route from POST /logout to DELETE /logout

Addi(c)tions:

  • More docs

Version 0.2.4

14 May 14:30
Compare
Choose a tag to compare
Version 0.2.4 Pre-release
Pre-release

[Fix] Removed static references to CSS and JS on boilerplate code

Bug fixing

03 May 23:07
Compare
Choose a tag to compare
Bug fixing Pre-release
Pre-release
  • Ecto associations are now dropped from the generated user structure
  • Boilerplate View now encloses all JS and CSS
  • Added example custom validation to ExampleApp project

Fix issues dealing with associations

21 Apr 16:30
Compare
Choose a tag to compare
Pre-release
Strip associations from user struct

When preparing the user for serialization the associations
are now stripped given that the associations preloading might
not be required.

Fixes issue with configs generating task, improve metadata

11 Apr 12:26
Compare
Choose a tag to compare
0.2.1

Add missing metadata

Many changes, much nice.

07 Apr 00:44
Compare
Choose a tag to compare
Pre-release

Tackled a serious of issues with this, please take a look at README for the new flows.
And it has configuration and template generators now! 👯

Updating Ecto and Phoenix required versions

18 Aug 12:05
Compare
Choose a tag to compare

Breaking changes:

  • Ecto is now at 0.9
  • Phoenix at 0.15
  • Updated to latest comeonin
  • Fixed issue regarding user creation without e-mail provider
  • Fixed issue resetting user password

Enhancements and docs

07 Jun 17:50
Compare
Choose a tag to compare

Added several enhancements and an example_app using addict

Add recovery and reset password flow

08 Feb 11:09
Compare
Choose a tag to compare
Pre-release

Updates

  • You can now recover and then reset passwords.
  • Added automatic tests (thanks @Joe-noh for the plug one)
  • Replaced direct access to bcrypt with Comeonin

Breaking changes
Required schema for user changed:

  • No salt field required
  • hash has now 130 chars
  • Added recovery_hash field.