File tree 2 files changed +21
-1
lines changed
2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Version 6.0.0
2
2
Released June 14, 2021
3
+ * Initial support for Sequelize 6.0
4
+ * Added telemetry. The sequelize version is recorded when creating a new instance of a CockroachDB Sequelize instance.
5
+ * Opt out of telemetry by specifying ` cockroachdbTelemetryDisabled : true ` in the ` dialectOptions ` object when creating a ` Sequelize ` object.
6
+ * Example:
7
+ ```
8
+ var sequelize2 = new Sequelize({
9
+ dialect: "postgres",
10
+ username: "max",
11
+ password: "",
12
+ host: "localhost",
13
+ port: 26257,
14
+ database: "sequelize_test",
15
+ dialectOptions: {cockroachdbTelemetryDisabled : true},
16
+ logging: false,
17
+ });
18
+ ```
19
+
20
+ # Version 6.0.1
21
+ Released July 14, 2021
22
+ * Record telemetry for sequelize-cockroachdb version in addition to the sequelize version.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " sequelize-cockroachdb" ,
3
- "version" : " 6.0.0 " ,
3
+ "version" : " 6.0.1 " ,
4
4
"description" : " Support using Sequelize with CockroachDB." ,
5
5
"license" : " Apache-2.0" ,
6
6
"repository" : " cockroachdb/sequelize-cockroachdb" ,
You can’t perform that action at this time.
0 commit comments