cloudcommerce 2.16.5 → 2.16.8
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 +27 -0
- package/package.json +4 -4
- package/scripts/version-and-release.sh +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.16.8](https://github.com/ecomplus/cloud-commerce/compare/v2.16.5...v2.16.8) (2024-05-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deps:** Update non-major dependencies ([#374](https://github.com/ecomplus/cloud-commerce/issues/374)) ([98ff60d](https://github.com/ecomplus/cloud-commerce/commit/98ff60d6bf325c58171a800de7ab39b63723f558))
|
|
11
|
+
* **emails:** Fix getting email render function from event/status ([20e6575](https://github.com/ecomplus/cloud-commerce/commit/20e6575b9adf2c26bb956632b7d95790dbd05551))
|
|
12
|
+
* **storefront:** Update UnoCSS to ^0.59.4 ([#377](https://github.com/ecomplus/cloud-commerce/issues/377)) ([fd9aa9c](https://github.com/ecomplus/cloud-commerce/commit/fd9aa9c1cfe1c07d49bd8d22ff2d72854d79865f))
|
|
13
|
+
|
|
14
|
+
### [2.16.7](https://github.com/ecomplus/cloud-commerce/compare/v2.16.5...v2.16.7) (2024-05-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **deps:** Update non-major dependencies ([#374](https://github.com/ecomplus/cloud-commerce/issues/374)) ([98ff60d](https://github.com/ecomplus/cloud-commerce/commit/98ff60d6bf325c58171a800de7ab39b63723f558))
|
|
20
|
+
* **emails:** Fix getting email render function from event/status ([20e6575](https://github.com/ecomplus/cloud-commerce/commit/20e6575b9adf2c26bb956632b7d95790dbd05551))
|
|
21
|
+
* **storefront:** Update UnoCSS to ^0.59.4 ([#377](https://github.com/ecomplus/cloud-commerce/issues/377)) ([fd9aa9c](https://github.com/ecomplus/cloud-commerce/commit/fd9aa9c1cfe1c07d49bd8d22ff2d72854d79865f))
|
|
22
|
+
|
|
23
|
+
### [2.16.6](https://github.com/ecomplus/cloud-commerce/compare/v2.16.5...v2.16.6) (2024-05-06)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* **deps:** Update non-major dependencies ([#374](https://github.com/ecomplus/cloud-commerce/issues/374)) ([98ff60d](https://github.com/ecomplus/cloud-commerce/commit/98ff60d6bf325c58171a800de7ab39b63723f558))
|
|
29
|
+
* **emails:** Fix getting email render function from event/status ([20e6575](https://github.com/ecomplus/cloud-commerce/commit/20e6575b9adf2c26bb956632b7d95790dbd05551))
|
|
30
|
+
* **storefront:** Update UnoCSS to ^0.59.4 ([#377](https://github.com/ecomplus/cloud-commerce/issues/377)) ([fd9aa9c](https://github.com/ecomplus/cloud-commerce/commit/fd9aa9c1cfe1c07d49bd8d22ff2d72854d79865f))
|
|
31
|
+
|
|
5
32
|
### [2.16.5](https://github.com/ecomplus/cloud-commerce/compare/v2.16.1...v2.16.5) (2024-05-04)
|
|
6
33
|
|
|
7
34
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.16.
|
|
4
|
+
"version": "2.16.8",
|
|
5
5
|
"description": "Open fair-code headless commerce platform: API-first, microservices based, event driven and cloud native",
|
|
6
6
|
"main": "packages/api/lib/index.js",
|
|
7
7
|
"author": "E-Com Club Softwares para E-commerce <ti@e-com.club>",
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"turbo": "^1.13.3",
|
|
39
39
|
"typescript": "~5.4.5",
|
|
40
40
|
"uglify-js": "^3.17.4",
|
|
41
|
-
"vite": "^5.2.
|
|
42
|
-
"vitest": "^1.
|
|
41
|
+
"vite": "^5.2.11",
|
|
42
|
+
"vitest": "^1.6.0",
|
|
43
43
|
"zx": "^7.2.3",
|
|
44
|
-
"@cloudcommerce/eslint": "2.16.
|
|
44
|
+
"@cloudcommerce/eslint": "2.16.8"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
pnpm build --filter='@cloudcommerce/*' || exit 1
|
|
4
4
|
pnpm test || exit 1
|
|
5
5
|
pnpm run -r prerelease
|
|
6
|
+
sleep 5
|
|
6
7
|
rm -f .git/index.lock
|
|
7
|
-
npx standard-version
|
|
8
|
+
npx standard-version
|
|
8
9
|
sleep 1
|
|
9
10
|
(git add packages/**/package.json package.json pnpm-lock.yaml CHANGELOG.md \
|
|
10
11
|
&& git commit -m 'chore: Fixing package versions post-release') || true
|