Skip to content

Tags: olmg/sequelize

Tags

v4.6.0

Toggle v4.6.0's commit message
feat(dependency): updated dependencies (sequelize#8159)

[email protected]
[email protected]
[email protected]

v4.5.0

Toggle v4.5.0's commit message
build: use node 4 for release

v4.4.10

Toggle v4.4.10's commit message
fix(mysql): mark closed sockets invalid (sequelize#8112)

v4.4.9

Toggle v4.4.9's commit message
fix: use non public schema from connect options if models have no sch…

…ema (sequelize#7705)

v4.4.8

Toggle v4.4.8's commit message
fix: quote tableName alias as an identifier as it can contain schema (s…

…equelize#8038)

v4.4.7

Toggle v4.4.7's commit message
fix(validations): empty not null validation message (sequelize#7892)

v4.4.6

Toggle v4.4.6's commit message
fix(model): improve warning message when unexpected attribute passed …

…to finder options (sequelize#7894)

v4.4.5

Toggle v4.4.5's commit message
fix(hooks): removeHook should only remove the specified hook (sequeli…

…ze#8095)

previously it would also remove all unnamed hooks of the same type

v4.4.4

Toggle v4.4.4's commit message
build: use plain deploy

v4.4.2

Toggle v4.4.2's commit message
fix(connection): pg connection initialization regression (sequelize#7986

)

In case the initial query contains multiple statements in the postgres connection manager, the result will be an array which is not being handled here. Since we are only interested in the rows from the very last statement, we can skip the rest.

Closes sequelize#7985