iron-session 6.0.3 → 6.0.4

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 -2
  2. package/package.json +14 -1
package/README.md CHANGED
@@ -193,8 +193,7 @@ async function loginRoute(req, res) {
193
193
  };
194
194
  await req.session.save();
195
195
  res.send({ ok: true });
196
- }
197
- );
196
+ }
198
197
  ```
199
198
 
200
199
  ```ts
package/package.json CHANGED
@@ -1,7 +1,20 @@
1
1
  {
2
2
  "name": "iron-session",
3
- "version": "6.0.3",
3
+ "version": "6.0.4",
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
+ "keywords": [
6
+ "Next.js",
7
+ "session",
8
+ "cookies",
9
+ "login",
10
+ "auth",
11
+ "Express",
12
+ "NestJS"
13
+ ],
14
+ "bugs": {
15
+ "url": "https://github.com/vvo/iron-session/issues"
16
+ },
17
+ "repository": "https://github.com/vvo/iron-session.git",
5
18
  "license": "MIT",
6
19
  "author": "Vincent Voyer <vincent@codeagain.com>",
7
20
  "exports": {