@scayle/storefront-nuxt 8.62.0 → 8.62.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 +30 -5
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @scayle/storefront-nuxt
|
|
2
2
|
|
|
3
|
+
## 8.62.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependency `unstorage@^1.10.2` to `unstorage@catalog:`
|
|
8
|
+
- Updated dependency `vue-router@^4.4.0` to `vue-router@catalog:`
|
|
9
|
+
|
|
10
|
+
**Dependencies**
|
|
11
|
+
|
|
12
|
+
- Updated dependency to @scayle/h3-session@0.7.1
|
|
13
|
+
|
|
14
|
+
**@scayle/storefront-core v8.62.2**
|
|
15
|
+
|
|
16
|
+
- No changes in this release.
|
|
17
|
+
|
|
18
|
+
## 8.62.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- **\[Security\]** Use the patched Nuxt for build — `nuxt@3.21.8` (3.x) / `nuxt@4.4.8` (4.x), with matching `@nuxt/kit` and `@nuxt/schema` — which includes the fix for [CVE-2026-53721](https://nvd.nist.gov/vuln/detail/CVE-2026-53721) ([GHSA-mm7m-92g8-7m47](https://github.com/nuxt/nuxt/security/advisories/GHSA-mm7m-92g8-7m47)), a route-rule middleware bypass.
|
|
23
|
+
|
|
24
|
+
Compatibility with previously-supported Nuxt versions is unchanged and remains specified via each package's `peerDependencies` and the Nuxt compatibility flag. `@scayle/storefront-core` is released in lockstep with `@scayle/storefront-nuxt`.
|
|
25
|
+
|
|
26
|
+
**Dependencies**
|
|
27
|
+
|
|
28
|
+
**@scayle/storefront-core v8.62.1**
|
|
29
|
+
|
|
30
|
+
- No changes in this release.
|
|
31
|
+
|
|
3
32
|
## 8.62.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|
|
@@ -3102,11 +3131,7 @@
|
|
|
3102
3131
|
} as const
|
|
3103
3132
|
|
|
3104
3133
|
type BadgeLabelParamsKeys =
|
|
3105
|
-
| '
|
|
3106
|
-
| 'isSoldOut'
|
|
3107
|
-
| 'isOnlineOnly'
|
|
3108
|
-
| 'isSustainable'
|
|
3109
|
-
| 'isPremium'
|
|
3134
|
+
'isNew' | 'isSoldOut' | 'isOnlineOnly' | 'isSustainable' | 'isPremium'
|
|
3110
3135
|
type BadgeLabelParams = Partial<Record<BadgeLabelParamsKeys, boolean>>
|
|
3111
3136
|
|
|
3112
3137
|
const getBadgeLabel = (params: BadgeLabelParams = {}): string => {
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "8.62.
|
|
4
|
+
"version": "8.62.2",
|
|
5
5
|
"description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
|
|
6
6
|
"author": "SCAYLE Commerce Engine",
|
|
7
7
|
"license": "MIT",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"@nuxt/kit": ">=3.13.0 || >=4.2.0",
|
|
71
|
-
"@scayle/storefront-api": "^19.1.
|
|
71
|
+
"@scayle/storefront-api": "^19.1.2",
|
|
72
72
|
"fishery": "^2.2.2",
|
|
73
73
|
"h3": "^1.10.0",
|
|
74
74
|
"nitropack": "^2.9.7",
|
|
@@ -92,40 +92,40 @@
|
|
|
92
92
|
"schema-dts": "1.1.5",
|
|
93
93
|
"ufo": "^1.5.4",
|
|
94
94
|
"uncrypto": "^0.1.3",
|
|
95
|
-
"unstorage": "
|
|
95
|
+
"unstorage": "1.17.5",
|
|
96
96
|
"utility-types": "^3.11.0",
|
|
97
|
-
"vue-router": "
|
|
97
|
+
"vue-router": "4.6.4",
|
|
98
98
|
"zod": "^4.0.0",
|
|
99
|
-
"@scayle/h3-session": "0.7.
|
|
100
|
-
"@scayle/storefront-core": "8.62.
|
|
99
|
+
"@scayle/h3-session": "0.7.1",
|
|
100
|
+
"@scayle/storefront-core": "8.62.2"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
103
|
"@arethetypeswrong/cli": "0.18.2",
|
|
104
104
|
"@nuxt/eslint-config": "1.15.2",
|
|
105
|
-
"@nuxt/kit": "^3.
|
|
105
|
+
"@nuxt/kit": "^3.21.7",
|
|
106
106
|
"@nuxtjs/i18n": "10.4.0",
|
|
107
107
|
"@nuxt/module-builder": "1.0.2",
|
|
108
|
-
"@nuxt/schema": "^3.
|
|
108
|
+
"@nuxt/schema": "^3.21.7",
|
|
109
109
|
"@nuxt/test-utils": "4.0.0",
|
|
110
110
|
"@scayle/eslint-config-storefront": "^4.8.0",
|
|
111
111
|
"@scayle/eslint-plugin-vue-composable": "^1.1.0",
|
|
112
112
|
"@scayle/unstorage-scayle-kv-driver": "^2.1.0",
|
|
113
113
|
"@types/node": "24.12.2",
|
|
114
|
-
"@vitest/coverage-v8": "4.1.
|
|
115
|
-
"eslint": "10.
|
|
116
|
-
"eslint-formatter-gitlab": "7.
|
|
114
|
+
"@vitest/coverage-v8": "4.1.9",
|
|
115
|
+
"eslint": "10.7.0",
|
|
116
|
+
"eslint-formatter-gitlab": "7.2.0",
|
|
117
117
|
"fishery": "2.4.0",
|
|
118
118
|
"h3": "1.15.11",
|
|
119
|
-
"happy-dom": "20.
|
|
119
|
+
"happy-dom": "20.10.6",
|
|
120
120
|
"nitro-test-utils": "0.11.2",
|
|
121
121
|
"nitropack": "2.13.4",
|
|
122
122
|
"node-mocks-http": "1.17.2",
|
|
123
|
-
"nuxt": "^3.
|
|
123
|
+
"nuxt": "^3.21.7",
|
|
124
124
|
"publint": "0.3.21",
|
|
125
125
|
"typescript": "6.0.3",
|
|
126
126
|
"unbuild": "3.6.1",
|
|
127
|
-
"vitest": "4.1.
|
|
128
|
-
"vue-tsc": "3.3.
|
|
127
|
+
"vitest": "4.1.10",
|
|
128
|
+
"vue-tsc": "3.3.7",
|
|
129
129
|
"@scayle/vitest-config-storefront": "1.0.0"
|
|
130
130
|
},
|
|
131
131
|
"scripts": {
|