Using the last version of ember-js and ember-data, I got an issue when deleting a record.
My route :
The record is no longer part of the this.transaction, once you commit a transaction a record is moved to the store default transaction. To reflect your deletion action, you need to commit the store.
this.transaction
contact.deleteRecord() App.store.commit();