Vanity v1.7.0 Release Notes

Release Date: 2011-08-27 // over 12 years ago
  • ๐Ÿ‘ 1.7.0 adds support for ActionMailer, for example:

    class UserMailer < ActionMailer::Base def invite_email(user) use_vanity_mailer user mail :to => user.email, :subject => ab_test(:invite_subject) end end

    ๐Ÿ“š See the documentation for more details.

    With 1.7.0 and moving forward, if you need to setup a database schema (relational databases only), please use the generator:

    $ rails generate vanity $ rake db:migrate

    ๐Ÿš… Rails generator for AR migrations (Zaid Zawaideh)

    โœ… A/B testing in ActionMailer (Joseph Sofaer)

    ๐Ÿ›  Fix hung passenger processes when using Redis client (Chris Griego)