Skip to content

Commit

Permalink
ci: release (#7245)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Aug 27, 2024
1 parent 60f8f63 commit 8b83581
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 29 deletions.
5 changes: 0 additions & 5 deletions .changeset/itchy-cycles-act.md

This file was deleted.

22 changes: 0 additions & 22 deletions .changeset/selfish-knives-admire.md

This file was deleted.

23 changes: 23 additions & 0 deletions packages/next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Change log

## 4.1.0

### Minor Changes

- **[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:

```diff
-import type { CreateSdkOptions } from '@vue-storefront/next';
+import { resolveSdkOptions } from '@vue-storefront/next';

-const options: CreateSdkOptions = {
+const options = resolveSdkOptions({
middleware: {
apiUrl,
cdnCacheBustingId,
ssrApiUrl,
},
multistore: {
enabled: isMultiStoreEnabled,
},
});
```

## 4.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@vue-storefront/next",
"description": "Vue Storefront dedicated features for Next.js",
"license": "MIT",
"version": "4.0.0",
"version": "4.1.0",
"exports": {
".": {
"import": "./dist/index.mjs",
Expand Down
6 changes: 6 additions & 0 deletions packages/nuxt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change log

## 6.0.0

### Major Changes

- **[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`.

## 5.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-storefront/nuxt",
"version": "5.0.0",
"version": "6.0.0",
"description": "Vue Storefront dedicated features for Nuxt",
"license": "MIT",
"type": "module",
Expand Down

0 comments on commit 8b83581

Please sign in to comment.