cloudcommerce 2.30.0 → 2.31.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 +23 -0
- package/action.yml +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
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.31.0](https://github.com/ecomplus/cloud-commerce/compare/v2.30.1...v2.31.0) (2024-12-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **storefront:** Start exposing default `cmsFields` from composables, first on `use-banner` ([facde99](https://github.com/ecomplus/cloud-commerce/commit/facde99eb8488f532407520b70f57be5d1de9539))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **feeds:** Stop bypassing all GitHub API response headers on proxy ([8775565](https://github.com/ecomplus/cloud-commerce/commit/87755657204ee2bb1f2acc58fcb5901ee36669ba))
|
|
16
|
+
* **storefront:** Updating vbeta-app script version ([db79d84](https://github.com/ecomplus/cloud-commerce/commit/db79d8496f9c3b3ce3c32f82fcb5e6ec8d008d0c))
|
|
17
|
+
|
|
18
|
+
## [2.30.1](https://github.com/ecomplus/cloud-commerce/compare/v2.30.0...v2.30.1) (2024-12-06)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **discounts:** Properly applying kit discounts on subtotal with proportional quantity ([01b6933](https://github.com/ecomplus/cloud-commerce/commit/01b6933e74e5100edc02ffbe6ab7501188c40739))
|
|
24
|
+
* **feeds:** Better handling Store API authentication errors on GitHub API proxy ([f655904](https://github.com/ecomplus/cloud-commerce/commit/f6559043f073c03906aa73e70a2a4972697fffad))
|
|
25
|
+
* **feeds:** Check req method and skip body on GET requests within GitHub API proxy ([7fca67c](https://github.com/ecomplus/cloud-commerce/commit/7fca67ca32c06cc7135b5ca8e87b925b9c86b2b9))
|
|
26
|
+
* **feeds:** CORS for GitHub API proxy and properly reponse headers bypass ([85bdcae](https://github.com/ecomplus/cloud-commerce/commit/85bdcae746a1031ed462001ab8852ca3d79e0004))
|
|
27
|
+
|
|
5
28
|
## [2.30.0](https://github.com/ecomplus/cloud-commerce/compare/v2.29.20...v2.30.0) (2024-12-04)
|
|
6
29
|
|
|
7
30
|
|
package/action.yml
CHANGED
|
@@ -142,11 +142,11 @@ runs:
|
|
|
142
142
|
${{ steps.npm-paths.outputs.LIB_PATH }}
|
|
143
143
|
${{ steps.npm-paths.outputs.BIN_PATH }}
|
|
144
144
|
~/.npm-global/bin
|
|
145
|
-
key: ${{ runner.os }}-npm-g-firebase-tools-13.
|
|
145
|
+
key: ${{ runner.os }}-npm-g-firebase-tools-13.28.0
|
|
146
146
|
|
|
147
147
|
- if: github.event_name == 'push' && steps.npm-g-cache.outputs.cache-hit != 'true'
|
|
148
148
|
shell: bash
|
|
149
|
-
run: npm i --location=global firebase-tools@13.
|
|
149
|
+
run: npm i --location=global firebase-tools@13.28.0
|
|
150
150
|
|
|
151
151
|
- if: github.event_name == 'push'
|
|
152
152
|
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.31.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.4.11",
|
|
43
43
|
"vitest": "^2.1.7",
|
|
44
44
|
"zx": "^8.2.4",
|
|
45
|
-
"@cloudcommerce/eslint": "2.
|
|
45
|
+
"@cloudcommerce/eslint": "2.31.0"
|
|
46
46
|
},
|
|
47
47
|
"packageManager": "pnpm@8.15.7",
|
|
48
48
|
"scripts": {
|