cloudcommerce 2.55.1 → 2.55.3
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 +18 -0
- package/action.yml +6 -6
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
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.55.3](https://github.com/ecomplus/cloud-commerce/compare/v2.55.2...v2.55.3) (2025-12-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deps:** Update non-major dependencies ([#658](https://github.com/ecomplus/cloud-commerce/issues/658)) ([59faa91](https://github.com/ecomplus/cloud-commerce/commit/59faa9147dfae8f24f0f223db1c5b32fd9d1abca))
|
|
11
|
+
* **deps:** Update non-major dependencies ([#660](https://github.com/ecomplus/cloud-commerce/issues/660)) ([fb85de6](https://github.com/ecomplus/cloud-commerce/commit/fb85de6e0eb74ed6fea58153d64fc4b6260f62f1))
|
|
12
|
+
* **pagarme-v5:** Double check pending transaction status to cancel by expiration ([fb2de27](https://github.com/ecomplus/cloud-commerce/commit/fb2de27ee3c61e5463acdd698efa9acc09162c67))
|
|
13
|
+
* **storefront:** Updating checkout vbeta-app script version ([0449b33](https://github.com/ecomplus/cloud-commerce/commit/0449b33a13b8898e11bafec6f77a2fe295e5bebd))
|
|
14
|
+
* **yapay:** Removing (bad) payment link on Pix payments ([22f229f](https://github.com/ecomplus/cloud-commerce/commit/22f229f119293b3bb1e641ba8fd6f033aa03c2c9))
|
|
15
|
+
|
|
16
|
+
## [2.55.2](https://github.com/ecomplus/cloud-commerce/compare/v2.55.1...v2.55.2) (2025-12-05)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **yapay:** Fix handling buyer phone number on create transaction ([327228e](https://github.com/ecomplus/cloud-commerce/commit/327228eb5826e02858828111a6c1c47924b7da91))
|
|
22
|
+
|
|
5
23
|
## [2.55.1](https://github.com/ecomplus/cloud-commerce/compare/v2.55.0...v2.55.1) (2025-12-05)
|
|
6
24
|
|
|
7
25
|
|
package/action.yml
CHANGED
|
@@ -133,7 +133,7 @@ runs:
|
|
|
133
133
|
cache: 'npm'
|
|
134
134
|
cache-dependency-path: '**/package-lock.json'
|
|
135
135
|
|
|
136
|
-
- uses: actions/cache@
|
|
136
|
+
- uses: actions/cache@v5
|
|
137
137
|
id: npm-cache-root
|
|
138
138
|
with:
|
|
139
139
|
path: node_modules
|
|
@@ -152,7 +152,7 @@ runs:
|
|
|
152
152
|
echo "BIN_PATH=${lib_path/\/lib//bin}" >> $GITHUB_OUTPUT
|
|
153
153
|
|
|
154
154
|
- if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
|
155
|
-
uses: actions/cache@
|
|
155
|
+
uses: actions/cache@v5
|
|
156
156
|
id: npm-g-cache
|
|
157
157
|
with:
|
|
158
158
|
path: |
|
|
@@ -215,27 +215,27 @@ runs:
|
|
|
215
215
|
run: echo "deploy_codebase=ssr" >> $GITHUB_ENV
|
|
216
216
|
|
|
217
217
|
- if: env.deploy_codebase == '' || env.deploy_codebase == 'many'
|
|
218
|
-
uses: actions/cache@
|
|
218
|
+
uses: actions/cache@v5
|
|
219
219
|
id: npm-cache-many
|
|
220
220
|
with:
|
|
221
221
|
path: functions/many/node_modules
|
|
222
222
|
key: ${{ runner.os }}-npm-${{ hashFiles('functions/many/package-lock.json') }}
|
|
223
223
|
|
|
224
224
|
- if: env.deploy_codebase == '' || env.deploy_codebase == 'ssr'
|
|
225
|
-
uses: actions/cache@
|
|
225
|
+
uses: actions/cache@v5
|
|
226
226
|
id: npm-cache-ssr
|
|
227
227
|
with:
|
|
228
228
|
path: functions/ssr/node_modules
|
|
229
229
|
key: ${{ runner.os }}-npm-${{ hashFiles('functions/ssr/package-lock.json') }}
|
|
230
230
|
|
|
231
231
|
- if: env.deploy_codebase == '' || env.deploy_codebase == 'ssr'
|
|
232
|
-
uses: actions/cache@
|
|
232
|
+
uses: actions/cache@v5
|
|
233
233
|
with:
|
|
234
234
|
path: functions/ssr/.cache
|
|
235
235
|
key: ${{ runner.os }}-${{ env.year }}-sf-${{ hashFiles('functions/ssr/public/**/*') }}
|
|
236
236
|
|
|
237
237
|
- if: env.deploy_codebase == '' || env.deploy_codebase == 'with-apps'
|
|
238
|
-
uses: actions/cache@
|
|
238
|
+
uses: actions/cache@v5
|
|
239
239
|
id: npm-cache-with-apps
|
|
240
240
|
with:
|
|
241
241
|
path: functions/with-apps/node_modules
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.55.
|
|
4
|
+
"version": "2.55.3",
|
|
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,24 +25,24 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@commitlint/cli": "^20.
|
|
29
|
-
"@commitlint/config-conventional": "^20.
|
|
30
|
-
"@commitlint/rules": "^20.
|
|
31
|
-
"@types/node": "^20.19.
|
|
32
|
-
"commit-and-tag-version": "^12.6.
|
|
28
|
+
"@commitlint/cli": "^20.2.0",
|
|
29
|
+
"@commitlint/config-conventional": "^20.2.0",
|
|
30
|
+
"@commitlint/rules": "^20.2.0",
|
|
31
|
+
"@types/node": "^20.19.26",
|
|
32
|
+
"commit-and-tag-version": "^12.6.1",
|
|
33
33
|
"dotenv": "^17.2.3",
|
|
34
34
|
"eslint": "^8.57.1",
|
|
35
35
|
"husky": "^9.1.7",
|
|
36
36
|
"lint-staged": "^16.2.7",
|
|
37
|
-
"tailwindcss": "^3.4.
|
|
37
|
+
"tailwindcss": "^3.4.19",
|
|
38
38
|
"ts-node": "^10.9.2",
|
|
39
|
-
"turbo": "^2.6.
|
|
39
|
+
"turbo": "^2.6.3",
|
|
40
40
|
"typescript": "~5.9.3",
|
|
41
41
|
"uglify-js": "^3.19.3",
|
|
42
42
|
"vite": "^5.4.21",
|
|
43
43
|
"vitest": "^2.1.9",
|
|
44
44
|
"zx": "^8.8.5",
|
|
45
|
-
"@cloudcommerce/eslint": "2.55.
|
|
45
|
+
"@cloudcommerce/eslint": "2.55.3"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|