iron-session 6.1.1 → 6.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -302,7 +302,7 @@ async function loginRoute(req, res) {
302
302
 
303
303
  import { withSessionSsr } from "lib/withSession";
304
304
 
305
- export const getServerSideProps = withIronSessionSsr(
305
+ export const getServerSideProps = withSessionSsr(
306
306
  async function getServerSideProps({ req }) {
307
307
  const user = req.session.user;
308
308
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iron-session",
3
- "version": "6.1.1",
3
+ "version": "6.1.2",
4
4
  "description": "Node.js stateless session utility using signed and encrypted cookies to store data. Works with Next.js, Express, NestJs, Fastify, and any Node.js HTTP framework.",
5
5
  "keywords": [
6
6
  "Next.js",