If you have a look at the source code of the model, you will notice several new methods: beforeFind(), afterFind(), beforeSave(), afterSave(), beforeDelete() and afterDelete(). They are like filters. A very simple example of how to use them:

// in your model
function beforeDelete()
{
    debug('beforeDelete');
    return true;
}

function afterDelete()
{
    debug('afterDelete');
}

These two methods are automatically called when you do a

$this->Model->del($id);

.

Well, at the moment I do not see any real use cases for these filters. But I am sure we will see some useful uses soon. What do you think?