cloudcommerce 2.49.4 → 2.50.0

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 CHANGED
@@ -2,6 +2,30 @@
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.50.0](https://github.com/ecomplus/cloud-commerce/compare/v2.49.5...v2.50.0) (2025-09-21)
6
+
7
+
8
+ ### Features
9
+
10
+ * **emails:** Handle abandoned carts and send recovery emails when enabled ([f568716](https://github.com/ecomplus/cloud-commerce/commit/f568716e131289c582c311479f965346034327fa))
11
+ * **emails:** Handle expiring loyalty points and start sending a default email template ([bebaf8f](https://github.com/ecomplus/cloud-commerce/commit/bebaf8fdd5aba05130561c014c7faba120ee0c2d))
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **deps:** Escape org dependencies from pnpm minimum release age ([b0d92af](https://github.com/ecomplus/cloud-commerce/commit/b0d92af6a3df941e716153c7790dbb243e685bc2))
17
+ * **deps:** Update dependency axios to v1.12.0 [security] ([#622](https://github.com/ecomplus/cloud-commerce/issues/622)) ([e2b1619](https://github.com/ecomplus/cloud-commerce/commit/e2b16194660067d032c8459703087bd1d7f75f5f))
18
+ * **deps:** Update non-major dependencies ([#623](https://github.com/ecomplus/cloud-commerce/issues/623)) ([98a8f9e](https://github.com/ecomplus/cloud-commerce/commit/98a8f9e093f76aa139962c9136ef3a678548a45c))
19
+ * **emails:** Update default abandoned cart emails cron and handle up to 200 carts each exec ([e6449a2](https://github.com/ecomplus/cloud-commerce/commit/e6449a2e68f6c7121389f58c0483e519a715afc3))
20
+
21
+ ## [2.49.5](https://github.com/ecomplus/cloud-commerce/compare/v2.49.4...v2.49.5) (2025-09-12)
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * **appmax:** Fix handling/debugging customer and order creation on Appmax API ([b208039](https://github.com/ecomplus/cloud-commerce/commit/b208039a19b698aee01899d6a1a283ab2866ade8))
27
+ * **paghiper:** Minor fix preventing duplicated response call on webhook (on sucess) ([b6d5d07](https://github.com/ecomplus/cloud-commerce/commit/b6d5d07923cfdb9346defc7f414071631312768f))
28
+
5
29
  ## [2.49.4](https://github.com/ecomplus/cloud-commerce/compare/v2.49.3...v2.49.4) (2025-09-08)
6
30
 
7
31
 
package/action.yml CHANGED
@@ -127,7 +127,7 @@ runs:
127
127
  uses: ouzi-dev/commit-status-updater@v2.0.2
128
128
  continue-on-error: true
129
129
 
130
- - uses: actions/setup-node@v4
130
+ - uses: actions/setup-node@v5
131
131
  with:
132
132
  node-version: 20
133
133
  cache: 'npm'
@@ -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.14.0-1
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.14.0
169
+ npm i --location=global firebase-tools@14.15.2
170
170
  else
171
171
  INSTALLED_VERSION=$(firebase --version)
172
- if [[ "$INSTALLED_VERSION" != "14.14.0" ]]; then
173
- npm i --location=global firebase-tools@14.14.0
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",
4
+ "version": "2.50.0",
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,7 +28,7 @@
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.13",
31
+ "@types/node": "^20.19.14",
32
32
  "commit-and-tag-version": "^12.6.0",
33
33
  "dotenv": "^17.2.2",
34
34
  "eslint": "^8.57.1",
@@ -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.4"
45
+ "@cloudcommerce/eslint": "2.50.0"
46
46
  },
47
47
  "scripts": {
48
48
  "fix-install": "bash scripts/pre-install.sh && pnpm i",