@scayle/h3-session 0.6.2 → 0.7.0

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/CHANGELOG.md +16 -0
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @scayle/h3-session
2
2
 
3
+ ## 0.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - All packages now require Node.js 22 or later, in line with the current Node.js LTS release schedule. See the [Node.js release schedule](https://nodejs.org/en/about/previous-releases#release-schedule) for details.
8
+
9
+ If your project is still running an older Node.js version, now is a good time to upgrade to Node.js 22 at minimum, or ideally Node.js 24, for the latest security patches and stability improvements.
10
+
11
+ ## 0.6.3
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependency `defu@^6.1.4` to `defu@catalog:`
16
+ - Updated dependency `uncrypto@^0.1.3` to `uncrypto@catalog:`
17
+ - This is an internal change only. The packages now use the PNPM catalog feature to ensure dependencies use the identical version across packages.
18
+
3
19
  ## 0.6.2
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/h3-session",
3
- "version": "0.6.2",
3
+ "version": "0.7.0",
4
4
  "description": "Persistent sessions for h3",
5
5
  "author": "SCAYLE Commerce Engine",
6
6
  "license": "MIT",
@@ -23,31 +23,31 @@
23
23
  "CHANGELOG.md",
24
24
  "dist/**"
25
25
  ],
26
+ "engines": {
27
+ "node": ">= 22.0.0"
28
+ },
26
29
  "peerDependencies": {
27
30
  "h3": "^1.10.0"
28
31
  },
29
32
  "dependencies": {
30
- "defu": "^6.1.4",
33
+ "defu": "^6.1.7",
31
34
  "uncrypto": "^0.1.3",
32
35
  "unstorage": "^1.10.2"
33
36
  },
34
37
  "devDependencies": {
35
38
  "@arethetypeswrong/cli": "0.18.2",
36
- "@vitest/coverage-v8": "3.2.4",
37
- "cookie-es": "2.0.0",
38
- "dprint": "0.50.2",
39
- "eslint-formatter-gitlab": "6.0.1",
40
- "eslint": "9.38.0",
41
- "h3": "1.15.4",
39
+ "@vitest/coverage-v8": "4.1.2",
40
+ "cookie-es": "2.0.1",
41
+ "dprint": "0.53.2",
42
+ "eslint-formatter-gitlab": "7.0.1",
43
+ "eslint": "10.2.0",
44
+ "h3": "1.15.10",
42
45
  "typescript": "5.9.3",
43
46
  "unbuild": "3.6.1",
44
- "vitest": "3.2.4",
45
- "@scayle/eslint-config-storefront": "4.7.11",
47
+ "vitest": "4.1.2",
48
+ "@scayle/eslint-config-storefront": "4.8.0",
46
49
  "@scayle/vitest-config-storefront": "1.0.0"
47
50
  },
48
- "volta": {
49
- "node": "22.21.0"
50
- },
51
51
  "scripts": {
52
52
  "build": "unbuild",
53
53
  "verify-packaging": "attw --pack . --profile esm-only",