@scayle/storefront-nuxt 7.85.1 → 7.85.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,11 @@
1
1
  # @scayle/storefront-nuxt
2
2
 
3
+ ## 7.85.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed bootstrap middleware logging `[object Object]` by providing an appropriate log message and passing the object as optional data parameter
8
+
3
9
  ## 7.85.1
4
10
 
5
11
  ### Patch Changes
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
- "version": "7.85.1",
3
+ "version": "7.85.2",
4
4
  "configKey": "storefront",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.9.0"
package/dist/module.mjs CHANGED
@@ -66,7 +66,7 @@ export default {
66
66
  }`;
67
67
  }
68
68
  const PACKAGE_NAME = "@scayle/storefront-nuxt";
69
- const PACKAGE_VERSION = "7.85.1";
69
+ const PACKAGE_VERSION = "7.85.2";
70
70
  const logger = createConsola({
71
71
  fancy: true,
72
72
  formatOptions: {
@@ -60,7 +60,7 @@ async function bootstrap(event, $shopConfig, $storefrontConfig, apiBasePath, con
60
60
  );
61
61
  const routeRules = event.context._nitro.routeRules;
62
62
  const cacheableRoute = routeRules.cache || routeRules.isr || routeRules.swr;
63
- bootstrapLog.debug({
63
+ bootstrapLog.debug("Avoid attaching session for cached requests", {
64
64
  rules: event.context._nitro.routeRules,
65
65
  cacheableRoute,
66
66
  path: event.path
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
3
  "type": "module",
4
- "version": "7.85.1",
4
+ "version": "7.85.2",
5
5
  "description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
6
6
  "author": "SCAYLE Commerce Engine",
7
7
  "license": "MIT",
@@ -80,13 +80,13 @@
80
80
  "zod": "^3.23.8"
81
81
  },
82
82
  "devDependencies": {
83
- "@nuxt/eslint": "0.5.4",
83
+ "@nuxt/eslint": "0.5.5",
84
84
  "@nuxt/module-builder": "0.5.5",
85
85
  "@nuxt/schema": "3.12.4",
86
86
  "@nuxt/test-utils": "3.14.1",
87
87
  "@scayle/eslint-config-storefront": "4.3.0",
88
88
  "@scayle/eslint-plugin-vue-composable": "0.2.0",
89
- "@types/node": "20.16.2",
89
+ "@types/node": "20.16.3",
90
90
  "dprint": "0.47.2",
91
91
  "eslint": "9.9.1",
92
92
  "eslint-formatter-gitlab": "5.1.0",
@@ -97,7 +97,7 @@
97
97
  "nuxt": "3.12.4",
98
98
  "publint": "0.2.10",
99
99
  "vitest": "2.0.5",
100
- "vue-tsc": "2.1.2"
100
+ "vue-tsc": "2.1.4"
101
101
  },
102
102
  "peerDependencies": {
103
103
  "h3": "^1.10.0",