cloudcommerce 2.49.4 → 2.49.5
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 +8 -0
- package/action.yml +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
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.49.5](https://github.com/ecomplus/cloud-commerce/compare/v2.49.4...v2.49.5) (2025-09-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **appmax:** Fix handling/debugging customer and order creation on Appmax API ([b208039](https://github.com/ecomplus/cloud-commerce/commit/b208039a19b698aee01899d6a1a283ab2866ade8))
|
|
11
|
+
* **paghiper:** Minor fix preventing duplicated response call on webhook (on sucess) ([b6d5d07](https://github.com/ecomplus/cloud-commerce/commit/b6d5d07923cfdb9346defc7f414071631312768f))
|
|
12
|
+
|
|
5
13
|
## [2.49.4](https://github.com/ecomplus/cloud-commerce/compare/v2.49.3...v2.49.4) (2025-09-08)
|
|
6
14
|
|
|
7
15
|
|
package/action.yml
CHANGED
|
@@ -159,18 +159,18 @@ runs:
|
|
|
159
159
|
${{ steps.npm-paths.outputs.LIB_PATH }}
|
|
160
160
|
${{ steps.npm-paths.outputs.BIN_PATH }}
|
|
161
161
|
~/.npm-global/bin
|
|
162
|
-
key: ${{ runner.os }}-npm-g-firebase-tools-14.
|
|
162
|
+
key: ${{ runner.os }}-npm-g-firebase-tools-14.15.2-1
|
|
163
163
|
|
|
164
164
|
- if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
|
165
165
|
name: Ensure firebase-tools is installed
|
|
166
166
|
shell: bash
|
|
167
167
|
run: |
|
|
168
168
|
if ! command -v firebase &> /dev/null; then
|
|
169
|
-
npm i --location=global firebase-tools@14.
|
|
169
|
+
npm i --location=global firebase-tools@14.15.2
|
|
170
170
|
else
|
|
171
171
|
INSTALLED_VERSION=$(firebase --version)
|
|
172
|
-
if [[ "$INSTALLED_VERSION" != "14.
|
|
173
|
-
npm i --location=global firebase-tools@14.
|
|
172
|
+
if [[ "$INSTALLED_VERSION" != "14.15.2" ]]; then
|
|
173
|
+
npm i --location=global firebase-tools@14.15.2
|
|
174
174
|
fi
|
|
175
175
|
fi
|
|
176
176
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.49.
|
|
4
|
+
"version": "2.49.5",
|
|
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.20",
|
|
43
43
|
"vitest": "^2.1.9",
|
|
44
44
|
"zx": "^8.8.1",
|
|
45
|
-
"@cloudcommerce/eslint": "2.49.
|
|
45
|
+
"@cloudcommerce/eslint": "2.49.5"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|