cloudcommerce 2.35.2 → 2.36.1
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 +25 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
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.36.1](https://github.com/ecomplus/cloud-commerce/compare/v2.36.0...v2.36.1) (2025-01-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **emails:** Fixing Resend API endpoint ([5ccd101](https://github.com/ecomplus/cloud-commerce/commit/5ccd10183f521d1f86c9d2444e43f3ace5476a25))
|
|
11
|
+
* **storefront:** Filter options by category/brand name instead of slug on search showcase CMS fields ([c5d7623](https://github.com/ecomplus/cloud-commerce/commit/c5d76238a7590ba3b1fb92943d12cce9c7bebed7))
|
|
12
|
+
|
|
13
|
+
## [2.36.0](https://github.com/ecomplus/cloud-commerce/compare/v2.35.2...v2.36.0) (2025-01-01)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **storefront:** New missing `searchShowcaseCmsFields` from search showcase composable ([52c14cd](https://github.com/ecomplus/cloud-commerce/commit/52c14cdfa529a2f4d4fc9a299baa46f814418cd5))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **deps:** Update non-major dependencies ([#511](https://github.com/ecomplus/cloud-commerce/issues/511)) ([c3538d8](https://github.com/ecomplus/cloud-commerce/commit/c3538d866e070097fdd43aa16f5a8e09d8a3e1de))
|
|
24
|
+
* **emails:** Intercept SMTP to Resend to try with REST API instead ([89c89e2](https://github.com/ecomplus/cloud-commerce/commit/89c89e2a1004aecec30da6357be02fa8780e9aa7))
|
|
25
|
+
* **storefront:** On CMS content pages (folder collections) add content entry to page start ([acaa62d](https://github.com/ecomplus/cloud-commerce/commit/acaa62dae9271309f8a1ec22c7299dcbe16babed))
|
|
26
|
+
* **storefront:** Specifying `CmsField` type widget options for store data with `select:*` ([10c1d66](https://github.com/ecomplus/cloud-commerce/commit/10c1d6632a61d8fba90f7bce1afc16cd72de7974))
|
|
27
|
+
* **storefront:** Specifying `CmsField` type widget options for store data with custom field to value ([2a6cb91](https://github.com/ecomplus/cloud-commerce/commit/2a6cb9109ccb7f2f2004c10fc388db94312cb8ac))
|
|
28
|
+
* **storefront:** Updating Decap CMS styles to hide "no fields" alert on some sections objects ([107f294](https://github.com/ecomplus/cloud-commerce/commit/107f294f5e81f869f6fbd7fc8220304416d19ef2))
|
|
29
|
+
|
|
5
30
|
## [2.35.2](https://github.com/ecomplus/cloud-commerce/compare/v2.35.1...v2.35.2) (2024-12-27)
|
|
6
31
|
|
|
7
32
|
## [2.35.1](https://github.com/ecomplus/cloud-commerce/compare/v2.35.0...v2.35.1) (2024-12-27)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.36.1",
|
|
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>",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"dotenv": "^16.4.7",
|
|
34
34
|
"eslint": "^8.57.1",
|
|
35
35
|
"husky": "^9.1.7",
|
|
36
|
-
"lint-staged": "^15.
|
|
36
|
+
"lint-staged": "^15.3.0",
|
|
37
37
|
"tailwindcss": "^3.4.17",
|
|
38
38
|
"ts-node": "^10.9.2",
|
|
39
39
|
"turbo": "^2.3.3",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"uglify-js": "^3.19.3",
|
|
42
42
|
"vite": "^5.4.11",
|
|
43
43
|
"vitest": "^2.1.8",
|
|
44
|
-
"zx": "^8.
|
|
45
|
-
"@cloudcommerce/eslint": "2.
|
|
44
|
+
"zx": "^8.3.0",
|
|
45
|
+
"@cloudcommerce/eslint": "2.36.1"
|
|
46
46
|
},
|
|
47
47
|
"packageManager": "pnpm@8.15.7",
|
|
48
48
|
"scripts": {
|