Skip to content

Release v1.1.1 - 2017-06-16

Choose a tag to compare

@awood45 awood45 released this 16 Jun 15:57
· 225 commits to main since this release

References: #71

  • Feature - Support lambdas for default attribute values.

    date_attr :date, default_value -> { Date.today }
  • Issue - An attribute's default_value could be modified and carried over to
    new instances of the model. With this change, default values are deep copied,
    and are hydrated at item creation to ensure correct persistence of mutable
    objects.

    See related GitHub issue #69