Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency sequelize to v6 [SECURITY] #3

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jul 29, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
sequelize (source) ^3.30.4 -> ^6.0.0 age adoption passing confidence

GitHub Vulnerability Alerts

GHSA-wfp9-vr4j-f49j

Versions of sequelize prior to 4.12.0 are vulnerable to NoSQL Injection. Query operators such as $gt are not properly sanitized and may allow an attacker to alter data queries, leading to NoSQL Injection.

Recommendation

Upgrade to version 4.12.0 or later

CVE-2019-10752

Affected versions of sequelize are vulnerable to SQL Injection. The function sequelize.json() incorrectly formatted sub paths for JSON queries, which allows attackers to inject SQL statements and execute arbitrary SQL queries if user input is passed to the query. Exploitation example:

  where: this.sequelize.json("data.id')) AS DECIMAL) = 1 DELETE YOLO INJECTIONS; -- ", 1)
});```

## Recommendation

If you are using `sequelize` 5.x, upgrade to version 5.15.1 or later.
If you are using `sequelize` 4.x, upgrade to version 4.44.3 or later.

#### [GHSA-fw4p-36j9-rrj3](https://togithub.com/sequelize/sequelize/pull/11877)

Versions of `sequelize` prior to 4.44.4 are vulnerable to Denial of Service (DoS). The SQLite dialect fails to catch a `TypeError` exception for the `results` variable. The `results` value may be undefined and trigger the error on a `.map` call. This may allow attackers to submit malicious input that forces the exception and crashes the Node process.  

The following proof-of-concept crashes the Node process:  

const Sequelize = require('sequelize');

const sequelize = new Sequelize({
dialect: 'sqlite',
storage: 'database.sqlite'
});

const TypeError = sequelize.define('TypeError', {
name: Sequelize.STRING,
});

TypeError.sync({force: true}).then(() => {
return TypeError.create({name: "SELECT tbl_name FROM sqlite_master"});
});


## Recommendation

Upgrade to version 4.44.4 or later.

---

### Release Notes

<details>
<summary>sequelize/sequelize</summary>

### [`v6.25.7`](https://togithub.com/sequelize/sequelize/releases/tag/v6.25.7)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.25.6...v6.25.7)

##### Bug Fixes

-   fix parameters not being replaced when after $$ strings ([#&#8203;15307](https://togithub.com/sequelize/sequelize/issues/15307)) ([bc39fd6](https://togithub.com/sequelize/sequelize/commit/bc39fd69919e0af0cb0732ca9bfe3e60691c778a))

### [`v6.25.6`](https://togithub.com/sequelize/sequelize/releases/tag/v6.25.6)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.25.5...v6.25.6)

##### Bug Fixes

-   **postgres:** invalidate connection after client-side timeout ([#&#8203;15283](https://togithub.com/sequelize/sequelize/issues/15283)) ([a205765](https://togithub.com/sequelize/sequelize/commit/a20576527b84d4986372b25303b61536fae7479a)), closes [/github.com/brianc/node-postgres/blob/5538df6b446f4b4f921947b460fe38acb897e579/packages/pg/lib/client.js#L529](https://togithub.com//github.com/brianc/node-postgres/blob/5538df6b446f4b4f921947b460fe38acb897e579/packages/pg/lib/client.js/issues/L529)

### [`v6.25.5`](https://togithub.com/sequelize/sequelize/releases/tag/v6.25.5)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.25.4...v6.25.5)

##### Bug Fixes

-   remove options.model overwrite on bulkUpdate ([#&#8203;15252](https://togithub.com/sequelize/sequelize/issues/15252)) ([67e69cd](https://togithub.com/sequelize/sequelize/commit/67e69cdb0e9d3dc16f61449cf0cf4f609c724719)), closes [#&#8203;15231](https://togithub.com/sequelize/sequelize/issues/15231)

### [`v6.25.4`](https://togithub.com/sequelize/sequelize/releases/tag/v6.25.4)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.25.3...v6.25.4)

##### Bug Fixes

-   **types:** add instance.dataValues property to model.d.ts ([#&#8203;15240](https://togithub.com/sequelize/sequelize/issues/15240)) ([00c6da3](https://togithub.com/sequelize/sequelize/commit/00c6da326630a85363b6d5e7d5570ac8ca8b31b8))

### [`v6.25.3`](https://togithub.com/sequelize/sequelize/releases/tag/v6.25.3)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.25.2...v6.25.3)

##### Bug Fixes

-   don't treat \ as escape in standard strings, support E-strings, support vars after ->> operator, treat lowercase e as valid e-string prefix ([#&#8203;15139](https://togithub.com/sequelize/sequelize/issues/15139)) ([7990095](https://togithub.com/sequelize/sequelize/commit/7990095e369b226844669ec691cc7bce94c3dbbe)), closes [#&#8203;14700](https://togithub.com/sequelize/sequelize/issues/14700)

### [`v6.25.2`](https://togithub.com/sequelize/sequelize/releases/tag/v6.25.2)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.25.1...v6.25.2)

##### Bug Fixes

-   **types:** fix TS 4.9 excessive depth error on `InferAttributes` (v6) ([#&#8203;15135](https://togithub.com/sequelize/sequelize/issues/15135)) ([851daaf](https://togithub.com/sequelize/sequelize/commit/851daafc73ff218f7de4455fe9f96eb896106210))

### [`v6.25.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.25.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.25.0...v6.25.1)

##### Bug Fixes

