cloudcommerce 2.37.4 → 2.38.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 +22 -0
- package/action.yml +4 -4
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,28 @@
|
|
|
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.38.1](https://github.com/ecomplus/cloud-commerce/compare/v2.38.0...v2.38.1) (2025-03-13)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deps:** Update non-major dependencies ([#548](https://github.com/ecomplus/cloud-commerce/issues/548)) ([e753153](https://github.com/ecomplus/cloud-commerce/commit/e753153512938f07136674c2d79636bb9e7466cb))
|
|
11
|
+
* **mandae:** Always sing best rule discount/price when multiple rules match on calculate ([dd9055b](https://github.com/ecomplus/cloud-commerce/commit/dd9055ba309681b825ef7cd5cc747c1d08176548))
|
|
12
|
+
* **mandae:** Pass rules without checking items subtotal when min amount (optional) is not set ([5f7aae9](https://github.com/ecomplus/cloud-commerce/commit/5f7aae9a2ad5e420fde1e6812e0d29986ee23e9e))
|
|
13
|
+
|
|
14
|
+
## [2.38.0](https://github.com/ecomplus/cloud-commerce/compare/v2.37.4...v2.38.0) (2025-03-08)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **cli:** Starting experimental `cloudcommerce import` command for migrations with product feeds ([345870c](https://github.com/ecomplus/cloud-commerce/commit/345870c766c85753ecfaedd57b21f793253117d5))
|
|
20
|
+
* **mandae:** Handle shipping rules with fixed freight value on calculate ([5b606bb](https://github.com/ecomplus/cloud-commerce/commit/5b606bb445d558616df696690a17276fe4300026))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* **ssr:** Parsing *.ecomplus.app hostname to ecom2*.web.app on SWR worker by default ([9e5fac9](https://github.com/ecomplus/cloud-commerce/commit/9e5fac9c921af26fd84d4beed8611fe9f237a5ff))
|
|
26
|
+
|
|
5
27
|
## [2.37.4](https://github.com/ecomplus/cloud-commerce/compare/v2.37.3...v2.37.4) (2025-03-06)
|
|
6
28
|
|
|
7
29
|
## [2.37.3](https://github.com/ecomplus/cloud-commerce/compare/v2.37.2...v2.37.3) (2025-03-06)
|
package/action.yml
CHANGED
|
@@ -147,18 +147,18 @@ runs:
|
|
|
147
147
|
${{ steps.npm-paths.outputs.LIB_PATH }}
|
|
148
148
|
${{ steps.npm-paths.outputs.BIN_PATH }}
|
|
149
149
|
~/.npm-global/bin
|
|
150
|
-
key: ${{ runner.os }}-npm-g-firebase-tools-13.
|
|
150
|
+
key: ${{ runner.os }}-npm-g-firebase-tools-13.33.0-2
|
|
151
151
|
|
|
152
152
|
- if: github.event_name == 'push'
|
|
153
153
|
name: Ensure firebase-tools is installed
|
|
154
154
|
shell: bash
|
|
155
155
|
run: |
|
|
156
156
|
if ! command -v firebase &> /dev/null; then
|
|
157
|
-
npm i --location=global firebase-tools@13.
|
|
157
|
+
npm i --location=global firebase-tools@13.33.0
|
|
158
158
|
else
|
|
159
159
|
INSTALLED_VERSION=$(firebase --version)
|
|
160
|
-
if [[ "$INSTALLED_VERSION" != "13.
|
|
161
|
-
npm i --location=global firebase-tools@13.
|
|
160
|
+
if [[ "$INSTALLED_VERSION" != "13.33.0" ]]; then
|
|
161
|
+
npm i --location=global firebase-tools@13.33.0
|
|
162
162
|
fi
|
|
163
163
|
fi
|
|
164
164
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.38.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>",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@commitlint/cli": "^19.
|
|
29
|
-
"@commitlint/config-conventional": "^19.
|
|
30
|
-
"@commitlint/rules": "^19.
|
|
31
|
-
"@types/node": "^20.17.
|
|
28
|
+
"@commitlint/cli": "^19.8.0",
|
|
29
|
+
"@commitlint/config-conventional": "^19.8.0",
|
|
30
|
+
"@commitlint/rules": "^19.8.0",
|
|
31
|
+
"@types/node": "^20.17.24",
|
|
32
32
|
"commit-and-tag-version": "^12.5.0",
|
|
33
33
|
"dotenv": "^16.4.7",
|
|
34
34
|
"eslint": "^8.57.1",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"uglify-js": "^3.19.3",
|
|
42
42
|
"vite": "^5.4.14",
|
|
43
43
|
"vitest": "^2.1.9",
|
|
44
|
-
"zx": "^8.
|
|
45
|
-
"@cloudcommerce/eslint": "2.
|
|
44
|
+
"zx": "^8.4.0",
|
|
45
|
+
"@cloudcommerce/eslint": "2.38.1"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|