cloudcommerce 2.59.2 → 2.59.4
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 +0 -9
- 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.59.4](https://github.com/ecomplus/cloud-commerce/compare/v2.59.3...v2.59.4) (2026-04-30)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **apps:** Fix default imports from firebase-functions in compiled lib-mjs files ([6bef837](https://github.com/ecomplus/cloud-commerce/commit/6bef837e7b8ca4ada0dfec8e87783baabf26fb37))
|
|
11
|
+
* **ci:** Remove swap space setup step ([ce17313](https://github.com/ecomplus/cloud-commerce/commit/ce173133da55e6e30b9775262c93b2df53080d47))
|
|
12
|
+
|
|
13
|
+
## [2.59.3](https://github.com/ecomplus/cloud-commerce/compare/v2.59.2...v2.59.3) (2026-04-30)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **ci:** Use /mnt/swapfile to avoid conflict with existing runner swap ([64ffa1e](https://github.com/ecomplus/cloud-commerce/commit/64ffa1eb708c122ef61abe4eb7d520ab9f9e44dd))
|
|
19
|
+
* **ci:** Use dd instead of fallocate for extra swap space ([b350aa8](https://github.com/ecomplus/cloud-commerce/commit/b350aa84677794632cb666cb45958fd511d7f0d3))
|
|
20
|
+
* **firebase:** Replace default imports from firebase-functions subpaths with namespace imports ([98510ce](https://github.com/ecomplus/cloud-commerce/commit/98510cea7cc91a5f6da2183aa3faaaa618789b55))
|
|
21
|
+
|
|
5
22
|
## [2.59.2](https://github.com/ecomplus/cloud-commerce/compare/v2.59.1...v2.59.2) (2026-04-30)
|
|
6
23
|
|
|
7
24
|
|
package/action.yml
CHANGED
|
@@ -123,15 +123,6 @@ runs:
|
|
|
123
123
|
- shell: bash
|
|
124
124
|
run: echo "year=$(date +'%Y')" >> $GITHUB_ENV
|
|
125
125
|
|
|
126
|
-
- name: Set up swap space
|
|
127
|
-
shell: bash
|
|
128
|
-
run: |
|
|
129
|
-
sudo fallocate -l 4G /swapfile
|
|
130
|
-
sudo chmod 600 /swapfile
|
|
131
|
-
sudo mkswap /swapfile
|
|
132
|
-
sudo swapon /swapfile
|
|
133
|
-
free -h
|
|
134
|
-
|
|
135
126
|
- if: github.event_name == 'pull_request' && github.event.action != 'closed'
|
|
136
127
|
uses: ouzi-dev/commit-status-updater@v2.0.2
|
|
137
128
|
continue-on-error: true
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.59.
|
|
4
|
+
"version": "2.59.4",
|
|
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.21",
|
|
43
43
|
"vitest": "^2.1.9",
|
|
44
44
|
"zx": "^8.8.5",
|
|
45
|
-
"@cloudcommerce/eslint": "2.59.
|
|
45
|
+
"@cloudcommerce/eslint": "2.59.4"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|