cloudcommerce 2.18.0 → 2.18.1
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 +13 -1
- package/package.json +5 -5
- package/scripts/release.mjs +0 -1
- package/scripts/version-and-release.sh +1 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
All notable changes to this project will be documented in this file. See [
|
|
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
|
+
|
|
5
|
+
## [2.18.1](https://github.com/ecomplus/cloud-commerce/compare/v2.18.0...v2.18.1) (2024-05-17)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **mandae:** Simple zip code validation to prevent unecessary Mandae API calculations ([db82a84](https://github.com/ecomplus/cloud-commerce/commit/db82a84b13bfeb6937a2b74068ecdbae04169619))
|
|
11
|
+
* **modules:** Saving shipping address to new customers right on checkout ([24281d2](https://github.com/ecomplus/cloud-commerce/commit/24281d26b63894c47248e648f002bcb9927dbec6))
|
|
12
|
+
* **pagarme:** Basic check for (optional) buyer birth date on create transaction ([1693b38](https://github.com/ecomplus/cloud-commerce/commit/1693b38e70e0b43ce3cb57ca82fabfb2b07cb6c8))
|
|
13
|
+
* **passport:** Find customer by email case insensitive ([23ad6a8](https://github.com/ecomplus/cloud-commerce/commit/23ad6a824408a519befb63f5270b7c8194415a4f))
|
|
14
|
+
* **ssr:** Prevent infinite redirects with aditional CDN on static filepaths rewrites ([eefb03e](https://github.com/ecomplus/cloud-commerce/commit/eefb03ea328192ad149cdf0770c0a8bd0c26b2fc))
|
|
15
|
+
* **storefront:** Preset OAuth global sign functions while auth initializing on vbeta app ([85f9895](https://github.com/ecomplus/cloud-commerce/commit/85f9895b42fba6f4f3e786684797211fbf589190))
|
|
4
16
|
|
|
5
17
|
## [2.18.0](https://github.com/ecomplus/cloud-commerce/compare/v2.17.6...v2.18.0) (2024-05-17)
|
|
6
18
|
|
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.1",
|
|
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>",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"/CHANGELOG.md",
|
|
16
16
|
"/scripts/*"
|
|
17
17
|
],
|
|
18
|
-
"
|
|
18
|
+
"commit-and-tag-version": {
|
|
19
19
|
"scripts": {
|
|
20
|
-
"precommit": "
|
|
20
|
+
"precommit": "sleep 1 && git add packages/**/package.json"
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"lint-staged": {
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"@commitlint/config-conventional": "^19.2.2",
|
|
30
30
|
"@commitlint/rules": "^19.0.3",
|
|
31
31
|
"@types/node": "^18.19.33",
|
|
32
|
+
"commit-and-tag-version": "^12.4.1",
|
|
32
33
|
"dotenv": "^16.4.5",
|
|
33
34
|
"eslint": "^8.57.0",
|
|
34
35
|
"husky": "^9.0.11",
|
|
35
36
|
"lint-staged": "^15.2.2",
|
|
36
|
-
"standard-version": "^9.5.0",
|
|
37
37
|
"ts-node": "^10.9.2",
|
|
38
38
|
"turbo": "^1.13.3",
|
|
39
39
|
"typescript": "~5.4.5",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"vite": "^5.2.11",
|
|
42
42
|
"vitest": "^1.6.0",
|
|
43
43
|
"zx": "^7.2.3",
|
|
44
|
-
"@cloudcommerce/eslint": "2.18.
|
|
44
|
+
"@cloudcommerce/eslint": "2.18.1"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|
package/scripts/release.mjs
CHANGED
|
@@ -9,7 +9,6 @@ const listFolders = async (parentPath) => {
|
|
|
9
9
|
.map((dirent) => dirent.name);
|
|
10
10
|
};
|
|
11
11
|
|
|
12
|
-
// await $`npx standard-version`;
|
|
13
12
|
const pwd = (await quiet($`pwd`)).stdout.trim();
|
|
14
13
|
const { version } = JSON.parse(fs.readFileSync('package.json'));
|
|
15
14
|
const packages = await globby([
|
|
@@ -5,8 +5,5 @@ pnpm test || exit 1
|
|
|
5
5
|
pnpm run -r prerelease
|
|
6
6
|
sleep 5
|
|
7
7
|
rm -f .git/index.lock
|
|
8
|
-
npx
|
|
9
|
-
sleep 1
|
|
10
|
-
(git add packages/**/package.json package.json pnpm-lock.yaml CHANGELOG.md \
|
|
11
|
-
&& git commit -m 'chore: Fixing package versions post-release') || true
|
|
8
|
+
npx commit-and-tag-version --commit-all
|
|
12
9
|
npx zx scripts/release.mjs --publish
|