Released January 12, 2022
- Fixed a bug with importing modules from Sequelize.
- Updated CockroachDB versions under test (includes v21.2 now).
Released December 16, 2021
- Fixed a bug with checking the version on startup.
Released October 21, 2021
- Use a deterministic ordering when introspecting enum types.
- Version number telemetry now only reports the major/minor versions of Sequelize.
Released September 30, 2021
- Fix a missing import that would cause an error when validating datatypes.
Released July 14, 2021
- Record telemetry for sequelize-cockroachdb version in addition to the sequelize version.
Released June 14, 2021
- Initial support for Sequelize 6.0
- Added telemetry. The sequelize version is recorded when creating a new instance of a CockroachDB Sequelize instance.
- Opt out of telemetry by specifying
cockroachdbTelemetryDisabled : true
in thedialectOptions
object when creating aSequelize
object. - Example:
var sequelize2 = new Sequelize({ dialect: "postgres", username: "max", password: "", host: "localhost", port: 26257, database: "sequelize_test", dialectOptions: {cockroachdbTelemetryDisabled : true}, logging: false, });