cloudcommerce 2.24.2 → 2.25.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 +21 -0
- package/action.yml +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
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.25.0](https://github.com/ecomplus/cloud-commerce/compare/v2.24.3...v2.25.0) (2024-08-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **storefront:** Emitting custom `c_search_empty` gtag (to GA) event on showcase with no results ([4daf370](https://github.com/ecomplus/cloud-commerce/commit/4daf370a6cae095909794ecd85fd62fc6cb3e382))
|
|
11
|
+
* **storefront:** New methods `loadToCart` and `loadKitItems` returned on product card composabe ([abad411](https://github.com/ecomplus/cloud-commerce/commit/abad4115318d67d693274e90554cdadbda9eedd5))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **storefront:** Properly setting optional props from non-required fields on `InferCmsOutput` ([ac84602](https://github.com/ecomplus/cloud-commerce/commit/ac8460283d74c02d0f979b11c8c00fc39d619f98))
|
|
17
|
+
|
|
18
|
+
## [2.24.3](https://github.com/ecomplus/cloud-commerce/compare/v2.24.2...v2.24.3) (2024-08-02)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **pagarme:** Handle optional `env.PAGARME_WEBHOOK_SKIP_SIG` for temp signature skip ([bac8889](https://github.com/ecomplus/cloud-commerce/commit/bac8889e72bb920081d980dcc3a047e062511f79))
|
|
24
|
+
* **pagarme:** Read transaction on pagar.me API when webhook signature not verified ([69246a3](https://github.com/ecomplus/cloud-commerce/commit/69246a338f210e4333aca92a0e163e0f669b737d))
|
|
25
|
+
|
|
5
26
|
## [2.24.2](https://github.com/ecomplus/cloud-commerce/compare/v2.24.1...v2.24.2) (2024-08-01)
|
|
6
27
|
|
|
7
28
|
|
package/action.yml
CHANGED
|
@@ -138,11 +138,11 @@ runs:
|
|
|
138
138
|
${{ steps.npm-paths.outputs.LIB_PATH }}
|
|
139
139
|
${{ steps.npm-paths.outputs.BIN_PATH }}
|
|
140
140
|
~/.npm-global/bin
|
|
141
|
-
key: ${{ runner.os }}-npm-g-firebase-tools-13.
|
|
141
|
+
key: ${{ runner.os }}-npm-g-firebase-tools-13.15.0
|
|
142
142
|
|
|
143
143
|
- if: github.event_name == 'push' && steps.npm-g-cache.outputs.cache-hit != 'true'
|
|
144
144
|
shell: bash
|
|
145
|
-
run: npm i --location=global firebase-tools@13.
|
|
145
|
+
run: npm i --location=global firebase-tools@13.15.0
|
|
146
146
|
|
|
147
147
|
- if: github.event_name == 'push'
|
|
148
148
|
uses: dorny/paths-filter@v3.0.2
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.25.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>",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"vite": "^5.3.5",
|
|
43
43
|
"vitest": "^1.6.0",
|
|
44
44
|
"zx": "^8.1.4",
|
|
45
|
-
"@cloudcommerce/eslint": "2.
|
|
45
|
+
"@cloudcommerce/eslint": "2.25.0"
|
|
46
46
|
},
|
|
47
47
|
"packageManager": "pnpm@8.15.7",
|
|
48
48
|
"scripts": {
|