@scayle/h3-session 0.7.0 → 0.7.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.
- package/CHANGELOG.md +12 -0
- package/package.json +10 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @scayle/h3-session
|
|
2
2
|
|
|
3
|
+
## 0.7.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated underlying minor dependencies. No behavior changes.
|
|
8
|
+
|
|
9
|
+
## 0.7.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependency `unstorage@^1.10.2` to `unstorage@catalog:`
|
|
14
|
+
|
|
3
15
|
## 0.7.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/h3-session",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "Persistent sessions for h3",
|
|
5
5
|
"author": "SCAYLE Commerce Engine",
|
|
6
6
|
"license": "MIT",
|
|
@@ -32,33 +32,27 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"defu": "^6.1.7",
|
|
34
34
|
"uncrypto": "^0.1.3",
|
|
35
|
-
"unstorage": "
|
|
35
|
+
"unstorage": "1.17.5"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@arethetypeswrong/cli": "0.18.2",
|
|
39
|
-
"@
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"eslint-formatter-gitlab": "7.0
|
|
43
|
-
"eslint": "10.
|
|
44
|
-
"h3": "1.15.
|
|
45
|
-
"typescript": "
|
|
39
|
+
"@scayle/eslint-config-storefront": "^4.8.0",
|
|
40
|
+
"@vitest/coverage-v8": "4.1.9",
|
|
41
|
+
"cookie-es": "3.1.1",
|
|
42
|
+
"eslint-formatter-gitlab": "7.2.0",
|
|
43
|
+
"eslint": "10.7.0",
|
|
44
|
+
"h3": "1.15.11",
|
|
45
|
+
"typescript": "6.0.3",
|
|
46
46
|
"unbuild": "3.6.1",
|
|
47
|
-
"vitest": "4.1.
|
|
48
|
-
"@scayle/eslint-config-storefront": "4.8.0",
|
|
47
|
+
"vitest": "4.1.10",
|
|
49
48
|
"@scayle/vitest-config-storefront": "1.0.0"
|
|
50
49
|
},
|
|
51
50
|
"scripts": {
|
|
52
51
|
"build": "unbuild",
|
|
53
52
|
"verify-packaging": "attw --pack . --profile esm-only",
|
|
54
|
-
"format": "dprint check",
|
|
55
|
-
"format:fix": "dprint fmt",
|
|
56
53
|
"lint": "eslint .",
|
|
57
54
|
"lint:ci": "eslint . --format gitlab",
|
|
58
55
|
"lint:fix": "eslint . --fix",
|
|
59
|
-
"test": "vitest run",
|
|
60
|
-
"test:ci": "vitest --run --coverage --reporter=default --reporter=junit --outputFile=./coverage/junit.xml",
|
|
61
|
-
"test:watch": "vitest watch",
|
|
62
56
|
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
63
57
|
}
|
|
64
58
|
}
|