cloudcommerce 2.20.8 → 2.21.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,25 @@
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.21.0](https://github.com/ecomplus/cloud-commerce/compare/v2.20.8...v2.21.0) (2024-06-19)
6
+
7
+
8
+ ### Features
9
+
10
+ * **feeds:** Adding most frequent search terms URLs to sitemap ([5810edb](https://github.com/ecomplus/cloud-commerce/commit/5810edb5bdb34df345895c9aab33fab8762707c0))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **api:** Prevent encoding expression chars on `params` object keys ([b424750](https://github.com/ecomplus/cloud-commerce/commit/b424750dfbe4ac5ea166f78f3b98b527e6de5cdb))
16
+ * **api:** Updating types for Products interface and default search v2 listed fields ([bbac369](https://github.com/ecomplus/cloud-commerce/commit/bbac369958b2a32c45f895e7dd29ab3619055195))
17
+ * **deps:** Update non-major dependencies ([#399](https://github.com/ecomplus/cloud-commerce/issues/399)) ([d9fb67c](https://github.com/ecomplus/cloud-commerce/commit/d9fb67c7c0b9c45333422de4db426c3fb5bdf600))
18
+ * **deps:** Update non-major dependencies ([#403](https://github.com/ecomplus/cloud-commerce/issues/403)) ([562981d](https://github.com/ecomplus/cloud-commerce/commit/562981d6c4e0c5e0e05c5004b8899bf266eadd71))
19
+ * **storefront:** Fix page main composable to preserve `searchQuery` from content on shelf sections ([9f812d6](https://github.com/ecomplus/cloud-commerce/commit/9f812d647ea89a0b6cbf82c04bc935b5d6f583f4))
20
+ * **storefront:** Limiting tooltip size to 200px by default ([b485366](https://github.com/ecomplus/cloud-commerce/commit/b4853669ba0204ebfec6aef192c716c08aad4ce6))
21
+ * **storefront:** Updating `<Drawer>` to support id and native HTML popover to interact with no-JS ([a3029a2](https://github.com/ecomplus/cloud-commerce/commit/a3029a20068168dd5ac0eafb02d6f05e41eb777f))
22
+ * **tiny-erp:** Skip unecessary order export with fulfillment status entry from tiny ([83f57b8](https://github.com/ecomplus/cloud-commerce/commit/83f57b89d4a1b22b48981e7c1f12bfa8b2555455))
23
+
5
24
  ## [2.20.8](https://github.com/ecomplus/cloud-commerce/compare/v2.20.7...v2.20.8) (2024-06-03)
6
25
 
7
26
 
package/action.yml CHANGED
@@ -138,11 +138,11 @@ runs:
138
138
  ${{ steps.npm-paths.outputs.LIB_PATH }}
139
139
  ${{ steps.npm-paths.outputs.BIN_PATH }}
140
140
  ~/.npm-global/bin
141
- key: ${{ runner.os }}-npm-g-firebase-tools-13.8.3
141
+ key: ${{ runner.os }}-npm-g-firebase-tools-13.11.1
142
142
 
143
143
  - if: github.event_name == 'push' && steps.npm-g-cache.outputs.cache-hit != 'true'
144
144
  shell: bash
145
- run: npm i --location=global firebase-tools@13.8.3
145
+ run: npm i --location=global firebase-tools@13.11.1
146
146
 
147
147
  - if: github.event_name == 'push'
148
148
  uses: dorny/paths-filter@v3.0.2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloudcommerce",
3
3
  "type": "module",
4
- "version": "2.20.8",
4
+ "version": "2.21.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,20 +28,20 @@
28
28
  "@commitlint/cli": "^19.3.0",
29
29
  "@commitlint/config-conventional": "^19.2.2",
30
30
  "@commitlint/rules": "^19.0.3",
31
- "@types/node": "^18.19.33",
31
+ "@types/node": "^18.19.34",
32
32
  "commit-and-tag-version": "^12.4.1",
33
33
  "dotenv": "^16.4.5",
34
34
  "eslint": "^8.57.0",
35
35
  "husky": "^9.0.11",
36
- "lint-staged": "^15.2.5",
36
+ "lint-staged": "^15.2.7",
37
37
  "ts-node": "^10.9.2",
38
- "turbo": "^1.13.3",
38
+ "turbo": "^1.13.4",
39
39
  "typescript": "~5.4.5",
40
- "uglify-js": "^3.17.4",
41
- "vite": "^5.2.12",
40
+ "uglify-js": "^3.18.0",
41
+ "vite": "^5.3.1",
42
42
  "vitest": "^1.6.0",
43
43
  "zx": "^8.1.2",
44
- "@cloudcommerce/eslint": "2.20.8"
44
+ "@cloudcommerce/eslint": "2.21.0"
45
45
  },
46
46
  "scripts": {
47
47
  "fix-install": "bash scripts/pre-install.sh && pnpm i",