cloudcommerce 2.17.5 → 2.18.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 +28 -0
- package/action.yml +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,34 @@
|
|
|
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.18.0](https://github.com/ecomplus/cloud-commerce/compare/v2.17.6...v2.18.0) (2024-05-17)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **storefront:** Updating base head with extended json+ld for search action and offer on PDP ([5b246ea](https://github.com/ecomplus/cloud-commerce/commit/5b246eaa90a70341785036145c2c88999c63fb4c))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **api:** Updating all resource interfaces with new `upserted_at` field ([d6155f1](https://github.com/ecomplus/cloud-commerce/commit/d6155f1dc8224f6a42a4c994f8ffbcf19f55fed3))
|
|
16
|
+
* **deps:** Update non-major dependencies ([#383](https://github.com/ecomplus/cloud-commerce/issues/383)) ([689c0b3](https://github.com/ecomplus/cloud-commerce/commit/689c0b39033fcd580aef84614d51e1975185c53d))
|
|
17
|
+
* **ssr:** Prevent error counting SSR reqs to home path ([d65261f](https://github.com/ecomplus/cloud-commerce/commit/d65261f55ed0918aafa9010ec64cc91d9a6200c2))
|
|
18
|
+
* **storefront:** Fix search filters composable returning all specs options ([34edcfd](https://github.com/ecomplus/cloud-commerce/commit/34edcfd088bc926c3f3996193d7b265c63dc1c38))
|
|
19
|
+
* **storefront:** Update build prod script to fix all CSS filenames on all copied static HTML ([b7c0823](https://github.com/ecomplus/cloud-commerce/commit/b7c08232c8e1b668b99bc90318fd17ecda815988))
|
|
20
|
+
* **storefront:** Update UnoCSS to ^0.60.2 ([#382](https://github.com/ecomplus/cloud-commerce/issues/382)) ([bdc292a](https://github.com/ecomplus/cloud-commerce/commit/bdc292a346eb7f38ec2c14c5dff36dcfc2caeb66))
|
|
21
|
+
* **tiny-erp:** Early respond webhooks with OK and property queue to retry on failure ([f2f09e3](https://github.com/ecomplus/cloud-commerce/commit/f2f09e3edfe7d9cdfb94a1bc404f9fe3a4ca0c18))
|
|
22
|
+
* **tiny-erp:** Fix setting product quantity and variations price/quantity on import ([ad0a885](https://github.com/ecomplus/cloud-commerce/commit/ad0a8850fd04f8610e65a99a155c1ad19aa42659))
|
|
23
|
+
|
|
24
|
+
### [2.17.6](https://github.com/ecomplus/cloud-commerce/compare/v2.17.5...v2.17.6) (2024-05-11)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* **ssr:** Save valid SSR reqs to Firestore to purge CDN cache ([2703837](https://github.com/ecomplus/cloud-commerce/commit/2703837a042e5b71af559ab970c681026983c8ed))
|
|
30
|
+
* **storefront:** Add `sticky` optional prop to shop header composable ([94bf958](https://github.com/ecomplus/cloud-commerce/commit/94bf958ae24f1eb7837b7109d81f6c657e6ca35a))
|
|
31
|
+
* **storefront:** Properly deal with sticky header shown on scroll down ([97a8c2d](https://github.com/ecomplus/cloud-commerce/commit/97a8c2d82f04dca84807101be26e6b958fa7f52b))
|
|
32
|
+
|
|
5
33
|
### [2.17.5](https://github.com/ecomplus/cloud-commerce/compare/v2.17.4...v2.17.5) (2024-05-08)
|
|
6
34
|
|
|
7
35
|
|
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.8.3
|
|
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.8.3
|
|
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.18.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>",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@commitlint/cli": "^19.3.0",
|
|
29
29
|
"@commitlint/config-conventional": "^19.2.2",
|
|
30
30
|
"@commitlint/rules": "^19.0.3",
|
|
31
|
-
"@types/node": "^18.19.
|
|
31
|
+
"@types/node": "^18.19.33",
|
|
32
32
|
"dotenv": "^16.4.5",
|
|
33
33
|
"eslint": "^8.57.0",
|
|
34
34
|
"husky": "^9.0.11",
|
|
@@ -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.18.0"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"fix-install": "bash scripts/pre-install.sh && pnpm i",
|