Skip to content

Releases: natesilva/koa-generic-session-sequelize

v2.2.0

20 Mar 17:33
bd18073
Compare
Choose a tag to compare
  • Updated to support Sequelize v5
  • Dev dependencies updated to latest versions and tested
  • .npmignore for cleaner/smaller package size

2.0.1

07 Jun 23:39
cd169f0
Compare
Choose a tag to compare
  • Update to support new Sequelize symbolic operators. For example: { where: { [Op.lt]: 42 } } instead of { where: { $lt: 42 } }. See Sequelize documentation for more info.
  • This is a breaking change because it no longer works with Sequelize versions older than 4.12.0.

1.0.7

08 Dec 01:10
808067d
Compare
Choose a tag to compare

Fix ttl bug in koa-generic-session support.

1.0.5

22 Nov 21:43
06aa6e5
Compare
Choose a tag to compare

release 1.0.5 for npm

1.0.4

22 Nov 21:41
6b018ac
Compare
Choose a tag to compare

Add a TypeScript .d.ts definitions file.

1.0.3

17 Nov 16:07
Compare
Choose a tag to compare

Code cleanup and other minor changes.

1.0.2

16 Nov 21:44
Compare
Choose a tag to compare

One breaking change:

  • Function-style instantiation is no longer supported. Use new when instantiating the class:
const store1 = new SequelizeStore();   // correct
const store2 = SequelizeStore();       // incorrect!

Other changes:

  • Updated code to ES6 style.

1.0.1

15 Nov 21:50
Compare
Choose a tag to compare

Changes for testing and debugging:

  • Fix a Windows error when unit testing SQLite.
  • Small tweaks for debugging.
  • Explicitly specify a Unicode charset when creating the test table for MySQL.

1.0.0

15 Nov 19:29
Compare
Choose a tag to compare

Initial release.