@scayle/h3-session 0.6.1 → 0.6.3
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 +15 -1
- package/README.md +0 -9
- package/package.json +24 -25
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @scayle/h3-session
|
|
2
2
|
|
|
3
|
+
## 0.6.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependency `defu@^6.1.4` to `defu@catalog:`
|
|
8
|
+
- Updated dependency `uncrypto@^0.1.3` to `uncrypto@catalog:`
|
|
9
|
+
- This is an internal change only. The packages now use the PNPM catalog feature to ensure dependencies use the identical version across packages.
|
|
10
|
+
|
|
11
|
+
## 0.6.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Cleaned up README.md and added CONTRIBUTING.md. No functional changes.
|
|
16
|
+
|
|
3
17
|
## 0.6.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -16,7 +30,7 @@
|
|
|
16
30
|
|
|
17
31
|
### Patch Changes
|
|
18
32
|
|
|
19
|
-
- When a sessionID exists, but there is no session data, re-use the sessionID instead of generating both new data and a new ID. This enables proper functioning of the `
|
|
33
|
+
- When a sessionID exists, but there is no session data, re-use the sessionID instead of generating both new data and a new ID. This enables proper functioning of the `saveUninitialized` configuration.
|
|
20
34
|
- Fix the `clear()` method on `UnstorageSessionStore` not clearing sessions
|
|
21
35
|
|
|
22
36
|
## 0.5.0
|
package/README.md
CHANGED
|
@@ -143,12 +143,3 @@ declare module '@scayle/h3-session' {
|
|
|
143
143
|
## License
|
|
144
144
|
|
|
145
145
|
Licensed under the [MIT License](https://opensource.org/license/mit/)
|
|
146
|
-
|
|
147
|
-
<!-- Badges -->
|
|
148
|
-
|
|
149
|
-
[npm-version-src]: https://img.shields.io/npm/v/@scayle/h3-session/latest.svg?style=flat&colorA=18181B&colorB=28CF8D
|
|
150
|
-
[npm-version-href]: https://npmjs.com/package/@scayle/h3-session
|
|
151
|
-
[npm-downloads-src]: https://img.shields.io/npm/dm/@scayle/h3-session.svg?style=flat&colorA=18181B&colorB=28CF8D
|
|
152
|
-
[npm-downloads-href]: https://npmjs.com/package/@scayle/h3-session
|
|
153
|
-
[license-src]: https://img.shields.io/npm/l/@scayle/h3-session.svg?style=flat&colorA=18181B&colorB=28CF8D
|
|
154
|
-
[license-href]: https://npmjs.com/package/@scayle/h3-session
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/h3-session",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "Persistent sessions for h3",
|
|
5
5
|
"author": "SCAYLE Commerce Engine",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,6 +23,28 @@
|
|
|
23
23
|
"CHANGELOG.md",
|
|
24
24
|
"dist/**"
|
|
25
25
|
],
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"h3": "^1.10.0"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"defu": "^6.1.4",
|
|
31
|
+
"uncrypto": "^0.1.3",
|
|
32
|
+
"unstorage": "^1.10.2"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@arethetypeswrong/cli": "0.18.2",
|
|
36
|
+
"@vitest/coverage-v8": "4.0.16",
|
|
37
|
+
"cookie-es": "2.0.0",
|
|
38
|
+
"dprint": "0.50.2",
|
|
39
|
+
"eslint-formatter-gitlab": "7.0.1",
|
|
40
|
+
"eslint": "9.39.2",
|
|
41
|
+
"h3": "1.15.4",
|
|
42
|
+
"typescript": "5.9.3",
|
|
43
|
+
"unbuild": "3.6.1",
|
|
44
|
+
"vitest": "4.0.16",
|
|
45
|
+
"@scayle/eslint-config-storefront": "4.7.18",
|
|
46
|
+
"@scayle/vitest-config-storefront": "1.0.0"
|
|
47
|
+
},
|
|
26
48
|
"scripts": {
|
|
27
49
|
"build": "unbuild",
|
|
28
50
|
"verify-packaging": "attw --pack . --profile esm-only",
|
|
@@ -35,28 +57,5 @@
|
|
|
35
57
|
"test:ci": "vitest --run --coverage --reporter=default --reporter=junit --outputFile=./coverage/junit.xml",
|
|
36
58
|
"test:watch": "vitest watch",
|
|
37
59
|
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
38
|
-
},
|
|
39
|
-
"peerDependencies": {
|
|
40
|
-
"h3": "^1.10.0"
|
|
41
|
-
},
|
|
42
|
-
"dependencies": {
|
|
43
|
-
"defu": "^6.1.4",
|
|
44
|
-
"uncrypto": "^0.1.3",
|
|
45
|
-
"unstorage": "^1.10.2"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@arethetypeswrong/cli": "0.17.4",
|
|
49
|
-
"@scayle/eslint-config-storefront": "4.5.0",
|
|
50
|
-
"cookie-es": "2.0.0",
|
|
51
|
-
"dprint": "0.49.1",
|
|
52
|
-
"eslint": "9.25.1",
|
|
53
|
-
"eslint-formatter-gitlab": "6.0.0",
|
|
54
|
-
"h3": "1.15.1",
|
|
55
|
-
"typescript": "5.8.3",
|
|
56
|
-
"unbuild": "3.5.0",
|
|
57
|
-
"vitest": "3.1.2"
|
|
58
|
-
},
|
|
59
|
-
"volta": {
|
|
60
|
-
"node": "22.14.0"
|
|
61
60
|
}
|
|
62
|
-
}
|
|
61
|
+
}
|