Express Mysql Session Versions Save

A MySQL session store for the express framework in node

v3.0.2

3 weeks ago
  • Updated dependencies

v3.0.1

1 month ago
  • Updated dependencies

v3.0.0

1 year ago
  • Added "disableTouch" option.
  • Switched MySQL client dependency from mysql to mysql2 module.
  • General clean-up, including removal of several dependencies.
  • express-session module no longer included as a direct dependency.
  • Upgraded remaining dependencies to latest versions.
  • Breaking API changes:
    • Old constructor usage from "0.x" version no longer supported - e.g. must now pass session module - require('express-mysql-session')(session)
    • Constructor no longer takes a callback. Use sessionStore.onReady() to get a promise which will resolve when the store is ready or reject on error.
    • See readme for latest usage details.

v2.1.8

2 years ago
  • Updated dependencies

v2.1.7

2 years ago
  • Updated dependencies

v2.1.6

3 years ago
  • Updated dependencies

v2.1.5

3 years ago
  • Updated dependencies

v2.1.4

4 years ago
  • Updated dependencies

v2.1.3

4 years ago
  • Update mysql module to "fix Amazon RDS profile for yaSSL MySQL servers with 2019 CA"; see here for more information.

v2.1.2

4 years ago
  • Fix for issue #97. The new default type for the session data field is now mediumtext. This will allow up to 16MB of data to be stored per session. Existing session database tables will keep the old behavior which was limited to 64KB of data per session.