cloudcommerce 2.36.19 → 2.36.21
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 +17 -0
- package/action.yml +4 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
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.36.21](https://github.com/ecomplus/cloud-commerce/compare/v2.36.20...v2.36.21) (2025-02-11)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deps:** Update non-major dependencies ([#533](https://github.com/ecomplus/cloud-commerce/issues/533)) ([b7b75af](https://github.com/ecomplus/cloud-commerce/commit/b7b75af4daab743b206174de320a3fa49c4292da))
|
|
11
|
+
* **firebase:** Start limiting listed API events and save last pushed timestamps per resource ([3a69dd3](https://github.com/ecomplus/cloud-commerce/commit/3a69dd38584713d68d44d11fc869f6e69e6bcadc))
|
|
12
|
+
|
|
13
|
+
## [2.36.20](https://github.com/ecomplus/cloud-commerce/compare/v2.36.19...v2.36.20) (2025-02-08)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **mercadopago:** Debug transaction error response even on 401/403 ([18134e2](https://github.com/ecomplus/cloud-commerce/commit/18134e2e3a24589b0154659fc966d3929f7b2d17))
|
|
19
|
+
* **storefront:** Ensure kipping cart item with kit product custom price ([85b116f](https://github.com/ecomplus/cloud-commerce/commit/85b116fbe183272bfdbfef9d878fefa5d92ee7f1))
|
|
20
|
+
* **storefront:** Persisting cart item kit composition and customizations on reload and navigation ([5590965](https://github.com/ecomplus/cloud-commerce/commit/5590965b16d9346c027d035b3491b9e4a4de0a20))
|
|
21
|
+
|
|
5
22
|
## [2.36.19](https://github.com/ecomplus/cloud-commerce/compare/v2.36.18...v2.36.19) (2025-02-07)
|
|
6
23
|
|
|
7
24
|
|
package/action.yml
CHANGED
|
@@ -146,7 +146,7 @@ runs:
|
|
|
146
146
|
${{ steps.npm-paths.outputs.LIB_PATH }}
|
|
147
147
|
${{ steps.npm-paths.outputs.BIN_PATH }}
|
|
148
148
|
~/.npm-global/bin
|
|
149
|
-
key: ${{ runner.os }}-npm-g-firebase-tools-13.30.0
|
|
149
|
+
key: ${{ runner.os }}-npm-g-firebase-tools-13.30.0-1
|
|
150
150
|
|
|
151
151
|
- if: github.event_name == 'push' && steps.npm-g-cache.outputs.cache-hit != 'true'
|
|
152
152
|
shell: bash
|
|
@@ -353,6 +353,9 @@ runs:
|
|
|
353
353
|
TIKTOK_ACCESS_TOKEN=$TIKTOK_ACCESS_TOKEN
|
|
354
354
|
TIKTOK_PIXEL_ID=$TIKTOK_PIXEL_ID
|
|
355
355
|
" > functions/.env
|
|
356
|
+
if [[ -f "functions/public.env" ]]; then
|
|
357
|
+
cat functions/public.env >> functions/.env
|
|
358
|
+
fi
|
|
356
359
|
if [[ -n "$CUSTOM_DOTENV" ]]; then
|
|
357
360
|
echo "$CUSTOM_DOTENV" >> functions/.env
|
|
358
361
|
fi
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.36.
|
|
4
|
+
"version": "2.36.21",
|
|
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.14",
|
|
43
43
|
"vitest": "^2.1.9",
|
|
44
44
|
"zx": "^8.3.2",
|
|
45
|
-
"@cloudcommerce/eslint": "2.36.
|
|
45
|
+
"@cloudcommerce/eslint": "2.36.21"
|
|
46
46
|
},
|
|
47
47
|
"packageManager": "pnpm@8.15.7",
|
|
48
48
|
"scripts": {
|