cloudcommerce 2.26.4 → 2.27.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 +26 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
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.27.0](https://github.com/ecomplus/cloud-commerce/compare/v2.26.5...v2.27.0) (2024-09-11)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **storefront:** Export new `addCartItemMiddleware` from shopping cart ([176d162](https://github.com/ecomplus/cloud-commerce/commit/176d1624e6107c53d0003f695656078c3f8762be))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **cli:** Updating default firebase.json with new `emulators.singleProjectMode` ([4b984dd](https://github.com/ecomplus/cloud-commerce/commit/4b984ddd5e1a664fa9894f5fa3671432bcba4d3a))
|
|
16
|
+
* **deps:** Update non-major dependencies ([#452](https://github.com/ecomplus/cloud-commerce/issues/452)) ([fcff743](https://github.com/ecomplus/cloud-commerce/commit/fcff74313ec8ba18f4aeae90ba503bd6dbeaf56a))
|
|
17
|
+
* **storefront:** Prevent error with undefined `$storefront.onLoad` on simpler static site usage ([06afd2e](https://github.com/ecomplus/cloud-commerce/commit/06afd2ed7417a732fea82d27e7a9d3491dbf2d87))
|
|
18
|
+
* **storefront:** Prevent error with undefined `$storefront.onLoad` on simpler static site usage ([527b063](https://github.com/ecomplus/cloud-commerce/commit/527b0637d429de5664fe977721cf1cec3f719869))
|
|
19
|
+
* **storefront:** Setting gtag `user_data` for enhanced conversion if `window.GTAG_USER_DATA` is set ([205b8ea](https://github.com/ecomplus/cloud-commerce/commit/205b8ea517b814e6ffd5ec4c32936a62cc10a0dd))
|
|
20
|
+
* **storefront:** Update `usePageHero` to pass custom hero slider fields on content ([ffb2391](https://github.com/ecomplus/cloud-commerce/commit/ffb239175e5b7e6315d528a04b81164f8f69eb9f))
|
|
21
|
+
* **storefront:** Update Vue to ^3.5.3 ([#453](https://github.com/ecomplus/cloud-commerce/issues/453)) ([1b26ced](https://github.com/ecomplus/cloud-commerce/commit/1b26ced9500a1de4a08f172ba61cfb23b4eb5977))
|
|
22
|
+
|
|
23
|
+
## [2.26.5](https://github.com/ecomplus/cloud-commerce/compare/v2.26.4...v2.26.5) (2024-09-04)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* **cli:** Update bunny.net CI bypassing CDN cache and SWR on /_feeds/ URLs ([7c2ff07](https://github.com/ecomplus/cloud-commerce/commit/7c2ff0792d07bfbf2121d8589c16ba29d8e0d7c9))
|
|
29
|
+
* **storefront:** Updating Window TS declaration without `$prefetch` ([e9178b4](https://github.com/ecomplus/cloud-commerce/commit/e9178b4c74f2a55e1e326f837021cc5823fa8f98))
|
|
30
|
+
|
|
5
31
|
## [2.26.4](https://github.com/ecomplus/cloud-commerce/compare/v2.26.3...v2.26.4) (2024-09-04)
|
|
6
32
|
|
|
7
33
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.27.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.4.1",
|
|
29
29
|
"@commitlint/config-conventional": "^19.4.1",
|
|
30
30
|
"@commitlint/rules": "^19.4.1",
|
|
31
|
-
"@types/node": "^18.19.
|
|
31
|
+
"@types/node": "^18.19.50",
|
|
32
32
|
"commit-and-tag-version": "^12.4.2",
|
|
33
33
|
"dotenv": "^16.4.5",
|
|
34
34
|
"eslint": "^8.57.0",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"turbo": "^2.1.1",
|
|
40
40
|
"typescript": "~5.5.4",
|
|
41
41
|
"uglify-js": "^3.19.3",
|
|
42
|
-
"vite": "^5.4.
|
|
42
|
+
"vite": "^5.4.3",
|
|
43
43
|
"vitest": "^2.0.5",
|
|
44
44
|
"zx": "^8.1.5",
|
|
45
|
-
"@cloudcommerce/eslint": "2.
|
|
45
|
+
"@cloudcommerce/eslint": "2.27.0"
|
|
46
46
|
},
|
|
47
47
|
"packageManager": "pnpm@8.15.7",
|
|
48
48
|
"scripts": {
|