-   **types:** expose legacy "types" folder in export alias ( [#&#8203;15123](https://togithub.com/sequelize/sequelize/issues/15123)) ([9dd93b8](https://togithub.com/sequelize/sequelize/commit/9dd93b8461b0ff0452d7db998d0686c3ef176150))

### [`v6.25.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.25.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.24.0...v6.25.0)

##### Features

-   **oracle:** add support for `dialectOptions.connectString` ([#&#8203;15042](https://togithub.com/sequelize/sequelize/issues/15042)) ([06ad05d](https://togithub.com/sequelize/sequelize/commit/06ad05df260a745cf97bc8e7365c74aea57e5220))

### [`v6.24.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.24.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.23.2...v6.24.0)

##### Features

-   **snowflake:** Add support for `QueryGenerator#tableExistsQuery` ([#&#8203;15087](https://togithub.com/sequelize/sequelize/issues/15087)) ([a44772e](https://togithub.com/sequelize/sequelize/commit/a44772ec58175cfdc2cea84eb359966e48ed1c7b))

### [`v6.23.2`](https://togithub.com/sequelize/sequelize/releases/tag/v6.23.2)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.23.1...v6.23.2)

##### Bug Fixes

-   **postgres:** add custom order direction to subQuery ordering with minified alias ([#&#8203;15056](https://togithub.com/sequelize/sequelize/issues/15056)) ([7203b66](https://togithub.com/sequelize/sequelize/commit/7203b6626ed38c06f91f09f73571fb7df56fe348))

### [`v6.23.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.23.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.23.0...v6.23.1)

##### Bug Fixes

-   **oracle:** add support for Oracle DB 18c CI ([#&#8203;15016](https://togithub.com/sequelize/sequelize/issues/15016)) ([5f621d7](https://togithub.com/sequelize/sequelize/commit/5f621d72c1f265bb7659b54eb33469db8a4443fd)), closes [#&#8203;1](https://togithub.com/sequelize/sequelize/issues/1) [#&#8203;7](https://togithub.com/sequelize/sequelize/issues/7) [#&#8203;9](https://togithub.com/sequelize/sequelize/issues/9) [#&#8203;13](https://togithub.com/sequelize/sequelize/issues/13) [#&#8203;14](https://togithub.com/sequelize/sequelize/issues/14) [#&#8203;16](https://togithub.com/sequelize/sequelize/issues/16)

### [`v6.23.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.23.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.22.1...v6.23.0)

##### Features

-   **types:** add typescript 4.8 compatibility ([#&#8203;14990](https://togithub.com/sequelize/sequelize/issues/14990)) ([3468378](https://togithub.com/sequelize/sequelize/commit/34683786d7ec832b179845188076ea2121ea78ff))

### [`v6.22.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.22.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.22.0...v6.22.1)

##### Bug Fixes

-   **types:** missing type for oracle dialect in v6 ([#&#8203;14992](https://togithub.com/sequelize/sequelize/issues/14992)) ([1da6657](https://togithub.com/sequelize/sequelize/commit/1da6657de18fc4918dc165f61aedf8888faa3704)), closes [#&#8203;14991](https://togithub.com/sequelize/sequelize/issues/14991)

### [`v6.22.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.22.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.21.6...v6.22.0)

##### Features

-   **oracle:** add oracle dialect support ([#&#8203;14638](https://togithub.com/sequelize/sequelize/issues/14638)) ([c230d80](https://togithub.com/sequelize/sequelize/commit/c230d80676450169d9cd74fe4cdf0da261de77b8)), closes [#&#8203;1](https://togithub.com/sequelize/sequelize/issues/1) [#&#8203;7](https://togithub.com/sequelize/sequelize/issues/7) [#&#8203;9](https://togithub.com/sequelize/sequelize/issues/9) [#&#8203;13](https://togithub.com/sequelize/sequelize/issues/13) [#&#8203;14](https://togithub.com/sequelize/sequelize/issues/14) [#&#8203;16](https://togithub.com/sequelize/sequelize/issues/16)

### [`v6.21.6`](https://togithub.com/sequelize/sequelize/releases/tag/v6.21.6)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.21.5...v6.21.6)

##### Bug Fixes

-   **types:** backport [#&#8203;14704](https://togithub.com/sequelize/sequelize/issues/14704) for v6 ([#&#8203;14964](https://togithub.com/sequelize/sequelize/issues/14964)) ([33d94b2](https://togithub.com/sequelize/sequelize/commit/33d94b223988d29bf1032ea2b589797664310839))

### [`v6.21.5`](https://togithub.com/sequelize/sequelize/releases/tag/v6.21.5)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.21.4...v6.21.5)

##### Bug Fixes

-   **mariadb:** do not automatically parse JSON fields ([#&#8203;14800](https://togithub.com/sequelize/sequelize/issues/14800)) ([d047f32](https://togithub.com/sequelize/sequelize/commit/d047f3275a451df73294f222c8a2c99ffdd22299))

### [`v6.21.4`](https://togithub.com/sequelize/sequelize/releases/tag/v6.21.4)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.21.3...v6.21.4)

##### Bug Fixes

-   minified aliases are now properly referenced in subqueries (v6) ([#&#8203;14852](https://togithub.com/sequelize/sequelize/issues/14852)) ([5a257bc](https://togithub.com/sequelize/sequelize/commit/5a257bc93c7e760f6b0158f55b3cb48878698450)), closes [#&#8203;14804](https://togithub.com/sequelize/sequelize/issues/14804)

### [`v6.21.3`](https://togithub.com/sequelize/sequelize/releases/tag/v6.21.3)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.21.2...v6.21.3)

##### Bug Fixes

-   **postgres:** attach postgres error-handler earlier in lifecycle (v6) ([#&#8203;14731](https://togithub.com/sequelize/sequelize/issues/14731)) ([90bb694](https://togithub.com/sequelize/sequelize/commit/90bb69485021344351732dcafe31cb67a54175f7))

### [`v6.21.2`](https://togithub.com/sequelize/sequelize/releases/tag/v6.21.2)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.21.1...v6.21.2)

##### Bug Fixes

-   properly escape multiple `$` in `fn` args ([#&#8203;14678](https://togithub.com/sequelize/sequelize/issues/14678)) ([7bb60e3](https://togithub.com/sequelize/sequelize/commit/7bb60e3531127da684cc1f75307410c53dfc9c8c))

### [`v6.21.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.21.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.21.0...v6.21.1)

##### Bug Fixes

-   **postgres:** use schema set in sequelize config by default ([#&#8203;14665](https://togithub.com/sequelize/sequelize/issues/14665)) ([2f3b924](https://togithub.com/sequelize/sequelize/commit/2f3b9247ad4ef74d1ec1027562eaafb6b1e9755f))

### [`v6.21.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.21.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.20.1...v6.21.0)

##### Features

-   exports types to support typescript >= 4.5 nodenext module ([#&#8203;14620](https://togithub.com/sequelize/sequelize/issues/14620)) ([cbdf73e](https://togithub.com/sequelize/sequelize/commit/cbdf73e9ee52ebebf92679b183ce95c760e914db))

### [`v6.20.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.20.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.20.0...v6.20.1)

##### Bug Fixes

-   kill connection on commit/rollback error ([#&#8203;14535](https://togithub.com/sequelize/sequelize/issues/14535)) ([e1a9c28](https://togithub.com/sequelize/sequelize/commit/e1a9c28375e3bdd11347835b2f796290638ad58a))

### [`v6.20.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.20.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.19.2...v6.20.0)

##### Features

-   support cyclic foreign keys ([#&#8203;14499](https://togithub.com/sequelize/sequelize/issues/14499)) ([b37df96](https://togithub.com/sequelize/sequelize/commit/b37df964333c39b9e19daa9a2c45c1d0bb475433))

### [`v6.19.2`](https://togithub.com/sequelize/sequelize/releases/tag/v6.19.2)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.19.1...v6.19.2)

##### Bug Fixes

-   accept replacements in `ARRAY[]` & followed by `;` ([#&#8203;14518](https://togithub.com/sequelize/sequelize/issues/14518)) ([e37c572](https://togithub.com/sequelize/sequelize/commit/e37c57255fbd77244be22dc57d0a86490597831a))

### [`v6.19.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.19.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.19.0...v6.19.1)

##### Bug Fixes

-   do not replace `:replacements` inside of strings ([#&#8203;14472](https://togithub.com/sequelize/sequelize/issues/14472)) ([ccaa399](https://togithub.com/sequelize/sequelize/commit/ccaa3996047fe00048d5993ab2dd43ebadd4f78b))

⚠️ BREAKING CHANGE: This change is a security fix that patches a serious SQL injection vulnerability, however it is possible that your application made use of it and broke as a result of this change. [Please see this issue for more information](https://togithub.com/sequelize/sequelize/issues/14519).

### [`v6.19.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.19.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.18.0...v6.19.0)

##### Bug Fixes

-   **types:** make `WhereOptions` more accurate ([#&#8203;14368](https://togithub.com/sequelize/sequelize/issues/14368)) ([0d0aade](https://togithub.com/sequelize/sequelize/commit/0d0aadec98871d704743563585eacf87b3403517))

##### Features

-   **types:** make `Model.init` aware of pre-configured foreign keys ([#&#8203;14370](https://togithub.com/sequelize/sequelize/issues/14370)) ([5954d2c](https://togithub.com/sequelize/sequelize/commit/5954d2cae542f8e4bd3351bc9d55b6880bd751c3))

### [`v6.18.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.18.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.17.0...v6.18.0)

##### Features

-   add whereScopeStrategy to merge where scopes with Op.and ([#&#8203;14152](https://togithub.com/sequelize/sequelize/issues/14152)) ([8349c02](https://togithub.com/sequelize/sequelize/commit/8349c02c5130fc431adec265e3a3ad043571f1b9))

### [`v6.17.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.17.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.16.3...v6.17.0)

##### Bug Fixes

-   fix typo in query-generator.js error message ([#&#8203;14151](https://togithub.com/sequelize/sequelize/issues/14151)) ([2d339d0](https://togithub.com/sequelize/sequelize/commit/2d339d0799d224dca79037e8465cf48abef496a8))
-   **postgres:** correctly re-acquire connection for pg-native ([#&#8203;14090](https://togithub.com/sequelize/sequelize/issues/14090)) ([82506a6](https://togithub.com/sequelize/sequelize/commit/82506a68dbb33e4824ed6b8462cedf52d90d8cfc))
-   **types:** drop excess argument for upsert ([#&#8203;14156](https://togithub.com/sequelize/sequelize/issues/14156)) ([da8678d](https://togithub.com/sequelize/sequelize/commit/da8678dec6ee6b8e427701e88d7db6810e990f82))
-   **types:** export `GroupedCountResultItem` interface ([#&#8203;14154](https://togithub.com/sequelize/sequelize/issues/14154)) ([a81b7ab](https://togithub.com/sequelize/sequelize/commit/a81b7ab38da7fea07e00114e88711fbfed9f9a34))
-   **types:** update 'replication' option property ([#&#8203;14126](https://togithub.com/sequelize/sequelize/issues/14126)) ([7ac1221](https://togithub.com/sequelize/sequelize/commit/7ac122163f63ced2e24dac1d73e0be298f686187))
-   **types:** update return type of `Model.update` ([#&#8203;14155](https://togithub.com/sequelize/sequelize/issues/14155)) ([b80aeed](https://togithub.com/sequelize/sequelize/commit/b80aeed3c4eccc98da78927e91483ca41035dffe))

##### Features

-   **types:** infer nullable creation attributes as optional ([#&#8203;14147](https://togithub.com/sequelize/sequelize/issues/14147)) ([f5c06bd](https://togithub.com/sequelize/sequelize/commit/f5c06bd493670a37ba6d6ed039d44ccdf79b126e))
-   **types:** make `Model.getAttributes` stricter ([#&#8203;14017](https://togithub.com/sequelize/sequelize/issues/14017)) ([e974e20](https://togithub.com/sequelize/sequelize/commit/e974e202ca755a008f450c88123fc166a5497bb2))

### [`v6.16.3`](https://togithub.com/sequelize/sequelize/releases/tag/v6.16.3)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.16.2...v6.16.3)

##### Bug Fixes

-   **types:** support union in CreationAttributes ([#&#8203;14146](https://togithub.com/sequelize/sequelize/issues/14146)) ([d23bd7a](https://togithub.com/sequelize/sequelize/commit/d23bd7a7e2aac095f8b210f8d0e0f060c215475f))

### [`v6.16.2`](https://togithub.com/sequelize/sequelize/releases/tag/v6.16.2)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.16.1...v6.16.2)

##### Bug Fixes

-   **types:** missing snowflake and db2 dialects ([#&#8203;14137](https://togithub.com/sequelize/sequelize/issues/14137)) ([0326c2c](https://togithub.com/sequelize/sequelize/commit/0326c2caee201ee7288eb917cb3facd5aefd9b12))

### [`v6.16.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.16.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.16.0...v6.16.1)

##### Bug Fixes

-   correct path to `package.json` in Sequelize.version ([#&#8203;14073](https://togithub.com/sequelize/sequelize/issues/14073)) ([b95c213](https://togithub.com/sequelize/sequelize/commit/b95c213909ce084ffd98f9e98c9cf881841e27f1))

### [`v6.16.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.16.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.15.1...v6.16.0)

##### Features

-   gen /lib & /types from /src & drop /dist (v6) ([#&#8203;14063](https://togithub.com/sequelize/sequelize/issues/14063)) ([6b8fbb4](https://togithub.com/sequelize/sequelize/commit/6b8fbb48d0d12f2c500f69ce79f7f54386c32b40))

### [`v6.15.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.15.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.15.0...v6.15.1)

##### Bug Fixes

-   **types:** accept `$nested.syntax$` in WhereAttributeHash ([#&#8203;13983](https://togithub.com/sequelize/sequelize/issues/13983)) ([4a513cf](https://togithub.com/sequelize/sequelize/commit/4a513cfb8d0061fe47864fa70655649a4f1b60ac))
-   **types:** correct typing definitions for `Sequelize.where` ([#&#8203;14018](https://togithub.com/sequelize/sequelize/issues/14018)) ([99c612b](https://togithub.com/sequelize/sequelize/commit/99c612bf4ffe61da1564b482b1d3680172ddde34))
-   **types:** improve branded types ([#&#8203;13990](https://togithub.com/sequelize/sequelize/issues/13990)) ([a578ea0](https://togithub.com/sequelize/sequelize/commit/a578ea001e0d8f0eddae41badc6814a2a527d9a9))

### [`v6.15.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.15.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.14.1...v6.15.0)

##### Bug Fixes

-   **types:** deduplicate error typings ([#&#8203;14002](https://togithub.com/sequelize/sequelize/issues/14002)) ([fc28629](https://togithub.com/sequelize/sequelize/commit/fc2862905a2f34bd8dcbfe78fa66c20693be44b7))

##### Features

-   add options.rawErrors to `Sequelize#query` method ([#&#8203;13881](https://togithub.com/sequelize/sequelize/issues/13881)) ([7c58851](https://togithub.com/sequelize/sequelize/commit/7c588511a37af5a5ab8c483bffa39a4060122d37))

### [`v6.14.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.14.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.14.0...v6.14.1)

##### Bug Fixes

-   rollback PR [#&#8203;13951](https://togithub.com/sequelize/sequelize/issues/13951) in v6 ([#&#8203;14004](https://togithub.com/sequelize/sequelize/issues/14004)) ([1882f3c](https://togithub.com/sequelize/sequelize/commit/1882f3cd9c42c245d486950b3a9cb18b761e1536))

### [`v6.14.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.14.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.13.0...v6.14.0)

##### Bug Fixes

-   don't call overloaded versions of find functions internally ([#&#8203;13951](https://togithub.com/sequelize/sequelize/issues/13951)) ([fc53cdb](https://togithub.com/sequelize/sequelize/commit/fc53cdbfbbf312d501c03f4268637795e43131d7))
-   don't call overloaded versions of find functions internally ([#&#8203;13951](https://togithub.com/sequelize/sequelize/issues/13951)) ([b253d8e](https://togithub.com/sequelize/sequelize/commit/b253d8ed63c91bc2c7143f07806554b5a5ac67eb))
-   **model.d:** fix type for `count` and `findAndCountAll` ([#&#8203;13786](https://togithub.com/sequelize/sequelize/issues/13786)) ([b06c1fc](https://togithub.com/sequelize/sequelize/commit/b06c1fc283cbd20af6031199ece075d8b10b0feb))
-   **types:** add hooks to InstanceDestroyOptions type ([#&#8203;13491](https://togithub.com/sequelize/sequelize/issues/13491)) ([dbd9ea8](https://togithub.com/sequelize/sequelize/commit/dbd9ea8690d6d2209cf0d000239e87f93d02cbb0))
-   **types:** add missing fields to FindOr{Create,Build}Options ([#&#8203;13389](https://togithub.com/sequelize/sequelize/issues/13389)) ([ef63f8f](https://togithub.com/sequelize/sequelize/commit/ef63f8f3900135f9d5d7869ee5a1f78dd4da0e76))
-   **types:** fix QueryInterface#bulkInsert attribute arg type ([#&#8203;13945](https://togithub.com/sequelize/sequelize/issues/13945)) ([9e108e3](https://togithub.com/sequelize/sequelize/commit/9e108e3417c56df1b19db322cc7b0168d9bb3b85))

##### Features

-   **types:** add `InferAttributes` utility type ([#&#8203;13909](https://togithub.com/sequelize/sequelize/issues/13909)) ([fd42687](https://togithub.com/sequelize/sequelize/commit/fd426876dca4d265f80147b6c2080e7400fa0129))
-   **types:** add typings for DataTypes.TSVECTOR ([#&#8203;13940](https://togithub.com/sequelize/sequelize/issues/13940)) ([b8f0463](https://togithub.com/sequelize/sequelize/commit/b8f0463c30cc9ccb9386692e9acd7afbb9de5bd9))
-   **types:** drop TypeScript < 4.1 ([#&#8203;13954](https://togithub.com/sequelize/sequelize/issues/13954)) ([dd49044](https://togithub.com/sequelize/sequelize/commit/dd49044bc7a1a0dace3e438881a32416fe68aaf6))

### [`v6.13.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.13.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.12.5...v6.13.0)

##### Bug Fixes

-   fix typings for queries with  {plain: true} option ([#&#8203;13899](https://togithub.com/sequelize/sequelize/issues/13899)) ([308d017](https://togithub.com/sequelize/sequelize/commit/308d0171ec3b2fd7d329c978e7885e6cc23466d0))

##### Features

-   **mariadb:** add mariadb support in Sequelize.set function ([#&#8203;13926](https://togithub.com/sequelize/sequelize/issues/13926)) ([02bda05](https://togithub.com/sequelize/sequelize/commit/02bda05a0757773c0d71fa574e6217210adabecf)), closes [#&#8203;13920](https://togithub.com/sequelize/sequelize/issues/13920)
-   **postgres:** drop indices concurrently in Postgres ([#&#8203;13903](https://togithub.com/sequelize/sequelize/issues/13903)) ([37f20a6](https://togithub.com/sequelize/sequelize/commit/37f20a6028eecdd89a61c3db708506784105adfc))

### [`v6.12.5`](https://togithub.com/sequelize/sequelize/releases/tag/v6.12.5)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.12.4...v6.12.5)

##### Bug Fixes

-   **dialect:** sequelize pool doesn't take effect in dialect "mssql" ([#&#8203;13880](https://togithub.com/sequelize/sequelize/issues/13880)) ([fc155b6](https://togithub.com/sequelize/sequelize/commit/fc155b627448e09420b4d8308736b8d3a74e2935))
-   **model:** fix count with grouping typing ([#&#8203;13884](https://togithub.com/sequelize/sequelize/issues/13884)) ([49beb29](https://togithub.com/sequelize/sequelize/commit/49beb29ae757dde7b5eb531b0d857e39413ffb3b)), closes [#&#8203;13871](https://togithub.com/sequelize/sequelize/issues/13871)
-   **types:** improve ModelCtor / ModelStatic typing ([#&#8203;13890](https://togithub.com/sequelize/sequelize/issues/13890)) ([34aa808](https://togithub.com/sequelize/sequelize/commit/34aa808425371c9b7cdf43cfe8ec3141d33ade34))
-   **types:** omit FK and scope keys in HasManyCreateAssociationMixin ([#&#8203;13892](https://togithub.com/sequelize/sequelize/issues/13892)) ([b315ce8](https://togithub.com/sequelize/sequelize/commit/b315ce8b967c5f6cf55a4f774aaca60306087bfb))

### [`v6.12.4`](https://togithub.com/sequelize/sequelize/releases/tag/v6.12.4)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.12.3...v6.12.4)

##### Bug Fixes

-   **mssql/async-queue:** fix unable to start mysql due to circular ref ([#&#8203;13823](https://togithub.com/sequelize/sequelize/issues/13823)) ([49e8614](https://togithub.com/sequelize/sequelize/commit/49e861459ee88be334b3969f16d0e03582fd16f0))

### [`v6.12.3`](https://togithub.com/sequelize/sequelize/releases/tag/v6.12.3)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.12.2...v6.12.3)

##### Bug Fixes

-   **data-types:** moment object throwing error ([#&#8203;13818](https://togithub.com/sequelize/sequelize/issues/13818)) ([78c7414](https://togithub.com/sequelize/sequelize/commit/78c7414ab6bcbb1adec161c0e223f248edb15511))

### [`v6.12.2`](https://togithub.com/sequelize/sequelize/releases/tag/v6.12.2)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.12.1...v6.12.2)

##### Bug Fixes

-   **abstract:** patch jsonb operator for pg if value is json ([#&#8203;13780](https://togithub.com/sequelize/sequelize/issues/13780)) ([a2375c5](https://togithub.com/sequelize/sequelize/commit/a2375c5645dd89fb436707e95cc01b5c546eb7fc))
-   **operators:** fix ts support for operators.ts ([#&#8203;13805](https://togithub.com/sequelize/sequelize/issues/13805)) ([b532ab1](https://togithub.com/sequelize/sequelize/commit/b532ab1dbdda2bfdb586b4ba0765147e71a86ae1))
-   **postgres:** allows usage of schema for ARRAY(ENUM) type name ([#&#8203;13807](https://togithub.com/sequelize/sequelize/issues/13807)) ([da5b0ce](https://togithub.com/sequelize/sequelize/commit/da5b0ce2d35d0381b80e787f977a7aefb7cdca56))
-   **query-interface:** bring back quoteIdentifier(s) to queryInterface ([#&#8203;13810](https://togithub.com/sequelize/sequelize/issues/13810)) ([001dc60](https://togithub.com/sequelize/sequelize/commit/001dc6006d24a14817c8e7744baf5d1d40eab520))

### [`v6.12.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.12.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.12.0...v6.12.1)

##### Bug Fixes

-   allow deep imports ([#&#8203;13795](https://togithub.com/sequelize/sequelize/issues/13795)) ([1ecdaf9](https://togithub.com/sequelize/sequelize/commit/1ecdaf98308ae9b975ec3af7be209fd448043e6e))
-   fix invalid ts import style of lib/operators ([#&#8203;13797](https://togithub.com/sequelize/sequelize/issues/13797)) ([8acc14f](https://togithub.com/sequelize/sequelize/commit/8acc14f3c639b2667ad4f79d963a3f365b2897a5))

### [`v6.12.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.12.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.11.0...v6.12.0)

##### Bug Fixes

-   **data-types:** unnecessary warning when getting data with DATE dataTypes ([#&#8203;13712](https://togithub.com/sequelize/sequelize/issues/13712)) ([121884b](https://togithub.com/sequelize/sequelize/commit/121884b0d364e0be53e93bfd90d99b7e15449897))
-   **docs:** add aws-lamda route ([#&#8203;13693](https://togithub.com/sequelize/sequelize/issues/13693)) ([3059bce](https://togithub.com/sequelize/sequelize/commit/3059bce6003ca77b5e67cf7d6d673597b704db0e))
-   **example:** fix coordinates format as per GeoJson ([#&#8203;13718](https://togithub.com/sequelize/sequelize/issues/13718)) ([f9dec20](https://togithub.com/sequelize/sequelize/commit/f9dec20cd1c0f1ace931ca470f8787a7b4046a56))
-   **increment:** fix key value broken query ([#&#8203;12985](https://togithub.com/sequelize/sequelize/issues/12985)) ([fc0b19e](https://togithub.com/sequelize/sequelize/commit/fc0b19e3cf95f0c4d749c3bf871077228be64bba))
-   **model.d:** fix findAndCountAll.count type ([#&#8203;13736](https://togithub.com/sequelize/sequelize/issues/13736)) ([b7b472e](https://togithub.com/sequelize/sequelize/commit/b7b472e7a0a55ebd402f7bced3e330c3087bc75f))
-   **snowflake:** fix to prevent disconnect attempt on already disconnected connection ([#&#8203;13775](https://togithub.com/sequelize/sequelize/issues/13775)) ([2a9a551](https://togithub.com/sequelize/sequelize/commit/2a9a551609be94ee233516a1a9b4119892249d9c))
-   **types:** add Col to where Ops ([#&#8203;13717](https://togithub.com/sequelize/sequelize/issues/13717)) ([2d7b865](https://togithub.com/sequelize/sequelize/commit/2d7b8653a82f16eff4ee5a48d1fd6ec9ab785c76))
-   **types:** add instance member declaration ([#&#8203;13684](https://togithub.com/sequelize/sequelize/issues/13684)) ([ae3cde5](https://togithub.com/sequelize/sequelize/commit/ae3cde54b62f2bd41f35a002ba7ddf54946ca0ee))
-   **types:** add missing schema field to sequelize options ([c7a0839](https://togithub.com/sequelize/sequelize/commit/c7a0839ffc2923e2881b8cc31a251709a929a022)), closes [#&#8203;12606](https://togithub.com/sequelize/sequelize/issues/12606)
-   **types:** allow override json function with custom return type ([#&#8203;13694](https://togithub.com/sequelize/sequelize/issues/13694)) ([2c3b384](https://togithub.com/sequelize/sequelize/commit/2c3b384cad6d9b6e1527f05560b12fc0338eca87))
-   **upsert:** fall back to DO NOTHING if no update key values provided ([#&#8203;13594](https://togithub.com/sequelize/sequelize/issues/13594)) ([4071378](https://togithub.com/sequelize/sequelize/commit/407137822a62897f7366980acd7eeceb443601b9))
-   **upsert:** fall back to DO NOTHING if no update key values provided ([#&#8203;13711](https://togithub.com/sequelize/sequelize/issues/13711)) ([f9dfaa7](https://togithub.com/sequelize/sequelize/commit/f9dfaa7c533acad4ae88fd16b47c3a5805fb6e9b)), closes [#&#8203;13594](https://togithub.com/sequelize/sequelize/issues/13594)
-   wrong interface used within mixin ([#&#8203;13685](https://togithub.com/sequelize/sequelize/issues/13685)) ([bd3ddf5](https://togithub.com/sequelize/sequelize/commit/bd3ddf5a93a17cb729aa160a89a3ee04c329c0ed))

##### Features

-   **dialects:** add experimental support for db2 ([#&#8203;13374](https://togithub.com/sequelize/sequelize/issues/13374)) ([4443d2a](https://togithub.com/sequelize/sequelize/commit/4443d2af14c78b21ff2a70f4aeb69bd9d3f8c2e2))
-   **dialect:** snowflake dialect support ([#&#8203;13406](https://togithub.com/sequelize/sequelize/issues/13406)) ([ad68a5e](https://togithub.com/sequelize/sequelize/commit/ad68a5e5f07d7800ece68290de4d15e33ac7579a))
-   **model:** complete getAttributes feature ([b6510df](https://togithub.com/sequelize/sequelize/commit/b6510df2bdb5fb22c508c3f348e11cbaf7065fbc))
-   **typescript:** create alpha release with ts ([911125e](https://togithub.com/sequelize/sequelize/commit/911125e4a8daf56cb4f6461fd1281a83f5373f0c))
-   **types:** transition lib/errors ([#&#8203;13710](https://togithub.com/sequelize/sequelize/issues/13710)) ([8cdce6a](https://togithub.com/sequelize/sequelize/commit/8cdce6aeb32b09e4bc1359250efcfacc6742501f))
-   **upsert:** add conflictFields option ([#&#8203;13723](https://togithub.com/sequelize/sequelize/issues/13723)) ([496bede](https://togithub.com/sequelize/sequelize/commit/496bede2f9e48cce6fe378a1c174a8a9154e2f7e))

### [`v6.11.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.11.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.10.0...v6.11.0)

##### Features

-   option for attributes having dotNotation ([#&#8203;13670](https://togithub.com/sequelize/sequelize/issues/13670)) ([41876f1](https://togithub.com/sequelize/sequelize/commit/41876f11a7ef2dec4f7788d8e39cf9864a9e83cd))

### [`v6.10.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.10.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.9.0...v6.10.0)

##### Bug Fixes

-   typing on creation within an association ([#&#8203;13678](https://togithub.com/sequelize/sequelize/issues/13678)) ([0312f8e](https://togithub.com/sequelize/sequelize/commit/0312f8eac982b646842f89f56dc90f6c8f935c84))
-   **logger:** change logging depth from 3 to 1 ([#&#8203;12879](https://togithub.com/sequelize/sequelize/issues/12879)) ([ddddc24](https://togithub.com/sequelize/sequelize/commit/ddddc244c2019a765ad889226584b8fb07ff50da))
-   **mariadb:** fix MariaDB 10.5 JSON ([#&#8203;13633](https://togithub.com/sequelize/sequelize/issues/13633)) ([cdd61dd](https://togithub.com/sequelize/sequelize/commit/cdd61ddbe83cbfe77dc04a32196dcc66e0052f51))
-   **model:** clone options object instead of modifying ([#&#8203;13589](https://togithub.com/sequelize/sequelize/issues/13589)) ([3be43de](https://togithub.com/sequelize/sequelize/commit/3be43deeb9a4e03cffb1d72ebc67a534a3c5dc19))
-   **mssql:** fix sub query issue occurring with renamed primary key fields ([#&#8203;12801](https://togithub.com/sequelize/sequelize/issues/12801)) ([73d99ab](https://togithub.com/sequelize/sequelize/commit/73d99ab45c069119478d8ef39ff9391181d5578f))
-   **mssql:** sqlserver 2008 fix for using offsets and include criteria ([47c4494](https://togithub.com/sequelize/sequelize/commit/47c4494968422585bf265063925d1662ffcd4173))
-   **query:** make stacktraces include original calling code ([#&#8203;13347](https://togithub.com/sequelize/sequelize/issues/13347)) ([f581543](https://togithub.com/sequelize/sequelize/commit/f58154334d98038deafbecd017cf5719d1b13b7f))
-   **types:** Add missing type definitions in models ([#&#8203;13553](https://togithub.com/sequelize/sequelize/issues/13553)) ([73ecf6c](https://togithub.com/sequelize/sequelize/commit/73ecf6cf33628eca38973c0eeb5c798dbba177e9))
-   **types:** add specifc tojson type in model.d.ts ([#&#8203;13661](https://togithub.com/sequelize/sequelize/issues/13661)) ([5924be5](https://togithub.com/sequelize/sequelize/commit/5924be52152232fbd7a925d599c31cac9f90dc6d))
-   **types:** DataType.TEXT overloading definition ([#&#8203;13654](https://togithub.com/sequelize/sequelize/issues/13654)) ([1690801](https://togithub.com/sequelize/sequelize/commit/1690801cda2ca15f32aaaf5e9ebd96e800808e36))
-   **types:** include 'paranoid' in IncludeThroughOptions definition ([#&#8203;13625](https://togithub.com/sequelize/sequelize/issues/13625)) ([b1fb1f3](https://togithub.com/sequelize/sequelize/commit/b1fb1f32f7d66c013bbf015345a1076893ffd806))
-   **types:** ne op documentation ([#&#8203;13666](https://togithub.com/sequelize/sequelize/issues/13666)) ([98485df](https://togithub.com/sequelize/sequelize/commit/98485dfcff501c565dbf453a54868a4dfe60a225))
-   **types:** rename types and update CONTRIBUTING docs ([#&#8203;13348](https://togithub.com/sequelize/sequelize/issues/13348)) ([1f23924](https://togithub.com/sequelize/sequelize/commit/1f2392423212ca9a4604772c1d0a2f008606695e))
-   expect result is null but got zero ([#&#8203;13637](https://togithub.com/sequelize/sequelize/issues/13637)) ([da3ac09](https://togithub.com/sequelize/sequelize/commit/da3ac091032856f8a74297eff9a9d89e7fc997e5))

##### Features

-   **definitions:** Adds AbstractQuery and before/afterQuery hook definitions ([#&#8203;13635](https://togithub.com/sequelize/sequelize/issues/13635)) ([37a5858](https://togithub.com/sequelize/sequelize/commit/37a5858b1e635a28dee1da494f278753d489bbe8))
-   **postgresql:** easier SSL config and options param support ([#&#8203;13673](https://togithub.com/sequelize/sequelize/issues/13673)) ([9591573](https://togithub.com/sequelize/sequelize/commit/95915739443f96996841dacfd6861e9d5ba35c1b))

### [`v6.9.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.9.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.8.0...v6.9.0)

##### Bug Fixes

-   **docs:** using incorrect esdocs syntax ([#&#8203;13615](https://togithub.com/sequelize/sequelize/issues/13615)) ([c3c690b](https://togithub.com/sequelize/sequelize/commit/c3c690b90688941eab5c9efa6918314d52a9b8ef))
-   **sqlite:** quote table names in sqlite getForeignKeysQuery ([#&#8203;13587](https://togithub.com/sequelize/sequelize/issues/13587)) ([eeb6a8f](https://togithub.com/sequelize/sequelize/commit/eeb6a8fbeb6549be038f2dbb0eefb414c7450653))
-   **upsert:** do not overwrite an explcit created_at during upsert ([#&#8203;13593](https://togithub.com/sequelize/sequelize/issues/13593)) ([594cee8](https://togithub.com/sequelize/sequelize/commit/594cee88a54ef82709b04c5ffd9a1f03d76b2d18))

##### Features

-   **mysql:** add support for MySQL v8 ([#&#8203;13618](https://togithub.com/sequelize/sequelize/issues/13618)) ([35978f0](https://togithub.com/sequelize/sequelize/commit/35978f0633efbefc3749363717378996b806cc95))

### [`v6.8.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.8.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.7.0...v6.8.0)

##### Bug Fixes

-   **types:** allow any values in `isIn` validator ([#&#8203;12962](https://togithub.com/sequelize/sequelize/issues/12962)) ([d511d91](https://togithub.com/sequelize/sequelize/commit/d511d9164e0f469ccba40d94b4865b73466f64f5))
-   allows insert primary key with zero ([#&#8203;13458](https://togithub.com/sequelize/sequelize/issues/13458)) ([e4aff2f](https://togithub.com/sequelize/sequelize/commit/e4aff2f6270bc52fbdc90bed6269537e2f9714e0))
-   **model:** Convert number values only if they aren't null to avoid NaN ([199b632](https://togithub.com/sequelize/sequelize/commit/199b632b021830f9d09210fd7430045710638631))
-   **model.d:** accept \[Op.is] in where (broken in TypeScript 4.4) ([#&#8203;13499](https://togithub.com/sequelize/sequelize/issues/13499)) ([d685a9a](https://togithub.com/sequelize/sequelize/commit/d685a9a76ad353aef6df61c19e4385aa9ba79368))
-   **postgres:** fix `findCreateFind` to work with postgres transactions ([#&#8203;13482](https://togithub.com/sequelize/sequelize/issues/13482)) ([84421d7](https://togithub.com/sequelize/sequelize/commit/84421d7d738176ee6d0de705c493b145b9488532))
-   **select:** do not force set `subQuery` to `false` ([#&#8203;13490](https://togithub.com/sequelize/sequelize/issues/13490)) ([0943339](https://togithub.com/sequelize/sequelize/commit/094333910e105bbc363321eb7557a582363a8f6d))
-   **sqlite:** fix wrongly overwriting storage if empty string ([#&#8203;13376](https://togithub.com/sequelize/sequelize/issues/13376)) ([c3e608b](https://togithub.com/sequelize/sequelize/commit/c3e608b95a130b661ca01f9af42beaac5995d986)), closes [#&#8203;13375](https://togithub.com/sequelize/sequelize/issues/13375)
-   **types:** add missing upsert hooks ([#&#8203;13394](https://togithub.com/sequelize/sequelize/issues/13394)) ([5e9c209](https://togithub.com/sequelize/sequelize/commit/5e9c209cc8eaa1d38f33bb3ac2de8b8ab33929f2))
-   **types:** extend BulkCreateOptions by SearchPathable ([#&#8203;13469](https://togithub.com/sequelize/sequelize/issues/13469)) ([47c2d05](https://togithub.com/sequelize/sequelize/commit/47c2d057f857e1eb197ac317f295798313dcedc0)), closes [#&#8203;13454](https://togithub.com/sequelize/sequelize/issues/13454)
-   **types:** typo in model.d.ts ([#&#8203;13574](https://togithub.com/sequelize/sequelize/issues/13574)) ([31d0fbc](https://togithub.com/sequelize/sequelize/commit/31d0fbce032073917b4b41f1bdde4fb1fe562f97))

##### Features

-   **postgres:** support `query_timeout` dialect option ([#&#8203;13258](https://togithub.com/sequelize/sequelize/issues/13258)) ([3ca085d](https://togithub.com/sequelize/sequelize/commit/3ca085db318201fa59422a2ce191bcf76e5f37dc))
-   **typings:** add UnknownConstraintError ([#&#8203;13461](https://togithub.com/sequelize/sequelize/issues/13461)) ([69d899e](https://togithub.com/sequelize/sequelize/commit/69d899e27b733adb24e4300b48c9bae91455932f))

### [`v6.7.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.7.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.6.5...v6.7.0)

##### Bug Fixes

-   **deps:** upgrade to secure versions of dev deps ([#&#8203;13549](https://togithub.com/sequelize/sequelize/issues/13549)) ([cf53734](https://togithub.com/sequelize/sequelize/commit/cf537342b55bd4cf432f16b4b524737a6cb68ab4))
-   **docs:** fix typo in documentation for polymorphic associations ([#&#8203;13405](https://togithub.com/sequelize/sequelize/issues/13405)) ([bbf3d76](https://togithub.com/sequelize/sequelize/commit/bbf3d76474f8520aa9d16d51bd35730774866e13))
-   **types:** allow rangable to take a string tuple ([#&#8203;13486](https://togithub.com/sequelize/sequelize/issues/13486)) ([ca2a11a](https://togithub.com/sequelize/sequelize/commit/ca2a11aed603572f3277c2262d445ec9f464b326))

##### Features

-   **test:** add test for nested column in where query ([#&#8203;13478](https://togithub.com/sequelize/sequelize/issues/13478)) ([26b62c7](https://togithub.com/sequelize/sequelize/commit/26b62c7c3e76fca81c76cabcaf58fff00b7c4da0)), closes [#&#8203;13288](https://togithub.com/sequelize/sequelize/issues/13288)
-   **types:** make config type deeply writeable for before connect hook ([#&#8203;13424](https://togithub.com/sequelize/sequelize/issues/13424)) ([f078f77](https://togithub.com/sequelize/sequelize/commit/f078f772d447e9148442ca4e9feae887e65adea0))

### [`v6.6.5`](https://togithub.com/sequelize/sequelize/releases/tag/v6.6.5)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.6.4...v6.6.5)

##### Bug Fixes

-   **dependency:** upgrade validator ([#&#8203;13350](https://togithub.com/sequelize/sequelize/issues/13350)) ([56bb1d6](https://togithub.com/sequelize/sequelize/commit/56bb1d6ef9827f604d7bcef945abb7e213f2322d))

### [`v6.6.4`](https://togithub.com/sequelize/sequelize/releases/tag/v6.6.4)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.6.2...v6.6.4)

##### Bug Fixes

-   **typings**: make `Transactionable` compatible with `TransactionOptions` ([#&#8203;13334](https://togithub.com/sequelize/sequelize/issues/13334)) ([cd2de40](https://togithub.com/sequelize/sequelize/commit/cd2de40))
-   **utils**: clone attributes before mutating them ([#&#8203;13226](https://togithub.com/sequelize/sequelize/issues/13226)) ([1a16b91](https://togithub.com/sequelize/sequelize/commit/1a16b91))
-   **data-types**: use proper field name for `ARRAY(ENUM)` ([#&#8203;13210](https://togithub.com/sequelize/sequelize/issues/13210)) ([1cfbd33](https://togithub.com/sequelize/sequelize/commit/1cfbd33))
-   **typings**: fix `ignoreDuplicates` option ([#&#8203;13220](https://togithub.com/sequelize/sequelize/issues/13220)) ([b33d78e](https://togithub.com/sequelize/sequelize/commit/b33d78e))
-   **typings**: allow `schema` for queryInterface methods ([#&#8203;13223](https://togithub.com/sequelize/sequelize/issues/13223)) ([6b0b532](https://togithub.com/sequelize/sequelize/commit/6b0b532))
-   **typings**: restrict update typings ([#&#8203;13216](https://togithub.com/sequelize/sequelize/issues/13216)) ([63ceb73](https://togithub.com/sequelize/sequelize/commit/63ceb73))
-   **typings**: `returning` can specify column names ([#&#8203;13215](https://togithub.com/sequelize/sequelize/issues/13215)) ([143cc84](https://togithub.com/sequelize/sequelize/commit/143cc84))
-   **typings**: model init returns model class, not instance ([#&#8203;13214](https://togithub.com/sequelize/sequelize/issues/13214)) ([8f2a0d5](https://togithub.com/sequelize/sequelize/commit/8f2a0d5))
-   **plurals**: bump inflection dependency ([#&#8203;13260](https://togithub.com/sequelize/sequelize/issues/13260)) ([deeb5c6](https://togithub.com/sequelize/sequelize/commit/deeb5c6))
-   **bulk-create**: `ON CONFLICT` with unique index ([#&#8203;13345](https://togithub.com/sequelize/sequelize/issues/13345)) ([6dcb565](https://togithub.com/sequelize/sequelize/commit/6dcb565))

### [`v6.6.2`](https://togithub.com/sequelize/sequelize/releases/tag/v6.6.2)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.6.1...v6.6.2)

##### Bug Fixes

-   **types:** fix `Model.prototype.previous()` ([#&#8203;13042](https://togithub.com/sequelize/sequelize/issues/13042)) ([5b16b32](https://togithub.com/sequelize/sequelize/commit/5b16b32259f0599a6af2d1eb625622da9054265e))

### [`v6.6.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.6.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.6.0...v6.6.1)

##### Bug Fixes

-   **query-generator:** use `AND` in sql for `not`/`between` ([#&#8203;13043](https://togithub.com/sequelize/sequelize/issues/13043)) ([a663c54](https://togithub.com/sequelize/sequelize/commit/a663c54989de6dc873fdc1825d77e3e9731451ad))
-   **sqlite:** retrieve primary key on upsert ([#&#8203;12991](https://togithub.com/sequelize/sequelize/issues/12991)) ([023e1d9](https://togithub.com/sequelize/sequelize/commit/023e1d9aefe10d3c708f1580a979fb2b754bd0d3))
-   **types:** allow `(keyof TAttributes)[]` in `UpdateOptions.returning` ([#&#8203;13130](https://togithub.com/sequelize/sequelize/issues/13130)) ([97ba242](https://togithub.com/sequelize/sequelize/commit/97ba2422f2b14f100e202b86e07c6f13cf926e38))
-   **types:** models with attributes couldn't be used in some cases ([#&#8203;13010](https://togithub.com/sequelize/sequelize/issues/13010)) ([de5f21d](https://togithub.com/sequelize/sequelize/commit/de5f21dce6e3324f370d578a29b3ec94632e7b5d))
-   **types:** remove `string` from `Order` type ([#&#8203;13057](https://togithub.com/sequelize/sequelize/issues/13057)) ([ac39f8a](https://togithub.com/sequelize/sequelize/commit/ac39f8ac753d2d445b115b8c79dc47e24fd112a5))

### [`v6.6.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.6.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.5.1...v6.6.0)

##### Bug Fixes

-   **types:** allow `sequelize.col` in `attributes` ([#&#8203;13105](https://togithub.com/sequelize/sequelize/issues/13105)) ([3fd64cb](https://togithub.com/sequelize/sequelize/commit/3fd64cbdfb882b1fb14124b72de62791b2c9c4a5))
-   **types:** allow bigints in `WhereValue` ([#&#8203;13028](https://togithub.com/sequelize/sequelize/issues/13028)) ([8892507](https://togithub.com/sequelize/sequelize/commit/88925077eba182814af2ec8f6fa6674ae1ee5b15))
-   **types:** decapitalize `queryGenerator` property ([#&#8203;13126](https://togithub.com/sequelize/sequelize/issues/13126)) ([9cb4d7f](https://togithub.com/sequelize/sequelize/commit/9cb4d7f37b3caa707e31574db8a81feb2bd801c0))
-   **types:** fix `Model#previous` type ([#&#8203;13106](https://togithub.com/sequelize/sequelize/issues/13106)) ([466e361](https://togithub.com/sequelize/sequelize/commit/466e361ed495f44efa8aa98aa83a5385c7735d74))
-   **types:** fix `ValidationErrorItem` types ([#&#8203;13108](https://togithub.com/sequelize/sequelize/issues/13108)) ([e35a9bf](https://togithub.com/sequelize/sequelize/commit/e35a9bf58b3eb52f3c4d0e2650dc671182f83bff))

##### Features

-   **add-constraint:** add `deferrable` option ([#&#8203;13096](https://togithub.com/sequelize/sequelize/issues/13096)) ([f98bd7e](https://togithub.com/sequelize/sequelize/commit/f98bd7ed0e0d2bafcb593ccb1755f88c9ae18f37))

### [`v6.5.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.5.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.5.0...v6.5.1)

##### Bug Fixes

-   **mysql:** release connection on deadlocks ([#&#8203;13102](https://togithub.com/sequelize/sequelize/issues/13102)) ([6388507](https://togithub.com/sequelize/sequelize/commit/6388507ebd916efe6adf3e6a94a4c5ce235dee2a))
    -   Note: this complements the work done in 6.5.0, fixing another situation not covered by it with MySQL.
-   **types:** allow transaction to be `null` ([#&#8203;13093](https://togithub.com/sequelize/sequelize/issues/13093)) ([ced4dc7](https://togithub.com/sequelize/sequelize/commit/ced4dc785f24ab1be167d75e50289c1316053e20))

### [`v6.5.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.5.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.4.0...v6.5.0)

[Second release in 2021! :tada:](https://togithub.com/sequelize/sequelize/issues/12956)

##### Bug Fixes

-   **mysql, mariadb:** release connection on deadlocks ([#&#8203;12841](https://togithub.com/sequelize/sequelize/issues/12841)) ([c77b1f3](https://togithub.com/sequelize/sequelize/commit/c77b1f3a6c4840e4e846042c9c330dba2408b86c))
-   **types:** allow changing values on before hooks ([#&#8203;12970](https://togithub.com/sequelize/sequelize/issues/12970)) ([e5b8929](https://togithub.com/sequelize/sequelize/commit/e5b8929d14282c1a2017f5bb4baf3f4721311219))
-   **types:** typo in sequelize.js and sequelize.d.ts ([#&#8203;12975](https://togithub.com/sequelize/sequelize/issues/12975)) ([2fe980e](https://togithub.com/sequelize/sequelize/commit/2fe980e2bc3f495ed1ccdc9ee2debb112cd3ddd5))

##### Features

-   **postgres:** add TSVECTOR datatype and `@@&#8203;` operator ([#&#8203;12955](https://togithub.com/sequelize/sequelize/issues/12955)) ([e45df29](https://togithub.com/sequelize/sequelize/commit/e45df29dd8a65fcb9d11b654e43f8553924b0d8d))

### [`v6.4.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.4.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.3.5...v6.4.0)

[First release in 2021! :tada:](https://togithub.com/sequelize/sequelize/issues/12956)

##### Bug Fixes

-   **types:** better support for readonly arrays ([287607a](https://togithub.com/sequelize/sequelize/commit/287607a03ad5dc511fbd65c48ec72e397224c1ff))
-   **types:** remove part forgotten in [#&#8203;12175](https://togithub.com/sequelize/sequelize/issues/12175) ([2249ded](https://togithub.com/sequelize/sequelize/commit/2249ded161755ed6d36bbfd044d00e51bb3f559e))

##### Features

-   **query-interface:** support composite foreign keys ([#&#8203;12456](https://togithub.com/sequelize/sequelize/issues/12456)) ([9ecebef](https://togithub.com/sequelize/sequelize/commit/9ecebef5f29747091e784bf41341e9b9d7a3e671))

### [`v6.3.5`](https://togithub.com/sequelize/sequelize/releases/tag/v6.3.5)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.3.4...v6.3.5)

##### Bug Fixes

-   **truncate:** fix missing `await` in truncate all models with cascade ([#&#8203;12664](https://togithub.com/sequelize/sequelize/issues/12664)) ([933b3f6](https://togithub.com/sequelize/sequelize/commit/933b3f62640e218587d34ec141029b2416ff7845))

### [`v6.3.4`](https://togithub.com/sequelize/sequelize/releases/tag/v6.3.4)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.3.3...v6.3.4)

##### Bug Fixes

-   **model:** handle `true` timestamp fields correctly ([#&#8203;12580](https://togithub.com/sequelize/sequelize/issues/12580)) ([#&#8203;12581](https://togithub.com/sequelize/sequelize/issues/12581)) ([490db41](https://togithub.com/sequelize/sequelize/commit/490db410e33241158f7d8a7cdeffbf3766af731c))

### [`v6.3.3`](https://togithub.com/sequelize/sequelize/releases/tag/v6.3.3)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.3.2...v6.3.3)

##### Bug Fixes

-   mark database drivers as optional peer dependencies ([#&#8203;12484](https://togithub.com/sequelize/sequelize/issues/12484)) ([ec2af0d](https://togithub.com/sequelize/sequelize/commit/ec2af0d926cda598c938c7fd4c799e6e2331f9e7))

### [`v6.3.2`](https://togithub.com/sequelize/sequelize/releases/tag/v6.3.2)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.3.1...v6.3.2)

##### Bug Fixes

-   **upsert:** set isNewRecord to false when upserting ([#&#8203;12447](https://togithub.com/sequelize/sequelize/issues/12447)) ([#&#8203;12485](https://togithub.com/sequelize/sequelize/issues/12485)) ([96f4166](https://togithub.com/sequelize/sequelize/commit/96f4166afc86dc773ac0886bf10d82d446cfa0e1))

### [`v6.3.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.3.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.3.0...v6.3.1)

##### Bug Fixes

-   use lodash \_baseIsNative directly instead of \_.isNative ([#&#8203;12358](https://togithub.com/sequelize/sequelize/issues/12358)) ([#&#8203;12475](https://togithub.com/sequelize/sequelize/issues/12475)) ([#&#8203;12480](https://togithub.com/sequelize/sequelize/issues/12480)) ([631f555](https://togithub.com/sequelize/sequelize/commit/631f555cc92b9629a8c7678e330e3492cdee31c7))

### [`v6.3.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.3.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.2.4...v6.3.0)

##### Bug Fixes

-   **mssql:** upsert query with falsey values ([#&#8203;12453](https://togithub.com/sequelize/sequelize/issues/12453)) ([#&#8203;12459](https://togithub.com/sequelize/sequelize/issues/12459)) ([4d82907](https://togithub.com/sequelize/sequelize/commit/4d82907d56ef28f6ddd5a29c16bac7a64271ff91))

##### Features

-   **types:** Add ModelDefined type as syntactic sugar ([#&#8203;12445](https://togithub.com/sequelize/sequelize/issues/12445)) ([5cabcbc](https://togithub.com/sequelize/sequelize/commit/5cabcbc87fbc12d234fbc1d67632a86e6d975f39))

### [`v6.2.4`](https://togithub.com/sequelize/sequelize/releases/tag/v6.2.4)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.2.3...v6.2.4)

##### Bug Fixes

-   **types:** update SaveOptions type to include Hookable ([#&#8203;12441](https://togithub.com/sequelize/sequelize/issues/12441)) ([#&#8203;12444](https://togithub.com/sequelize/sequelize/issues/12444)) ([9a45509](https://togithub.com/sequelize/sequelize/commit/9a45509e3f4b23b957a195190dd989ea33cae8d8))

### [`v6.2.3`](https://togithub.com/sequelize/sequelize/releases/tag/v6.2.3)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.2.2...v6.2.3)

##### Bug Fixes

-   **sqlite:** describeTable now returns unique constraint and references ([#&#8203;12420](https://togithub.com/sequelize/sequelize/issues/12420)) ([2de3377](https://togithub.com/sequelize/sequelize/commit/2de3377dab13959c4073515ce29287de14d4221e))

### [`v6.2.2`](https://togithub.com/sequelize/sequelize/releases/tag/v6.2.2)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.2.1...v6.2.2)

##### Bug Fixes

-   **types:** fixed types for model.init and sequelize.define; update docs ([#&#8203;12435](https://togithub.com/sequelize/sequelize/issues/12435)) ([9c446f9](https://togithub.com/sequelize/sequelize/commit/9c446f9c96dcf00147a296b09263a73b9b26b03e))

### [`v6.2.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.2.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.2.0...v6.2.1)

##### Bug Fixes

-   **mssql:** insert/upsert operations do not return all fields ([#&#8203;12433](https://togithub.com/sequelize/sequelize/issues/12433)) ([aeb318a](https://togithub.com/sequelize/sequelize/commit/aeb318aeaacbc471690d116bf127a059512f21f9))

### [`v6.2.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.2.0)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.1.1...v6.2.0)

##### Bug Fixes

-   **types:** references support for string ([#&#8203;12407](https://togithub.com/sequelize/sequelize/issues/12407)) ([962ed3c](https://togithub.com/sequelize/sequelize/commit/962ed3ca66725e8eef2773e958d8c67a9ed5ce9a))

##### Features

-   **types:** added optional stricter typing for Model attributes ([#&#8203;12405](https://togithub.com/sequelize/sequelize/issues/12405)) ([871157b](https://togithub.com/sequelize/sequelize/commit/871157bc07ccdbf2445581b8becd297ede887c22))

### [`v6.1.1`](https://togithub.com/sequelize/sequelize/releases/tag/v6.1.1)

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v6.1.0...v6.1.1)

##### Bug Fixes

-   **mssql:** returning data for bulkUpdate ([#&#8203;12413](https://togithub.com/sequelize/sequelize/issues/12413)) ([e36212c](https://togithub.com/sequelize/sequelize/commit/e36212c8731634e64dc4a805c64d2aa11b756492))

### [`v6.1.0`](https://togithub.com/sequelize/sequelize/releases/tag/v6.1.0): v6

[Compare Source](https://togithub.com/sequelize/sequelize/compare/v5.22.5...v6.1.0)

Sequelize v6 is the next major release after v5. Below is a list of breaking changes to help you upgrade.

#### Breaking Changes

##### Support for Node 10 and up

Sequelize v6 will only support Node 10 and up [#&#8203;10821](https://togithub.com/sequelize/sequelize/issues/10821).

##### CLS

You should now use [cls-hooked](https://togithub.com/Jeff-Lewis/cls-hooked) package for CLS support.

```js
  const cls = require('cls-hooked');
  const namespace = cls.createNamespace('....');
  const Sequelize = require('sequelize');

  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 for version table.

Sequelize
  • Bluebird has been removed. Internally all methods are now using async/await. Public API now returns native promises. Thanks to Andy Edwards for this refactor work.
  • Sequelize.Promise is no longer available.
  • sequelize.import method has been removed.
Mode

Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 1400e39 to 51d1b62 Compare July 29, 2021 17:52
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Jul 29, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 51d1b62 to 3e5847e Compare July 30, 2021 07:14
@renovate renovate bot changed the title Update dependency sequelize to v4 [SECURITY] Update dependency sequelize to v6 [SECURITY] Jul 30, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 3e5847e to 417fa57 Compare July 30, 2021 08:46
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Jul 30, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 417fa57 to a0f5f8d Compare August 4, 2021 10:35
@renovate renovate bot changed the title Update dependency sequelize to v4 [SECURITY] Update dependency sequelize to v6 [SECURITY] Aug 4, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from a0f5f8d to b16cb0f Compare August 4, 2021 11:42
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Aug 4, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from b16cb0f to 685e525 Compare August 10, 2021 07:41
@renovate renovate bot changed the title Update dependency sequelize to v4 [SECURITY] Update dependency sequelize to v6 [SECURITY] Aug 10, 2021
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v6 [SECURITY] - autoclosed Aug 10, 2021
@renovate renovate bot closed this Aug 10, 2021
@renovate renovate bot deleted the renovate/npm-sequelize-vulnerability branch August 10, 2021 09:21
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] - autoclosed Update dependency sequelize to v6 [SECURITY] Aug 10, 2021
@renovate renovate bot restored the renovate/npm-sequelize-vulnerability branch August 10, 2021 11:19
@renovate renovate bot reopened this Aug 10, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch 2 times, most recently from 44da980 to c19463e Compare August 10, 2021 13:03
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Aug 10, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from c19463e to ed1e3bf Compare August 12, 2021 12:09
@renovate renovate bot changed the title Update dependency sequelize to v4 [SECURITY] Update dependency sequelize to v6 [SECURITY] Aug 12, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from ed1e3bf to 2cd6359 Compare August 12, 2021 13:20
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Aug 12, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 2cd6359 to 2292aae Compare August 13, 2021 13:30
@renovate renovate bot changed the title Update dependency sequelize to v4 [SECURITY] Update dependency sequelize to v6 [SECURITY] Aug 13, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 2292aae to 757a8f9 Compare August 13, 2021 15:16
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Aug 13, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 757a8f9 to 98a48e9 Compare August 16, 2021 12:59
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 0c29433 to 0f2eb9e Compare September 6, 2021 11:10
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Sep 6, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 0f2eb9e to edb11e6 Compare September 9, 2021 08:46
@renovate renovate bot changed the title Update dependency sequelize to v4 [SECURITY] Update dependency sequelize to v6 [SECURITY] Sep 9, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from edb11e6 to 2ee0ce7 Compare September 9, 2021 09:54
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Sep 9, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 2ee0ce7 to 65734b6 Compare September 9, 2021 11:26
@renovate renovate bot changed the title Update dependency sequelize to v4 [SECURITY] Update dependency sequelize to v6 [SECURITY] Sep 9, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 65734b6 to ebcb819 Compare September 9, 2021 13:25
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Sep 9, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from ebcb819 to 731d4a3 Compare September 13, 2021 09:11
@renovate renovate bot changed the title Update dependency sequelize to v4 [SECURITY] Update dependency sequelize to v6 [SECURITY] Sep 13, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 731d4a3 to 53fc191 Compare September 13, 2021 11:28
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Sep 13, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 53fc191 to 6c71617 Compare September 16, 2021 12:23
@renovate renovate bot changed the title Update dependency sequelize to v4 [SECURITY] Update dependency sequelize to v6 [SECURITY] Sep 16, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 6c71617 to 7fcab0f Compare September 16, 2021 14:24
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Sep 16, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 7fcab0f to c5605b6 Compare September 22, 2021 11:22
@renovate renovate bot changed the title Update dependency sequelize to v4 [SECURITY] Update dependency sequelize to v6 [SECURITY] Sep 22, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from c5605b6 to 866fa97 Compare September 22, 2021 12:47
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Sep 22, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 866fa97 to c79c09f Compare September 23, 2021 13:44
@renovate renovate bot changed the title Update dependency sequelize to v4 [SECURITY] Update dependency sequelize to v6 [SECURITY] Sep 23, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from c79c09f to 0dc11e0 Compare September 23, 2021 14:44
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4 [SECURITY] Sep 23, 2021
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from 0dc11e0 to e68179f Compare October 20, 2021 05:23
@renovate renovate bot changed the title Update dependency sequelize to v4 [SECURITY] Update dependency sequelize to v6 [SECURITY] Oct 20, 2021
@egandro egandro closed this Dec 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants