Skip to content

Tags: rootstrap/yaaf

Tags

v3.0.1

Toggle v3.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version to 3.0.1 (#90)

v3.0.0

Toggle v3.0.0's commit message
Bump version to 3.0.0

v2.2.0

Toggle v2.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Support Rails 7 and bump version (#77)

v2.1.0

Toggle v2.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump minor version (#73)

v2.0.0

Toggle v2.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prevent double validations on save/save! (#70)

* Prevent double validations on save/save!

Originally, calling `form.save/!` would cause model validations to fire
off twice.

The first time when the form's validations are being run (as the form
has a validation to ensure that all `models` are valid`)

The second time is when the `models` are looped over and they each
receive `save!`.

For validations that are done with in-memory data, such as `validate
:attribute, presence: true`, this isn't a big deal. But this could be
problematic for any validation that is dependent on the state of the
database (it will effectively hit the database twice).

This instead passes `validate: false` into the saving of models so that
their validations aren't run a second time.

* Update README to reflect line count

v1.0.0

Toggle v1.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version (#59)

v0.2.0

Toggle v0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump YAAF version to 0.2.0 (#51)

v0.1.1

Toggle v0.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 0.1.1 (#39)

v0.1.0

Toggle v0.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Updated simple form recipe (#32)

- Fixed i18n section