Skip to content

Commit 8b83581

Browse files
ci: release (#7245)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 60f8f63 commit 8b83581

File tree

6 files changed

+31
-29
lines changed

6 files changed

+31
-29
lines changed

.changeset/itchy-cycles-act.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/selfish-knives-admire.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

packages/next/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Change log
22

3+
## 4.1.0
4+
5+
### Minor Changes
6+
7+
- **[CHANGE]**: Added the `resolveSdkOptions` helper that automatically setup proper SSR & SPA URLs for middleware when multistore option is enabled. To use it, change your SDK configuration:
8+
9+
```diff
10+
-import type { CreateSdkOptions } from '@vue-storefront/next';
11+
+import { resolveSdkOptions } from '@vue-storefront/next';
12+
13+
-const options: CreateSdkOptions = {
14+
+const options = resolveSdkOptions({
15+
middleware: {
16+
apiUrl,
17+
cdnCacheBustingId,
18+
ssrApiUrl,
19+
},
20+
multistore: {
21+
enabled: isMultiStoreEnabled,
22+
},
23+
});
24+
```
25+
326
## 4.0.0
427

528
### Major Changes

packages/next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@vue-storefront/next",
33
"description": "Vue Storefront dedicated features for Next.js",
44
"license": "MIT",
5-
"version": "4.0.0",
5+
"version": "4.1.0",
66
"exports": {
77
".": {
88
"import": "./dist/index.mjs",

packages/nuxt/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change log
22

3+
## 6.0.0
4+
5+
### Major Changes
6+
7+
- **[BREAKING]**: Added functionality that automatically configures the proper URLs for SSR & SPA modes when mutlistore mode is enabled. Left your environment variables like in normal mode, just set `NUXT_PUBLIC_ALOKAI_MULTISTORE_ENABLED` to `true`.
8+
39
## 5.0.0
410

511
### Major Changes

packages/nuxt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-storefront/nuxt",
3-
"version": "5.0.0",
3+
"version": "6.0.0",
44
"description": "Vue Storefront dedicated features for Nuxt",
55
"license": "MIT",
66
"type": "module",

0 commit comments

Comments
 (0)