@scayle/storefront-nuxt 7.51.1 → 7.51.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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # @scayle/storefront-nuxt
2
2
 
3
+ ## 7.51.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated to `nuxt@3.9.3` and `vue@3.4.15` (\__For more details check the [Nuxt 3.9.3 Release Notes](https://github.com/nuxt/nuxt/releases/tag/v3.9.3) and [Vue 3.4.15 Changelogs](https://github.com/vuejs/core/blob/main/CHANGELOG.md#3415-2024-01-18)_)
8
+
9
+ **NOTE: The minimum supported versions of the `@scayle/storefront-nuxt` package are `nuxt >=3.9.0` and `vue >=3.4.0`. Please update your application stack accordingly.**
10
+
11
+ - useRpc - clear error state when re-fetching
12
+
3
13
  ## 7.51.1
4
14
 
5
15
  ### Patch Changes
package/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.9.0"
6
6
  },
7
- "version": "7.51.0"
7
+ "version": "7.51.1"
8
8
  }
@@ -32,6 +32,7 @@ export const useRpc = async (method, key, params, options = { autoFetch: true, l
32
32
  try {
33
33
  status.value = "pending";
34
34
  fetching.value = true;
35
+ error.value = void 0;
35
36
  const apiBasePath = currentShop.value?.apiBasePath ?? "/api";
36
37
  const fetch2 = getFetch(nuxtApp, log);
37
38
  data.value = await unwrap(
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
3
  "type": "module",
4
- "version": "7.51.1",
4
+ "version": "7.51.2",
5
5
  "description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
6
6
  "author": "SCAYLE Commerce Engine",
7
7
  "license": "MIT",
@@ -60,7 +60,7 @@
60
60
  "test:watch": "vitest watch"
61
61
  },
62
62
  "dependencies": {
63
- "@nuxt/kit": "3.9.2",
63
+ "@nuxt/kit": "3.9.3",
64
64
  "@scayle/h3-session": "0.3.5",
65
65
  "@scayle/storefront-core": "7.37.0",
66
66
  "@scayle/unstorage-compression-driver": "0.1.1",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "devDependencies": {
83
83
  "@nuxt/module-builder": "0.5.5",
84
- "@nuxt/schema": "3.9.2",
84
+ "@nuxt/schema": "3.9.3",
85
85
  "@nuxt/test-utils": "3.10.0",
86
86
  "@scayle/eslint-config-storefront": "3.2.6",
87
87
  "@scayle/prettier-config-storefront": "2.0.2",
@@ -89,7 +89,7 @@
89
89
  "eslint": "8.56.0",
90
90
  "eslint-formatter-gitlab": "5.1.0",
91
91
  "node-mocks-http": "1.14.1",
92
- "nuxt": "3.9.2",
92
+ "nuxt": "3.9.3",
93
93
  "prettier": "3.0.0",
94
94
  "publint": "0.2.7",
95
95
  "vitest": "1.2.1",
@@ -102,17 +102,17 @@
102
102
  },
103
103
  "resolutions": {
104
104
  "h3": "1.10.1",
105
- "@vue/compiler-core": "3.4.14",
106
- "@vue/shared": "3.4.14",
107
- "@vue/compiler-dom": "3.4.14",
108
- "@vue/compiler-sfc": "3.4.14",
109
- "@vue/compiler-ssr": "3.4.14",
110
- "@vue/reactivity": "3.4.14",
111
- "@vue/runtime-core": "3.4.14",
112
- "@vue/runtime-dom": "3.4.14",
113
- "@vue/server-renderer": "3.4.14",
114
- "@nuxt/kit": "3.9.2",
115
- "@nuxt/schema": "3.9.2"
105
+ "@vue/compiler-core": "3.4.15",
106
+ "@vue/shared": "3.4.15",
107
+ "@vue/compiler-dom": "3.4.15",
108
+ "@vue/compiler-sfc": "3.4.15",
109
+ "@vue/compiler-ssr": "3.4.15",
110
+ "@vue/reactivity": "3.4.15",
111
+ "@vue/runtime-core": "3.4.15",
112
+ "@vue/runtime-dom": "3.4.15",
113
+ "@vue/server-renderer": "3.4.15",
114
+ "@nuxt/kit": "3.9.3",
115
+ "@nuxt/schema": "3.9.3"
116
116
  },
117
117
  "volta": {
118
118
  "node": "20.11.0"