Closed
Description
This is a common pattern to initialize some attributes before validation on creation. For instance acts_as_permalink does that: https://github.com/kmcphillips/acts_as_permalink/blob/55e824a5bf76f30ce8250dd9438bc46234e25b45/lib/concern.rb#L10
But in hyperstack, a new_record is saved without validation and validated later:
The callback is never triggered because validation is applied to a record that is already created.