cloudcommerce 2.36.23 → 2.37.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,27 @@
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.37.0](https://github.com/ecomplus/cloud-commerce/compare/v2.36.24...v2.37.0) (2025-02-21)
6
+
7
+
8
+ ### Features
9
+
10
+ * **storefront:** New `SEARCH_ENGINE_DEFAULTS` object exported from `@@sf/state/search-engine` ([82f06fa](https://github.com/ecomplus/cloud-commerce/commit/82f06fa1054206b8a9062e2ddbb504145660adf1))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **deps:** Update non-major dependencies ([#536](https://github.com/ecomplus/cloud-commerce/issues/536)) ([e0da64c](https://github.com/ecomplus/cloud-commerce/commit/e0da64cc8edc0f267571f5d8cd4f99e42b32165b))
16
+ * **ssr:** Testing IPv6 from analytics requests body for server events ([71f48d1](https://github.com/ecomplus/cloud-commerce/commit/71f48d1ef754298dae71f29b24dc0613c5bf68bc))
17
+ * **storefront:** Fixed (and simpler) product card props types ([d27da86](https://github.com/ecomplus/cloud-commerce/commit/d27da8607816386f7881c47acdddb0911294f085))
18
+
19
+ ## [2.36.24](https://github.com/ecomplus/cloud-commerce/compare/v2.36.23...v2.36.24) (2025-02-13)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * **ssr:** Prefers `x-real-ip` for client IP on analytics server events ([83dccbf](https://github.com/ecomplus/cloud-commerce/commit/83dccbf28f2958811d6e5429c4ab08af2c4b3721))
25
+
5
26
  ## [2.36.23](https://github.com/ecomplus/cloud-commerce/compare/v2.36.22...v2.36.23) (2025-02-13)
6
27
 
7
28
 
package/action.yml CHANGED
@@ -117,7 +117,7 @@ runs:
117
117
 
118
118
  - uses: actions/setup-node@v4
119
119
  with:
120
- node-version: 18
120
+ node-version: 20
121
121
  cache: 'npm'
122
122
  cache-dependency-path: '**/package-lock.json'
123
123
 
@@ -416,7 +416,7 @@ runs:
416
416
  repoToken: ${{ inputs.github-token }}
417
417
  firebaseServiceAccount: ${{ inputs.firebase-service-account }}
418
418
  channelId: ${{ (startsWith(env.git_branch, 'main-') && env.git_branch) || null }}
419
- expires: ${{ (startsWith(env.git_branch, 'main-') && '30d') || null }}
419
+ expires: ${{ (startsWith(env.git_branch, 'main-') && '30d') || '3d' }}
420
420
 
421
421
  - if: |
422
422
  github.event_name == 'pull_request' && github.event.action != 'closed'
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "cloudcommerce",
3
3
  "type": "module",
4
- "version": "2.36.23",
4
+ "version": "2.37.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>",
8
8
  "license": "MIT",
9
9
  "engines": {
10
- "node": ">=18",
11
- "pnpm": ">=7 <9"
10
+ "node": ">=20 <21",
11
+ "pnpm": ">=10 <11"
12
12
  },
13
13
  "files": [
14
14
  "/action.yml",
@@ -28,7 +28,7 @@
28
28
  "@commitlint/cli": "^19.7.1",
29
29
  "@commitlint/config-conventional": "^19.7.1",
30
30
  "@commitlint/rules": "^19.6.0",
31
- "@types/node": "^18.19.75",
31
+ "@types/node": "^20.17.19",
32
32
  "commit-and-tag-version": "^12.5.0",
33
33
  "dotenv": "^16.4.7",
34
34
  "eslint": "^8.57.1",
@@ -36,15 +36,14 @@
36
36
  "lint-staged": "^15.4.3",
37
37
  "tailwindcss": "^3.4.17",
38
38
  "ts-node": "^10.9.2",
39
- "turbo": "^2.4.0",
39
+ "turbo": "^2.4.2",
40
40
  "typescript": "~5.7.3",
41
41
  "uglify-js": "^3.19.3",
42
42
  "vite": "^5.4.14",
43
43
  "vitest": "^2.1.9",
44
44
  "zx": "^8.3.2",
45
- "@cloudcommerce/eslint": "2.36.23"
45
+ "@cloudcommerce/eslint": "2.37.0"
46
46
  },
47
- "packageManager": "pnpm@8.15.7",
48
47
  "scripts": {
49
48
  "fix-install": "bash scripts/pre-install.sh && pnpm i",
50
49
  "postinstall": "husky && pnpm run -r prepare-monorepo",