next-session
next-session copied to clipboard
Simple promise-based session middleware for Next.js, micro, Express, and more
Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...
in my server, i installed the redis with requirepass, now i used next.js manager session, but it's always failed, i can't set the password in the next-session's options.
Bumps [json5](https://github.com/json5/json5) from 2.1.3 to 2.2.3. Release notes Sourced from json5's releases. v2.2.3 Fix: [email protected] is now the 'latest' release according to npm instead of v1.0.2. (#299) v2.2.2 Fix: Properties...
In general it is recommended after a user changes their password to invalidate the session and issue a new one, but this doesn't seem to be working with the way...
As title says, are you still maintaining this module? The last release was over a year ago
See https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/
refs: #369 ## About - Add `maxAgeInMs` option, refs: #369 - Keeps the internal `session.cookie.maxAge` in milliseconds so that expire is handled correctly by the express-session store adapter. - `maxAge`...
[To prevent session fixation attacks,](https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html#renew-the-session-id-after-any-privilege-level-change) it would be useful to have an API to regenerate session ID. `session.regenerate()` API replaces the current session ID with a new generated one. Return...