@databases v4.0.0 Release Notes
Release Date: 2020-11-13 // almost 4 years ago-
💥 Breaking Changes
⚡️ Update compile target to node 12.19.0 (#115)
⚡️ Updated
@databases/sql
to3.0.0
(#114)This means:
- queries no longer have
.compile()
or.compileMySQL()
methods - queries no longer have
.text
or.values
properties SQLQuery
is only a type, not a class.
If you were previously using
instanceof SQLQuery
to check if a value is anSQLQuery
, you can swap to usingisSqlQuery
.If you were relying on the properties or methods to get the actual query text, please open an issue.
- queries no longer have
Previous changes from v3.0.1
-
2020-04-25