Skip to content

Commit 1408c87

Browse files
ci: release (#1552)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 983eb70 commit 1408c87

File tree

8 files changed

+33
-24
lines changed

8 files changed

+33
-24
lines changed

.changeset/olive-terms-stare.md

-6
This file was deleted.

.changeset/pre.json

-12
This file was deleted.

docs/content/6.reference/changelogs/vue-storefront-magento-api.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @vue-storefront/magento-api
22

3+
## 6.0.0
4+
5+
### Major Changes
6+
7+
- 983eb70e: **[CHANGE]** - Update middleware to 5.1.0
8+
39
## 5.0.1
410

511
### Patch Changes

docs/content/6.reference/changelogs/vue-storefront-magento-sdk.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @vue-storefront/magento-sdk
22

3+
## 4.0.0
4+
5+
### Major Changes
6+
7+
- 983eb70e: **[CHANGE]** - Update middleware to 5.1.0
8+
39
## 3.0.1
410

511
### Patch Changes

packages/api-client/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @vue-storefront/magento-api
22

3+
## 6.0.0
4+
5+
### Major Changes
6+
7+
- 983eb70e: **[CHANGE]** - Update middleware to 5.1.0
8+
39
## 5.0.1
410

511
### Patch Changes

packages/api-client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-storefront/magento-api",
3-
"version": "6.0.0-rc.1",
3+
"version": "6.0.0",
44
"sideEffects": false,
55
"homepage": "https://github.com/vuestorefront/magento2",
66
"bugs": {

packages/sdk/CHANGELOG.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @vue-storefront/magento-sdk
22

3+
## 4.0.0
4+
5+
### Major Changes
6+
7+
- 983eb70e: **[CHANGE]** - Update middleware to 5.1.0
8+
39
## 3.0.1
410

511
### Patch Changes
@@ -65,12 +71,15 @@
6571
- [CHANGED] Deprecated the `MagentoModuleType` interface in `index.ts`. It is no longer necessary to use this type. Please, check documentation of `magentoModule` for alternatives. Below you can find a snippet of the new way of using `magentoModule`. Pay attention to the `buildModule` function that is used to create a module instance, it no longer requires the `MagentoModuleType` type as a generic parameter.
6672

6773
```ts
68-
import { initSDK, buildModule } from '@vue-storefront/sdk';
69-
import { magentoModule, MagentoModuleType } from '@vue-storefront/magento2-sdk';
74+
import { initSDK, buildModule } from "@vue-storefront/sdk";
75+
import {
76+
magentoModule,
77+
MagentoModuleType,
78+
} from "@vue-storefront/magento2-sdk";
7079

7180
const sdkConfig = {
7281
magento: buildModule(magentoModule, {
73-
apiUrl: 'http://localhost:8181/magento',
82+
apiUrl: "http://localhost:8181/magento",
7483
}),
7584
};
7685

packages/sdk/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-storefront/magento-sdk",
3-
"version": "4.0.0-rc.0",
3+
"version": "4.0.0",
44
"main": "lib/index.cjs.js",
55
"module": "lib/index.es.js",
66
"types": "lib/index.d.ts",
@@ -27,7 +27,7 @@
2727
},
2828
"devDependencies": {
2929
"@types/node": "^12.12.14",
30-
"@vue-storefront/magento-api": "^6.0.0-rc.1",
30+
"@vue-storefront/magento-api": "^6.0.0",
3131
"@vue-storefront/middleware": "^5.1.0",
3232
"nock": "^13.2.9"
3333
},

0 commit comments

Comments
 (0)