You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
Sequelize now recommends that operator aliases be defined so as to prevent known security issues (read more here).
Sequelize now emits a warning if aliases are not defined. In order to suppress this warning and "follow the rules", the generator should include known aliases:
I don't think the adaptor needs to do anything - the only operator being referenced is $notIn. However, if we want we can create an alias for $nin and get rid of that section of code:
constoperatorsAliases={
...
$notIn: Op.notIn,$nin: Op.notIn,// this makes the non-standard $nin operator recognized by sequelize
...
};
Sequelize now recommends that operator aliases be defined so as to prevent known security issues (read more here).
Sequelize now emits a warning if aliases are not defined. In order to suppress this warning and "follow the rules", the generator should include known aliases:
The text was updated successfully, but these errors were encountered: