cloudcommerce 2.29.19 → 2.30.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 +25 -0
- package/action.yml +2 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
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.30.0](https://github.com/ecomplus/cloud-commerce/compare/v2.29.20...v2.30.0) (2024-12-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **feeds:** Proxying GitHub REST API with Store API authentication on `**/repos/**` routes ([2234355](https://github.com/ecomplus/cloud-commerce/commit/2234355e0ffd7c22eb198dd2e3f950ca71af6e42))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **deps:** Update non-major dependencies ([#497](https://github.com/ecomplus/cloud-commerce/issues/497)) ([8a8f887](https://github.com/ecomplus/cloud-commerce/commit/8a8f887dedc819790f0fd9494adbd5b6604138bb))
|
|
16
|
+
* **storefront:** Update Astro to v4.16.16 ([#498](https://github.com/ecomplus/cloud-commerce/issues/498)) ([ffad6ab](https://github.com/ecomplus/cloud-commerce/commit/ffad6ab6306ccecd583f18576f439bfff2edf958))
|
|
17
|
+
|
|
18
|
+
## [2.29.20](https://github.com/ecomplus/cloud-commerce/compare/v2.29.19...v2.29.20) (2024-11-28)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **cli:** Additional status codes to skip bunny.net CDN cache within edge rule ([1af6049](https://github.com/ecomplus/cloud-commerce/commit/1af604982ac2c1b0394523279711b5a78e7d2700))
|
|
24
|
+
* **deps:** Update dependency firebase-admin to v13 ([#491](https://github.com/ecomplus/cloud-commerce/issues/491)) ([7409682](https://github.com/ecomplus/cloud-commerce/commit/7409682ade66848a285e8d2e1aee0663bec23d77))
|
|
25
|
+
* **deps:** Update non-major dependencies ([#490](https://github.com/ecomplus/cloud-commerce/issues/490)) ([ef9d89c](https://github.com/ecomplus/cloud-commerce/commit/ef9d89c326f7041920900d3386e267fccaa611e6))
|
|
26
|
+
* **firebase:** Reducing gap to refresh `apiDoc` on API events PubSub middlewares to 600ms ([658ed51](https://github.com/ecomplus/cloud-commerce/commit/658ed51867af6980606466dbc2f3a3b6ea5ec53f))
|
|
27
|
+
* **storefront:** Fix UnoCSS config generating brand colors CSS vars with custom theme options ([5934c82](https://github.com/ecomplus/cloud-commerce/commit/5934c8231044a897b37bbee134041e91d9f0962e))
|
|
28
|
+
* **storefront:** Update Astro to latest v4.16.14 ([#488](https://github.com/ecomplus/cloud-commerce/issues/488)) ([3e052f4](https://github.com/ecomplus/cloud-commerce/commit/3e052f4ca469bce773f314315842fbd0e0881576))
|
|
29
|
+
|
|
5
30
|
## [2.29.19](https://github.com/ecomplus/cloud-commerce/compare/v2.29.18...v2.29.19) (2024-11-22)
|
|
6
31
|
|
|
7
32
|
|
package/action.yml
CHANGED
|
@@ -255,6 +255,7 @@ runs:
|
|
|
255
255
|
ECOM_STORE_ID: ${{ env.ecom_store_id }}
|
|
256
256
|
GIT_BRANCH: ${{ env.git_branch }}
|
|
257
257
|
DEPLOY_CODEBASE: ${{ env.deploy_codebase }}
|
|
258
|
+
GITHUB_REPO: ${{ github.event.repository.full_name }}
|
|
258
259
|
GITHUB_TOKEN: ${{ inputs.github-persistent-token || inputs.github-token }}
|
|
259
260
|
FIREBASE_SERVICE_ACCOUNT: ${{ inputs.firebase-service-account }}
|
|
260
261
|
ECOM_AUTHENTICATION_ID: ${{ inputs.ecom-authentication-id }}
|
|
@@ -306,6 +307,7 @@ runs:
|
|
|
306
307
|
ECOM_API_KEY=$ECOM_API_KEY
|
|
307
308
|
ECOM_STORE_ID=$ECOM_STORE_ID
|
|
308
309
|
GIT_BRANCH=$GIT_BRANCH
|
|
310
|
+
GITHUB_REPO=$GITHUB_REPO
|
|
309
311
|
GITHUB_TOKEN=$GITHUB_TOKEN
|
|
310
312
|
DEPLOY_CODEBASE=$DEPLOY_CODEBASE
|
|
311
313
|
MAIL_SENDER=$MAIL_SENDER
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudcommerce",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.30.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>",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@commitlint/cli": "^19.
|
|
29
|
-
"@commitlint/config-conventional": "^19.
|
|
30
|
-
"@commitlint/rules": "^19.
|
|
31
|
-
"@types/node": "^18.19.
|
|
28
|
+
"@commitlint/cli": "^19.6.0",
|
|
29
|
+
"@commitlint/config-conventional": "^19.6.0",
|
|
30
|
+
"@commitlint/rules": "^19.6.0",
|
|
31
|
+
"@types/node": "^18.19.67",
|
|
32
32
|
"commit-and-tag-version": "^12.5.0",
|
|
33
33
|
"dotenv": "^16.4.5",
|
|
34
34
|
"eslint": "^8.57.1",
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"lint-staged": "^15.2.10",
|
|
37
37
|
"tailwindcss": "^3.4.15",
|
|
38
38
|
"ts-node": "^10.9.2",
|
|
39
|
-
"turbo": "^2.3.
|
|
40
|
-
"typescript": "~5.
|
|
39
|
+
"turbo": "^2.3.3",
|
|
40
|
+
"typescript": "~5.7.2",
|
|
41
41
|
"uglify-js": "^3.19.3",
|
|
42
42
|
"vite": "^5.4.11",
|
|
43
|
-
"vitest": "^2.1.
|
|
44
|
-
"zx": "^8.2.
|
|
45
|
-
"@cloudcommerce/eslint": "2.
|
|
43
|
+
"vitest": "^2.1.7",
|
|
44
|
+
"zx": "^8.2.4",
|
|
45
|
+
"@cloudcommerce/eslint": "2.30.0"
|
|
46
46
|
},
|
|
47
47
|
"packageManager": "pnpm@8.15.7",
|
|
48
48
|
"scripts": {
|