Releases: postmanlabs/sails-mysql-transactions
0.5.0
Update waterline to 0.10.19-postman.4
- the new waterline has changes in destroy operation where it ensures that it fetches very little data during the delete operation.
Note: the result of .destroy
now returns only objects and their primary key instead of returning the whole body. This should not be a botheration since sails official documentation does not talk about results fromd estroy operations.
The result of the above change is improvement in performance and reduction of memory consumption during deletes.
0.4.0
0.3.2
This release improves the error handling sections of the adapter.
Instead of throwing static errors, the adapter now throws a valid error object created with stack during the instance of the error.
There is a slight change in the property name of the custom error object in public API. Instead of .Error
it is now referred as .AdapterError
. AdapterError is a custom error type inherited from Error
object.
0.3.1
0.3.0
0.2.4
This release adds the ability to use .readonly
with normal (master) database connection when no configuration us provided for replication
section.
- Adds support for
enabled: false
at replication as well as individual source level. - Adds new configuration
inheritMaster: boolean
for replication.