cloudcommerce 2.16.9 → 2.17.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +2 -2
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 [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [2.17.1](https://github.com/ecomplus/cloud-commerce/compare/v2.17.0...v2.17.1) (2024-05-07)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **emails:** Ensure first email using new order template ([738b33e](https://github.com/ecomplus/cloud-commerce/commit/738b33e3956916089c680122a7984304aa1f1627))
11
+ * **firebase:** Removing `orders-new` event for emails app ([c489fad](https://github.com/ecomplus/cloud-commerce/commit/c489fadf08e75c0141c7d1e414051a3182c8f850))
12
+
13
+ ## [2.17.0](https://github.com/ecomplus/cloud-commerce/compare/v2.16.9...v2.17.0) (2024-05-07)
14
+
15
+
16
+ ### Features
17
+
18
+ * **storefront:** Add support to Facebook sign in on login form composable ([7acee01](https://github.com/ecomplus/cloud-commerce/commit/7acee01bb8f431f5cf7eeb39459d799ad45ec7cd))
19
+ * **storefront:** Update vbeta-app script and support Facebook login on checkout ([22af14b](https://github.com/ecomplus/cloud-commerce/commit/22af14b71191053ecc1756e2c7a0742da8a1923f))
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * **deps:** Update dependency firebase-functions to v5 ([#381](https://github.com/ecomplus/cloud-commerce/issues/381)) ([ec68093](https://github.com/ecomplus/cloud-commerce/commit/ec680937de8fbe06d00e82cc1bc7991f616adc3e))
25
+ * **emails:** Better setting default sender address using `GCLOUD_PROJECT` if any ([32b5a66](https://github.com/ecomplus/cloud-commerce/commit/32b5a66803a319539d62b5974fb84f8660a7dcaa))
26
+ * **pagarme:** Properly setting links on banking billet transactions ([23cdc68](https://github.com/ecomplus/cloud-commerce/commit/23cdc68988b81350a53fda5dba49564a5d73f999))
27
+ * **passport:** Returning user registry type and display name on email identification ([2c87d3c](https://github.com/ecomplus/cloud-commerce/commit/2c87d3c7771fabf65c8d08a2f734ee9ebd2c09ee))
28
+ * **storefront:** Update login form composable to always start with link sign in (even sign up) ([4822087](https://github.com/ecomplus/cloud-commerce/commit/4822087b72f32a3352047bc6b4834b2e5c2a1de2))
29
+ * **tiny-erp:** Using `FormData` (Node.js 18) to safely escape body sent to Tiny API ([3c0c86d](https://github.com/ecomplus/cloud-commerce/commit/3c0c86dd20152e6e29a9181bd577c5f3a8ddcfb1))
30
+
5
31
  ### [2.16.9](https://github.com/ecomplus/cloud-commerce/compare/v2.16.8...v2.16.9) (2024-05-06)
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.16.9",
4
+ "version": "2.17.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>",
@@ -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.16.9"
44
+ "@cloudcommerce/eslint": "2.17.1"
45
45
  },
46
46
  "scripts": {
47
47
  "fix-install": "bash scripts/pre-install.sh && pnpm i",