cloudcommerce 2.18.5 → 2.19.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 +27 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
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.19.0](https://github.com/ecomplus/cloud-commerce/compare/v2.18.6...v2.19.0) (2024-05-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **emails:** Test if `@inject/transactional-mails.js` exists for custom emails templates ([9c000a6](https://github.com/ecomplus/cloud-commerce/commit/9c000a673e00a801b583b79fec1fbdcd595baf7b))
|
|
11
|
+
* **feeds:** Handle optional queries `categories`, `skip_categories` and `skip_skus` on catalog ([1dba7f1](https://github.com/ecomplus/cloud-commerce/commit/1dba7f1e1bb937c4967d0805d7ecb4664cd660d8))
|
|
12
|
+
* **storefront:** New `isZipCodeRefused` returned on shipping calculator composable ([b9bc396](https://github.com/ecomplus/cloud-commerce/commit/b9bc39699ff7954eaaaeb27f87e1735786ef2a7d))
|
|
13
|
+
* **storefront:** New optional `names` filter param to `watchGtagEvents` from analytics state ([5c58718](https://github.com/ecomplus/cloud-commerce/commit/5c58718e1e966b7ef7b0ff9231702f0ca8da3c2a))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **emails:** Handle custom renders with injection from `TRANSACTIONAL_MAILS_MODULE` ([917e732](https://github.com/ecomplus/cloud-commerce/commit/917e73202b5a5b6da08d94c7f51cab6eddf7d2c8))
|
|
19
|
+
* **emails:** Removing unecessary quotes on email sender ([fbe5e76](https://github.com/ecomplus/cloud-commerce/commit/fbe5e76189cefb5649feecf73cfdc48dd1553134))
|
|
20
|
+
* **ssr:** Redirect all .html URLs by default (clean URLs) ([bd1410f](https://github.com/ecomplus/cloud-commerce/commit/bd1410f9c430c7d07ecb8942d9915b50070a4ddf))
|
|
21
|
+
* **storefront:** Update beta checkout script to ensure cart is cleared after purchase ([775de39](https://github.com/ecomplus/cloud-commerce/commit/775de39b2544c99769cd044fd463afe68617b095))
|
|
22
|
+
* **tiny-erp:** Fix matching order by number OR metafield on import from Tiny ERP updates ([2c1c0f8](https://github.com/ecomplus/cloud-commerce/commit/2c1c0f8e4ebdd8d25ca77dbb70b3878356b6bb78))
|
|
23
|
+
|
|
24
|
+
## [2.18.6](https://github.com/ecomplus/cloud-commerce/compare/v2.18.5...v2.18.6) (2024-05-19)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* **pagarme:** Preventign webhook function to respond headers twice ([489deac](https://github.com/ecomplus/cloud-commerce/commit/489deac37cd4d1b501e98f5f557443e1682e3312))
|
|
30
|
+
* **ssr:** Try fixing user IP for server sent analytics events ([281a59c](https://github.com/ecomplus/cloud-commerce/commit/281a59c1fa834a8b5aca1da41b5cabbb2b340a0f))
|
|
31
|
+
|
|
5
32
|
## [2.18.5](https://github.com/ecomplus/cloud-commerce/compare/v2.18.4...v2.18.5) (2024-05-18)
|
|
6
33
|
|
|
7
34
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.19.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.11",
|
|
42
42
|
"vitest": "^1.6.0",
|
|
43
43
|
"zx": "^7.2.3",
|
|
44
|
-
"@cloudcommerce/eslint": "2.
|
|
44
|
+
"@cloudcommerce/eslint": "2.19.0"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|