cloudcommerce 2.27.1 → 2.27.2
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 +12 -0
- package/action.yml +2 -2
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
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.27.2](https://github.com/ecomplus/cloud-commerce/compare/v2.27.1...v2.27.2) (2024-09-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deps:** Update non-major dependencies ([#458](https://github.com/ecomplus/cloud-commerce/issues/458)) ([93217df](https://github.com/ecomplus/cloud-commerce/commit/93217df9a7af01252caf116172f74ab43cd3315a))
|
|
11
|
+
* **storefront:** Adding breadcrumb for parent category on category pages ([cb6f954](https://github.com/ecomplus/cloud-commerce/commit/cb6f95450c87178d53c295a8e1fccd0c44fa97df))
|
|
12
|
+
* **storefront:** Ensure await auth ready on SPA with account route ([9082cc9](https://github.com/ecomplus/cloud-commerce/commit/9082cc9475fc1843d7b98ebe0b0a026e4b5d13e8))
|
|
13
|
+
* **storefront:** Prevent hydration mismatch errors with `<SocialNetworkLink>` for whatsapp ([ab34c3f](https://github.com/ecomplus/cloud-commerce/commit/ab34c3fbffb8deb2020af290779de4f80503e2f0))
|
|
14
|
+
* **storefront:** Update `<SocialNetworkLink>` using api.whatsapp on SSR ([a829057](https://github.com/ecomplus/cloud-commerce/commit/a82905794eb652bfa837de110ded82e7c0f47280))
|
|
15
|
+
* **storefront:** Update dependency Vue to ^3.5.8 ([#457](https://github.com/ecomplus/cloud-commerce/issues/457)) ([46c9828](https://github.com/ecomplus/cloud-commerce/commit/46c9828bc931fa7164ff3e947ed5ae683e04e5c3))
|
|
16
|
+
|
|
5
17
|
## [2.27.1](https://github.com/ecomplus/cloud-commerce/compare/v2.27.0...v2.27.1) (2024-09-20)
|
|
6
18
|
|
|
7
19
|
|
package/action.yml
CHANGED
|
@@ -140,11 +140,11 @@ runs:
|
|
|
140
140
|
${{ steps.npm-paths.outputs.LIB_PATH }}
|
|
141
141
|
${{ steps.npm-paths.outputs.BIN_PATH }}
|
|
142
142
|
~/.npm-global/bin
|
|
143
|
-
key: ${{ runner.os }}-npm-g-firebase-tools-13.
|
|
143
|
+
key: ${{ runner.os }}-npm-g-firebase-tools-13.19.0
|
|
144
144
|
|
|
145
145
|
- if: github.event_name == 'push' && steps.npm-g-cache.outputs.cache-hit != 'true'
|
|
146
146
|
shell: bash
|
|
147
|
-
run: npm i --location=global firebase-tools@13.
|
|
147
|
+
run: npm i --location=global firebase-tools@13.19.0
|
|
148
148
|
|
|
149
149
|
- if: github.event_name == 'push'
|
|
150
150
|
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.27.
|
|
4
|
+
"version": "2.27.2",
|
|
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>",
|
|
@@ -25,24 +25,24 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@commitlint/cli": "^19.
|
|
29
|
-
"@commitlint/config-conventional": "^19.
|
|
30
|
-
"@commitlint/rules": "^19.
|
|
28
|
+
"@commitlint/cli": "^19.5.0",
|
|
29
|
+
"@commitlint/config-conventional": "^19.5.0",
|
|
30
|
+
"@commitlint/rules": "^19.5.0",
|
|
31
31
|
"@types/node": "^18.19.50",
|
|
32
|
-
"commit-and-tag-version": "^12.4.
|
|
32
|
+
"commit-and-tag-version": "^12.4.4",
|
|
33
33
|
"dotenv": "^16.4.5",
|
|
34
|
-
"eslint": "^8.57.
|
|
35
|
-
"husky": "^9.1.
|
|
34
|
+
"eslint": "^8.57.1",
|
|
35
|
+
"husky": "^9.1.6",
|
|
36
36
|
"lint-staged": "^15.2.10",
|
|
37
|
-
"tailwindcss": "^3.4.
|
|
37
|
+
"tailwindcss": "^3.4.13",
|
|
38
38
|
"ts-node": "^10.9.2",
|
|
39
|
-
"turbo": "^2.1.
|
|
39
|
+
"turbo": "^2.1.2",
|
|
40
40
|
"typescript": "~5.6.2",
|
|
41
41
|
"uglify-js": "^3.19.3",
|
|
42
42
|
"vite": "^5.4.3",
|
|
43
|
-
"vitest": "^2.
|
|
44
|
-
"zx": "^8.1.
|
|
45
|
-
"@cloudcommerce/eslint": "2.27.
|
|
43
|
+
"vitest": "^2.1.1",
|
|
44
|
+
"zx": "^8.1.8",
|
|
45
|
+
"@cloudcommerce/eslint": "2.27.2"
|
|
46
46
|
},
|
|
47
47
|
"packageManager": "pnpm@8.15.7",
|
|
48
48
|
"scripts": {
|