Releases: mweibel/connect-session-sequelize
Releases · mweibel/connect-session-sequelize
add typescript definitions
thanks to @AlanMorel in #115.
note: please don't use this version as it doesn't actually change something. Use 7.0.3 instead.
Ignore failed promise when clearing expired sessions
fixed in #111. Thanks @TitaneBoy
Sequelize 6 support
Fix default table name when not specifying one
fixes an issue introduced in version 6.1.0. All users who upgraded to 6.1.0 should upgrade to it.
Add possibility to specify table name
Thanks to @durek1337 in #93, #85 got fixed.
Fix session sid length, remove deprecated function calls, require node 5
- Thanks @thomasamaddeo for fixing session.sid length in #76
- Thanks @pdl for replacing the deprecated
find
calls withfindOne
calls in #80 - Updated dependencies and removed support for node 5 in #81
Prevent crash on destroy method if global raw config is set
Version 5.2.1 - Prevent crash when configured with `raw: true`
This release fixes an issue when configuring the sequelize instance with raw: true
(#71).
Version 5.2.0 - disableTouch option
New option disableTouch
allows to stop updating the session in the DB on every request. Instead this should be done manually on a when needed basis. #70