cloudcommerce 2.15.8 → 2.16.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 +29 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [2.16.0](https://github.com/ecomplus/cloud-commerce/compare/v2.15.9...v2.16.0) (2024-05-02)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **storefront:** Add support to Google sign in on login form composable ([ca408a4](https://github.com/ecomplus/cloud-commerce/commit/ca408a42ee0add8849cdcc6ea2acff290c2d6c2b))
|
|
11
|
+
* **storefront:** Update vbeta-app script and handle login inside checkout page ([2ffb97f](https://github.com/ecomplus/cloud-commerce/commit/2ffb97f1836370aa0b6833a771028737827c7a10))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **cli:** Update bunny.net (CI) edge rules to fast cache not found responses ([7ff11be](https://github.com/ecomplus/cloud-commerce/commit/7ff11be851686807fae8ae430cc562700c7b73e8))
|
|
17
|
+
* **cli:** Update bunny.net edge rules to cache (CDN-only) Partytown scripts ([f3c9021](https://github.com/ecomplus/cloud-commerce/commit/f3c902110523bda1f28d839a4f5da8b1a17c005c))
|
|
18
|
+
* **cli:** Update CI to cache 404 responses on feeds/app routes (CDN only) ([14f9a79](https://github.com/ecomplus/cloud-commerce/commit/14f9a795712af3107c9de1d4053b6ab1bc61d510))
|
|
19
|
+
* **feeds:** Render unavailable(but visible) products to catalog as `out of stock` ([288f3ec](https://github.com/ecomplus/cloud-commerce/commit/288f3ec5963d69a516d90f2443fe40d265d5edd6))
|
|
20
|
+
* **firebase:** Try deploying app events functions with `maxInstances = 2` ([6593847](https://github.com/ecomplus/cloud-commerce/commit/65938471a677c5bad7a06c936076f979d55864f5))
|
|
21
|
+
* **ssr:** Skip purging short cache TTL (by edge rules) routes ([a51aa1a](https://github.com/ecomplus/cloud-commerce/commit/a51aa1a223a646c58a40e0f390c72cee09925441))
|
|
22
|
+
* **storefront:** Update build prod script to fix CSS filename on copied ~fallback and ~index HTML ([820b7b1](https://github.com/ecomplus/cloud-commerce/commit/820b7b1b28d4b608409d6de41106c4960797d666))
|
|
23
|
+
* **storefront:** Update customer session state to prevent early reset of `isAuthReady` ([bfae42e](https://github.com/ecomplus/cloud-commerce/commit/bfae42e5e840bdf0aa7830a4fc957d55e5f69e42))
|
|
24
|
+
|
|
25
|
+
### [2.15.9](https://github.com/ecomplus/cloud-commerce/compare/v2.15.8...v2.15.9) (2024-04-30)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **ssr:** Skiping events to GA4 (excepting purchase) when already client-side sent (gtag) ([8ea0b8b](https://github.com/ecomplus/cloud-commerce/commit/8ea0b8bd924e14bcb70a9087e309ee982fc3b655))
|
|
31
|
+
* **storefront:** Add `sent` bool status to each event object for client-side tagging support ([0d1f88a](https://github.com/ecomplus/cloud-commerce/commit/0d1f88a7750e807541119a555f5553871e44c32a))
|
|
32
|
+
* **tiny-erp:** Fix wrogn early return (false not found) on SKU import without variations ([344661d](https://github.com/ecomplus/cloud-commerce/commit/344661d9a8ee0d137ebc9696fe4d9be700282c40))
|
|
33
|
+
|
|
5
34
|
### [2.15.8](https://github.com/ecomplus/cloud-commerce/compare/v2.15.7...v2.15.8) (2024-04-30)
|
|
6
35
|
|
|
7
36
|
### [2.15.7](https://github.com/ecomplus/cloud-commerce/compare/v2.15.5...v2.15.7) (2024-04-30)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.16.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>",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"vite": "^5.2.10",
|
|
42
42
|
"vitest": "^1.5.2",
|
|
43
43
|
"zx": "^7.2.3",
|
|
44
|
-
"@cloudcommerce/eslint": "2.
|
|
44
|
+
"@cloudcommerce/eslint": "2.16.0"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|