cloudcommerce 2.44.6 → 2.44.7
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 +14 -12
- package/package.json +4 -4
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.44.7](https://github.com/ecomplus/cloud-commerce/compare/v2.44.6...v2.44.7) (2025-06-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deps:** Update non-major dependencies ([#592](https://github.com/ecomplus/cloud-commerce/issues/592)) ([aa07494](https://github.com/ecomplus/cloud-commerce/commit/aa07494454e05190be20aaec9d3daf2c400cec87))
|
|
11
|
+
* **storefront:** Update Vue to latest ^3.5.17 ([#591](https://github.com/ecomplus/cloud-commerce/issues/591)) ([eeeeda5](https://github.com/ecomplus/cloud-commerce/commit/eeeeda520878278916a328c139d2202ef7e957cf))
|
|
12
|
+
|
|
5
13
|
## [2.44.6](https://github.com/ecomplus/cloud-commerce/compare/v2.44.5...v2.44.6) (2025-06-17)
|
|
6
14
|
|
|
7
15
|
## [2.44.5](https://github.com/ecomplus/cloud-commerce/compare/v2.44.4...v2.44.5) (2025-06-17)
|
package/action.yml
CHANGED
|
@@ -319,13 +319,15 @@ runs:
|
|
|
319
319
|
export GAC_FILENAME=".gac-$RANDOM.json"
|
|
320
320
|
echo $FIREBASE_SERVICE_ACCOUNT > $GAC_FILENAME
|
|
321
321
|
printf "DEPLOY_RAND=$RANDOM$RANDOM
|
|
322
|
-
ECOM_AUTHENTICATION_ID=$ECOM_AUTHENTICATION_ID
|
|
323
|
-
ECOM_API_KEY=$ECOM_API_KEY
|
|
324
322
|
ECOM_STORE_ID=$ECOM_STORE_ID
|
|
325
323
|
GIT_BRANCH=$GIT_BRANCH
|
|
324
|
+
DEPLOY_CODEBASE=$DEPLOY_CODEBASE
|
|
326
325
|
GITHUB_REPO=$GITHUB_REPO
|
|
327
326
|
GITHUB_TOKEN=$GITHUB_TOKEN
|
|
328
|
-
|
|
327
|
+
ECOM_AUTHENTICATION_ID=$ECOM_AUTHENTICATION_ID
|
|
328
|
+
ECOM_API_KEY=$ECOM_API_KEY
|
|
329
|
+
PASSPORT_UNVERIFIED_AUTH=$PASSPORT_UNVERIFIED_AUTH
|
|
330
|
+
BUNNYNET_API_KEY=$BUNNYNET_API_KEY
|
|
329
331
|
MAIL_SENDER=$MAIL_SENDER
|
|
330
332
|
MAIL_SENDER_NAME=$MAIL_SENDER_NAME
|
|
331
333
|
MAIL_REPLY_TO=$MAIL_REPLY_TO
|
|
@@ -333,9 +335,15 @@ runs:
|
|
|
333
335
|
SMTP_PORT=$SMTP_PORT
|
|
334
336
|
SMTP_USER=$SMTP_USER
|
|
335
337
|
SMTP_PASS=$SMTP_PASS
|
|
336
|
-
PASSPORT_UNVERIFIED_AUTH=$PASSPORT_UNVERIFIED_AUTH
|
|
337
|
-
BUNNYNET_API_KEY=$BUNNYNET_API_KEY
|
|
338
338
|
SENDGRID_API_KEY=$SENDGRID_API_KEY
|
|
339
|
+
GA_MEASUREMENT_ID=$GA_MEASUREMENT_ID
|
|
340
|
+
GA_API_SECRET=$GA_API_SECRET
|
|
341
|
+
FB_PIXEL_ID=$FB_PIXEL_ID
|
|
342
|
+
FB_GRAPH_TOKEN=$FB_GRAPH_TOKEN
|
|
343
|
+
TIKTOK_PIXEL_ID=$TIKTOK_PIXEL_ID
|
|
344
|
+
TIKTOK_ACCESS_TOKEN=$TIKTOK_ACCESS_TOKEN
|
|
345
|
+
AWIN_ADVERTISER_ID=$AWIN_ADVERTISER_ID
|
|
346
|
+
AWIN_API_KEY=$AWIN_API_KEY
|
|
339
347
|
TINYERP_TOKEN=$TINYERP_TOKEN
|
|
340
348
|
GALAXPAY_PARTNER_ID=$GALAXPAY_PARTNER_ID
|
|
341
349
|
GALAXPAY_PARTNER_HASH=$GALAXPAY_PARTNER_HASH
|
|
@@ -344,12 +352,8 @@ runs:
|
|
|
344
352
|
FRENET_TOKEN=$FRENET_TOKEN
|
|
345
353
|
GALAXPAY_ID=$GALAXPAY_ID
|
|
346
354
|
GALAXPAY_HASH=$GALAXPAY_HASH
|
|
347
|
-
GA_MEASUREMENT_ID=$GA_MEASUREMENT_ID
|
|
348
|
-
GA_API_SECRET=$GA_API_SECRET
|
|
349
|
-
FB_PIXEL_ID=$FB_PIXEL_ID
|
|
350
|
-
FB_GRAPH_TOKEN=$FB_GRAPH_TOKEN
|
|
351
355
|
JADLOG_CONTRACT_TOKEN=$JADLOG_CONTRACT_TOKEN
|
|
352
|
-
PAGARME_ENCRYPT_KEY=$
|
|
356
|
+
PAGARME_ENCRYPT_KEY=$PAGARME_ENCRYPT_KEY
|
|
353
357
|
PAGARME_TOKEN=$PAGARME_TOKEN
|
|
354
358
|
PAGARME_PARTNER_ID=$PAGARME_PARTNER_ID
|
|
355
359
|
PAGHIPER_TOKEN=$PAGHIPER_TOKEN
|
|
@@ -362,8 +366,6 @@ runs:
|
|
|
362
366
|
CORREIOS_POSTCARD=$CORREIOS_POSTCARD
|
|
363
367
|
PAGARMEV5_API_TOKEN=$PAGARMEV5_API_TOKEN
|
|
364
368
|
PAGARMEV5_PUBLIC_KEY=$PAGARMEV5_PUBLIC_KEY
|
|
365
|
-
TIKTOK_ACCESS_TOKEN=$TIKTOK_ACCESS_TOKEN
|
|
366
|
-
TIKTOK_PIXEL_ID=$TIKTOK_PIXEL_ID
|
|
367
369
|
" > functions/.env
|
|
368
370
|
if [[ -f "functions/public.env" ]]; then
|
|
369
371
|
cat functions/public.env >> functions/.env
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.44.
|
|
4
|
+
"version": "2.44.7",
|
|
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>",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"@commitlint/cli": "^19.8.1",
|
|
29
29
|
"@commitlint/config-conventional": "^19.8.1",
|
|
30
30
|
"@commitlint/rules": "^19.8.1",
|
|
31
|
-
"@types/node": "^20.19.
|
|
31
|
+
"@types/node": "^20.19.1",
|
|
32
32
|
"commit-and-tag-version": "^12.5.1",
|
|
33
33
|
"dotenv": "^16.5.0",
|
|
34
34
|
"eslint": "^8.57.1",
|
|
35
35
|
"husky": "^9.1.7",
|
|
36
|
-
"lint-staged": "^16.1.
|
|
36
|
+
"lint-staged": "^16.1.2",
|
|
37
37
|
"tailwindcss": "^3.4.17",
|
|
38
38
|
"ts-node": "^10.9.2",
|
|
39
39
|
"turbo": "^2.5.4",
|
|
@@ -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.
|
|
45
|
+
"@cloudcommerce/eslint": "2.44.7"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|