cloudcommerce 2.18.2 → 2.18.4
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 +19 -0
- package/package.json +7 -2
- package/scripts/release.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [2.18.4](https://github.com/ecomplus/cloud-commerce/compare/v2.18.3...v2.18.4) (2024-05-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **cli:** Update bunny.net (CI) edge rules with new /search -> /s/ dynamic redirect ([d5f0029](https://github.com/ecomplus/cloud-commerce/commit/d5f0029478b9158011b47a94de0ebaee5fbe7121))
|
|
11
|
+
* **ssr:** Check fresh HTML length before bumping perma cache file ([4040cce](https://github.com/ecomplus/cloud-commerce/commit/4040ccebb32f1f1add99c83ae210f382af517fc5))
|
|
12
|
+
* **ssr:** Deal with redirects (hardfix) for multiple buit CSS filepaths ([6bc97a0](https://github.com/ecomplus/cloud-commerce/commit/6bc97a0bd358adf4f15bf2bb2ef980db30cbc000))
|
|
13
|
+
* **ssr:** Intercept uncaught exception to return error status and fallback HTML ([9a19316](https://github.com/ecomplus/cloud-commerce/commit/9a193165e7b71dfc99a38a625cbfbd5dde56a9ee))
|
|
14
|
+
|
|
15
|
+
## [2.18.3](https://github.com/ecomplus/cloud-commerce/compare/v2.18.1...v2.18.3) (2024-05-18)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **custom-shipping:** Properly proceeding on checked shipping rules array ([370aeb7](https://github.com/ecomplus/cloud-commerce/commit/370aeb791de44a398c29f4e531b6b39ecba75516))
|
|
21
|
+
* **custom-shipping:** Simple zip code validation with BR country code ([e7cbae7](https://github.com/ecomplus/cloud-commerce/commit/e7cbae7ee46fbdb8a57097377620c92620b57dce))
|
|
22
|
+
* **modules:** Minor fixes handling shipping services and failure debug ([df48085](https://github.com/ecomplus/cloud-commerce/commit/df48085e515c27894946b16ff2909e2f38d69d05))
|
|
23
|
+
|
|
5
24
|
## [2.18.2](https://github.com/ecomplus/cloud-commerce/compare/v2.18.1...v2.18.2) (2024-05-18)
|
|
6
25
|
|
|
7
26
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.18.
|
|
4
|
+
"version": "2.18.4",
|
|
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>",
|
|
@@ -19,6 +19,11 @@
|
|
|
19
19
|
"packages/storefront/**/*.{ts,vue,astro}": "eslint -c ./packages/eslint/storefront.staged.eslintrc.cjs --fix",
|
|
20
20
|
"packages/!(storefront)/**/*.ts": "eslint --fix"
|
|
21
21
|
},
|
|
22
|
+
"commit-and-tag-version": {
|
|
23
|
+
"scripts": {
|
|
24
|
+
"precommit": "sleep 1 && git add packages/**/package.json"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
22
27
|
"devDependencies": {
|
|
23
28
|
"@commitlint/cli": "^19.3.0",
|
|
24
29
|
"@commitlint/config-conventional": "^19.2.2",
|
|
@@ -36,7 +41,7 @@
|
|
|
36
41
|
"vite": "^5.2.11",
|
|
37
42
|
"vitest": "^1.6.0",
|
|
38
43
|
"zx": "^7.2.3",
|
|
39
|
-
"@cloudcommerce/eslint": "2.18.
|
|
44
|
+
"@cloudcommerce/eslint": "2.18.4"
|
|
40
45
|
},
|
|
41
46
|
"scripts": {
|
|
42
47
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|
package/scripts/release.mjs
CHANGED
|
@@ -85,7 +85,7 @@ if (argv.publish) {
|
|
|
85
85
|
return cd(pwd);
|
|
86
86
|
});
|
|
87
87
|
await $`pnpm fix-install`;
|
|
88
|
-
await $`git add packages
|
|
88
|
+
await $`git add packages/*/package.json packages/*/*/package.json pnpm-lock.yaml`;
|
|
89
89
|
for (let i = 0; i < storesDirs.length; i++) {
|
|
90
90
|
await $`git add ${storesDirs[i].replace(`${pwd}/`, '')}`;
|
|
91
91
|
}
|