Next Iron Session Versions Save

🛠 Secure, stateless, and cookie-based session library for JavaScript

v4.1.8

3 years ago

4.1.8 (2020-08-14)

Bug Fixes

  • docs: Fix SSR acronym typo in README (ea44b09)

v4.1.7

3 years ago

4.1.7 (2020-06-09)

Bug Fixes

  • types: update password type to accept string or array of ids and passwords (#134) (9ef64bf)

v4.1.6

3 years ago

4.1.6 (2020-05-28)

Bug Fixes

  • compat: ensure Node.js version requirement (478cef5), closes #125

v4.1.5

3 years ago

4.1.5 (2020-05-26)

Bug Fixes

  • cookie: handle previously set-cookie headers (#117) (81c156d), closes #112

v4.1.4

3 years ago

4.1.4 (2020-05-26)

Bug Fixes

v4.1.3

3 years ago

4.1.3 (2020-05-26)

Bug Fixes

v4.1.2

4 years ago

4.1.2 (2020-05-08)

Bug Fixes

v4.1.1

4 years ago

4.1.1 (2020-05-08)

Bug Fixes

  • dx: Including index.d.ts into package.json (#97) (b2298e7)

v4.1.0

4 years ago

4.1.0 (2020-05-08)

Features

  • API: Add TypeScript declaration file (249049b)

v4.0.0

4 years ago

4.0.0 (2020-05-01)

Features

  • API: expose ironSession (express), applySession, cookieName required (5b7c3d1), closes #54 #54 #9 #41
  • API: remove setFlash (3320ccd), closes #53
  • cookieName: enforce cookieName option (c016fec), closes #54

BREAKING CHANGES

  • API: - req.session.setFlash was removed, if you were using this please comment on GitHub
  • API: - you need to import withIronSession as a named export: before: import withIronSession from "next-iron-session" after: import { withIronSession } from "next-iron-session"
  • cookieName: cookieName is now mandatory, to avoid issues of shared cookieNames in examples etc..