@databases v3.0.0 Release Notes

Release Date: 2020-11-13 // over 3 years ago
  • 💥 Breaking Changes

    ⚡️ Update compile target to node 12.19.0 (#115)

    ⚡️ Updated @databases/sql to 3.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 an SQLQuery, you can swap to using isSqlQuery.

    If you were relying on the properties or methods to get the actual query text, please open an issue.