cloudcommerce 2.44.8 → 2.45.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 CHANGED
@@ -2,6 +2,20 @@
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.45.1](https://github.com/ecomplus/cloud-commerce/compare/v2.45.0...v2.45.1) (2025-06-25)
6
+
7
+ ## [2.45.0](https://github.com/ecomplus/cloud-commerce/compare/v2.44.8...v2.45.0) (2025-06-24)
8
+
9
+
10
+ ### Features
11
+
12
+ * **appmax:** Setup Appmax payment integration app ([02c559c](https://github.com/ecomplus/cloud-commerce/commit/02c559c81a9f7ac3dca7a078d3c738923b30a4a5))
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **ssr:** Fix Awin conversion API `x-api-key` header ([91282be](https://github.com/ecomplus/cloud-commerce/commit/91282be2c40031cbf3429cf5bd4d08b84c56d5df))
18
+
5
19
  ## [2.44.8](https://github.com/ecomplus/cloud-commerce/compare/v2.44.7...v2.44.8) (2025-06-23)
6
20
 
7
21
  ## [2.44.7](https://github.com/ecomplus/cloud-commerce/compare/v2.44.6...v2.44.7) (2025-06-23)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloudcommerce",
3
3
  "type": "module",
4
- "version": "2.44.8",
4
+ "version": "2.45.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>",
@@ -42,7 +42,7 @@
42
42
  "vite": "^5.4.19",
43
43
  "vitest": "^2.1.9",
44
44
  "zx": "^8.5.5",
45
- "@cloudcommerce/eslint": "2.44.8"
45
+ "@cloudcommerce/eslint": "2.45.1"
46
46
  },
47
47
  "scripts": {
48
48
  "fix-install": "bash scripts/pre-install.sh && pnpm i",
@@ -64,37 +64,40 @@ if (argv.publish) {
64
64
  }
65
65
  });
66
66
  }
67
- await Promise.all(storesDirs.map((storeDir) => within(async () => {
68
- $.cwd = storeDir;
69
- await $`git pull`;
70
- for (let iii = 0; iii < functions.length; iii++) {
71
- const codebase = functions[iii];
72
- $.cwd = `${storeDir}/functions/${codebase}`;
73
- await $`rm -rf node_modules package-lock.json`;
74
- if (codebase === 'ssr') {
75
- await $`npm i --save @cloudcommerce/{firebase,ssr,api}@${version}`;
76
- await $`npm i --save-dev @cloudcommerce/{storefront,i18n,types}@${version}`;
77
- } else if (codebase === 'many') {
78
- await $`npm i --save @cloudcommerce/{firebase,feeds,passport}@${version}`;
79
- } else {
80
- await $`npm i --save @cloudcommerce/{firebase,modules,events}@${version}`;
67
+ for (let i = 0; i < storesDirs.length; i += 2) {
68
+ const batch = storesDirs.slice(i, i + 2);
69
+ await Promise.all(batch.map((storeDir) => within(async () => {
70
+ $.cwd = storeDir;
71
+ await $`git pull`;
72
+ for (let iii = 0; iii < functions.length; iii++) {
73
+ const codebase = functions[iii];
74
+ $.cwd = `${storeDir}/functions/${codebase}`;
75
+ await $`rm -rf node_modules package-lock.json`;
76
+ if (codebase === 'ssr') {
77
+ await $`npm i --save @cloudcommerce/{firebase,ssr,api}@${version}`;
78
+ await $`npm i --save-dev @cloudcommerce/{storefront,i18n,types}@${version}`;
79
+ } else if (codebase === 'many') {
80
+ await $`npm i --save @cloudcommerce/{firebase,feeds,passport}@${version}`;
81
+ } else {
82
+ await $`npm i --save @cloudcommerce/{firebase,modules,events}@${version}`;
83
+ }
84
+ await $`rm -rf node_modules`;
81
85
  }
86
+ $.cwd = storeDir;
87
+ await $`rm -rf node_modules package-lock.json`;
88
+ await $`npm i --save @cloudcommerce/cli@${version}`;
89
+ await $`npm i --save-dev @cloudcommerce/eslint@${version}`;
82
90
  await $`rm -rf node_modules`;
83
- }
84
- $.cwd = storeDir;
85
- await $`rm -rf node_modules package-lock.json`;
86
- await $`npm i --save @cloudcommerce/cli@${version}`;
87
- await $`npm i --save-dev @cloudcommerce/eslint@${version}`;
88
- await $`rm -rf node_modules`;
89
- try {
90
- await $`git add package* functions/*/package*`;
91
- await $`git commit -m 'Update to v${version}' \
92
- -m 'https://github.com/ecomplus/cloud-commerce/releases/tag/v${version}'`;
93
- await $`git push`;
94
- } catch {
95
- //
96
- }
97
- })));
91
+ try {
92
+ await $`git add package* functions/*/package*`;
93
+ await $`git commit -m 'Update to v${version}' \
94
+ -m 'https://github.com/ecomplus/cloud-commerce/releases/tag/v${version}'`;
95
+ await $`git push`;
96
+ } catch {
97
+ //
98
+ }
99
+ })));
100
+ }
98
101
  return cd(pwd);
99
102
  });
100
103
  await $`pnpm fix-install`;