@scayle/h3-session 0.4.0 → 0.4.1

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @scayle/h3-session
2
2
 
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependency `defu@6.1.4` to `defu@^6.1.4`
8
+ - Updated dependency `uncrypto@0.1.3` to `uncrypto@^0.1.3`
9
+ - Updated dependency `unstorage@1.10.2` to `unstorage@^1.10.2`
10
+ - Updated dependency `zod@3.23.5` to `zod@^3.23.8`
11
+
3
12
  ## 0.4.0
4
13
 
5
14
  ### Minor Changes
package/README.md CHANGED
@@ -140,6 +140,10 @@ declare module '@scayle/h3-session' {
140
140
  }
141
141
  ```
142
142
 
143
+ ## License
144
+
145
+ Licensed under the [MIT License](https://opensource.org/license/mit/)
146
+
143
147
  <!-- Badges -->
144
148
 
145
149
  [npm-version-src]: https://img.shields.io/npm/v/@scayle/h3-session/latest.svg?style=flat&colorA=18181B&colorB=28CF8D
@@ -35,7 +35,7 @@ export class UnstorageSessionStore {
35
35
  try {
36
36
  item.cookie = CookieSchema.parse(item.cookie);
37
37
  }
38
- catch (e) {
38
+ catch {
39
39
  delete item.cookie;
40
40
  }
41
41
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/h3-session",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Persistent sessions for h3",
5
5
  "author": "SCAYLE Commerce Engine",
6
6
  "license": "MIT",
@@ -27,21 +27,20 @@
27
27
  "h3": "^1.10.0"
28
28
  },
29
29
  "dependencies": {
30
- "defu": "6.1.4",
31
- "uncrypto": "0.1.3",
32
- "unstorage": "1.10.2",
33
- "zod": "3.23.5"
30
+ "defu": "^6.1.4",
31
+ "uncrypto": "^0.1.3",
32
+ "unstorage": "^1.10.2",
33
+ "zod": "^3.23.8"
34
34
  },
35
35
  "devDependencies": {
36
- "@changesets/types": "6.0.0",
37
- "@scayle/eslint-config-storefront": "4.1.0",
38
- "dprint": "0.45.1",
39
- "eslint": "9.2.0",
36
+ "@scayle/eslint-config-storefront": "4.3.1",
37
+ "dprint": "0.47.2",
38
+ "eslint": "9.12.0",
40
39
  "eslint-formatter-gitlab": "5.1.0",
41
- "h3": "1.11.1",
42
- "typescript": "5.4.5"
40
+ "h3": "1.13.0",
41
+ "typescript": "5.6.3"
43
42
  },
44
43
  "volta": {
45
- "node": "20.12.2"
44
+ "node": "20.18.0"
46
45
  }
47
46
  }