@@ -20,9 +20,13 @@ You should now use [cls-hooked](https://github.com/Jeff-Lewis/cls-hooked) packag
Sequelize.useCLS(namespace);
```
### Database Engine Support
We have updated our minimum supported database engine versions. Using older database engine will show `SEQUELIZE0006` deprecation warning. Please check [ENGINE.md](https://github.com/sequelize/sequelize/blob/master/ENGINE.md) for version table.
### Sequelize
- Bluebird has been removed. Public API now returns native promises.
- Bluebird has been removed. Internally all methods are now using async/await. Public API now returns native promises. Thanks to [Andy Edwards](https://github.com/jedwards1211) for this refactor work.
-`Sequelize.Promise` is no longer available.
-`sequelize.import` method has been removed.
...
...
@@ -62,6 +66,61 @@ This method now only takes 2 parameters, `tableName` and `options`. Previously t
## Changelog
### 6.0.0-beta.6
- docs(add-constraint): options.fields support
- docs(association): document uniqueKey for belongs to many [#12166](https://github.com/sequelize/sequelize/pull/12166)
- docs(association): options.through.where support
- docs(association): use and instead of 'a nd' [#12191](https://github.com/sequelize/sequelize/pull/12191)
- docs(association): use correct scope name [#12204](https://github.com/sequelize/sequelize/pull/12204)
- fix(mssql): use uppercase for engine table and columns [#12212](https://github.com/sequelize/sequelize/pull/12212)
- fix(pool): show deprecation when engine is not supported [#12218](https://github.com/sequelize/sequelize/pull/12218)
- fix(postgres): addColumn support ARRAY(ENUM) [#12259](https://github.com/sequelize/sequelize/pull/12259)
- fix(query): do not bind $ used within a whole-word [#12250](https://github.com/sequelize/sequelize/pull/12250)
- fix(query-generator): handle literal for substring based operators [#12210](https://github.com/sequelize/sequelize/pull/12210)
- fix(query-interface): allow passing null for query interface insert [#11931](https://github.com/sequelize/sequelize/pull/11931)
- fix(query-interface): allow sequelize.fn and sequelize.literal in fields of IndexesOptions [#12224](https://github.com/sequelize/sequelize/pull/12224)
- fix(scope): don't modify original scope definition [#12207](https://github.com/sequelize/sequelize/pull/12207)
- fix(sqlite): multiple primary keys results in syntax error [#12237](https://github.com/sequelize/sequelize/pull/12237)
- fix(sync): pass options to all query methods [#12208](https://github.com/sequelize/sequelize/pull/12208)
- fix(typings): add type_helpers to file list [#12000](https://github.com/sequelize/sequelize/pull/12000)
- fix(typings): correct Model.init return type [#12148](https://github.com/sequelize/sequelize/pull/12148)
- fix(typings): fn is assignable to where [#12040](https://github.com/sequelize/sequelize/pull/12040)