@scayle/h3-session 0.6.1 → 0.6.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/README.md +0 -9
  3. package/package.json +27 -25
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @scayle/h3-session
2
2
 
3
+ ## 0.6.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Cleaned up README.md and added CONTRIBUTING.md. No functional changes.
8
+
3
9
  ## 0.6.1
4
10
 
5
11
  ### Patch Changes
@@ -16,7 +22,7 @@
16
22
 
17
23
  ### Patch Changes
18
24
 
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 `saveUnitialized` configuration.
25
+ - 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
26
  - Fix the `clear()` method on `UnstorageSessionStore` not clearing sessions
21
27
 
22
28
  ## 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.1",
3
+ "version": "0.6.2",
4
4
  "description": "Persistent sessions for h3",
5
5
  "author": "SCAYLE Commerce Engine",
6
6
  "license": "MIT",
@@ -23,19 +23,6 @@
23
23
  "CHANGELOG.md",
24
24
  "dist/**"
25
25
  ],
26
- "scripts": {
27
- "build": "unbuild",
28
- "verify-packaging": "attw --pack . --profile esm-only",
29
- "format": "dprint check",
30
- "format:fix": "dprint fmt",
31
- "lint": "eslint .",
32
- "lint:ci": "eslint . --format gitlab",
33
- "lint:fix": "eslint . --fix",
34
- "test": "vitest run",
35
- "test:ci": "vitest --run --coverage --reporter=default --reporter=junit --outputFile=./coverage/junit.xml",
36
- "test:watch": "vitest watch",
37
- "typecheck": "tsc --noEmit -p tsconfig.json"
38
- },
39
26
  "peerDependencies": {
40
27
  "h3": "^1.10.0"
41
28
  },
@@ -45,18 +32,33 @@
45
32
  "unstorage": "^1.10.2"
46
33
  },
47
34
  "devDependencies": {
48
- "@arethetypeswrong/cli": "0.17.4",
49
- "@scayle/eslint-config-storefront": "4.5.0",
35
+ "@arethetypeswrong/cli": "0.18.2",
36
+ "@vitest/coverage-v8": "3.2.4",
50
37
  "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"
38
+ "dprint": "0.50.2",
39
+ "eslint-formatter-gitlab": "6.0.1",
40
+ "eslint": "9.38.0",
41
+ "h3": "1.15.4",
42
+ "typescript": "5.9.3",
43
+ "unbuild": "3.6.1",
44
+ "vitest": "3.2.4",
45
+ "@scayle/eslint-config-storefront": "4.7.11",
46
+ "@scayle/vitest-config-storefront": "1.0.0"
58
47
  },
59
48
  "volta": {
60
- "node": "22.14.0"
49
+ "node": "22.21.0"
50
+ },
51
+ "scripts": {
52
+ "build": "unbuild",
53
+ "verify-packaging": "attw --pack . --profile esm-only",
54
+ "format": "dprint check",
55
+ "format:fix": "dprint fmt",
56
+ "lint": "eslint .",
57
+ "lint:ci": "eslint . --format gitlab",
58
+ "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
+ "typecheck": "tsc --noEmit -p tsconfig.json"
61
63
  }
62
- }
64
+ }