cloudcommerce 2.42.3 → 2.42.5

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,21 @@
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.42.5](https://github.com/ecomplus/cloud-commerce/compare/v2.42.4...v2.42.5) (2025-05-10)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **api:** Set `response.data` as `undefined` on 204 (no content) ([07e95ef](https://github.com/ecomplus/cloud-commerce/commit/07e95efb839f18db94b40d47c178c859f4971082))
11
+ * **loyalty-points:** Fix setting first points (new array) to new customers ([a186280](https://github.com/ecomplus/cloud-commerce/commit/a1862804b3f2f6bd45123bea4e1e75bb9847e760))
12
+
13
+ ## [2.42.4](https://github.com/ecomplus/cloud-commerce/compare/v2.42.3...v2.42.4) (2025-05-09)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **mandae:** Filter only `ready_for_shipping` orders on some executions of track routine ([c417039](https://github.com/ecomplus/cloud-commerce/commit/c41703991a72e4bda222358b5477ac2bbae65fb6))
19
+
5
20
  ## [2.42.3](https://github.com/ecomplus/cloud-commerce/compare/v2.42.2...v2.42.3) (2025-05-08)
6
21
 
7
22
 
package/action.yml CHANGED
@@ -147,18 +147,18 @@ runs:
147
147
  ${{ steps.npm-paths.outputs.LIB_PATH }}
148
148
  ${{ steps.npm-paths.outputs.BIN_PATH }}
149
149
  ~/.npm-global/bin
150
- key: ${{ runner.os }}-npm-g-firebase-tools-14.3.0-1
150
+ key: ${{ runner.os }}-npm-g-firebase-tools-14.3.1-1
151
151
 
152
152
  - if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
153
153
  name: Ensure firebase-tools is installed
154
154
  shell: bash
155
155
  run: |
156
156
  if ! command -v firebase &> /dev/null; then
157
- npm i --location=global firebase-tools@14.3.0
157
+ npm i --location=global firebase-tools@14.3.1
158
158
  else
159
159
  INSTALLED_VERSION=$(firebase --version)
160
- if [[ "$INSTALLED_VERSION" != "14.3.0" ]]; then
161
- npm i --location=global firebase-tools@14.3.0
160
+ if [[ "$INSTALLED_VERSION" != "14.3.1" ]]; then
161
+ npm i --location=global firebase-tools@14.3.1
162
162
  fi
163
163
  fi
164
164
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloudcommerce",
3
3
  "type": "module",
4
- "version": "2.42.3",
4
+ "version": "2.42.5",
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.19",
43
43
  "vitest": "^2.1.9",
44
44
  "zx": "^8.5.3",
45
- "@cloudcommerce/eslint": "2.42.3"
45
+ "@cloudcommerce/eslint": "2.42.5"
46
46
  },
47
47
  "scripts": {
48
48
  "fix-install": "bash scripts/pre-install.sh && pnpm i",