Skip to content

Commit

Permalink
fix: outaded link on unsupported engines warning (#16435)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hornwitser committed Aug 29, 2023
1 parent 3f2507b commit b376ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/utils/deprecations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const noop = () => { /* noop */ };

export const noTrueLogging = deprecate(noop, 'The logging-option should be either a function or false. Default: console.log', 'SEQUELIZE0002');
export const noDoubleNestedGroup = deprecate(noop, 'Passing a double nested nested array to `group` is unsupported and will be removed in v6.', 'SEQUELIZE0005');
export const unsupportedEngine = deprecate(noop, 'This database engine version is not supported, please update your database server. More information https://github.com/sequelize/sequelize/blob/main/ENGINE.md', 'SEQUELIZE0006');
export const unsupportedEngine = deprecate(noop, 'This database engine version is not supported, please update your database server. More information https://sequelize.org/releases/', 'SEQUELIZE0006');
export const useErrorCause = deprecate(noop, 'The "parent" and "original" properties in Sequelize errors have been replaced with the native "cause" property. Use that one instead.', 'SEQUELIZE0007');
export const scopeRenamedToWithScope = deprecate(noop, 'Model.scope has been renamed to Model.withScope, and Model.unscoped has been renamed to Model.withoutScope', 'SEQUELIZE0008');
export const schemaRenamedToWithSchema = deprecate(noop, 'Model.schema has been renamed to Model.withSchema', 'SEQUELIZE0009');
Expand Down

0 comments on commit b376ac2

Please sign in to comment.