0.8.0
Possibly Breaking Changes
- MySQLTable: Simplify parsing arguments to
.insert()
and.update()
(725cdfa
)- Should not be a breaking change if you don't pass strings or numbers as the
values
parameter and you don't useundefined
ornull
to fill in unused arguments (i.e..insert({data}, undefined, undefined, callback)
)
- Should not be a breaking change if you don't pass strings or numbers as the
New Features
- MySQLTable: Implement new
.insertIfNotExists()
method (1791688
) - MySQLTable: Allow
.insert()
to accept a string as the first parameter (f4c9d92
) - docs: Show generated SQL in MySQLTable query examples (
785d853
)