cloudcommerce 2.24.1 → 2.24.3
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 +17 -0
- package/action.yml +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
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.24.3](https://github.com/ecomplus/cloud-commerce/compare/v2.24.2...v2.24.3) (2024-08-02)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **pagarme:** Handle optional `env.PAGARME_WEBHOOK_SKIP_SIG` for temp signature skip ([bac8889](https://github.com/ecomplus/cloud-commerce/commit/bac8889e72bb920081d980dcc3a047e062511f79))
|
|
11
|
+
* **pagarme:** Read transaction on pagar.me API when webhook signature not verified ([69246a3](https://github.com/ecomplus/cloud-commerce/commit/69246a338f210e4333aca92a0e163e0f669b737d))
|
|
12
|
+
|
|
13
|
+
## [2.24.2](https://github.com/ecomplus/cloud-commerce/compare/v2.24.1...v2.24.2) (2024-08-01)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **apps:** Prefering keys from app data (when available) over env vars ([7ad53c1](https://github.com/ecomplus/cloud-commerce/commit/7ad53c10620720b595a0986b2c12ef1aa18cabd0))
|
|
19
|
+
* **pagarme:** Sending new `?sig` on notification URL for internal verification ([494b644](https://github.com/ecomplus/cloud-commerce/commit/494b644d938ecaddfa076a48f5afdc7085980d33))
|
|
20
|
+
* **pagarme:** Stop requiring signature header on URL if ?sig arg is properly set ([f4dd3f5](https://github.com/ecomplus/cloud-commerce/commit/f4dd3f583e2ea903e22407c402fbc10f80351e5c))
|
|
21
|
+
|
|
5
22
|
## [2.24.1](https://github.com/ecomplus/cloud-commerce/compare/v2.24.0...v2.24.1) (2024-08-01)
|
|
6
23
|
|
|
7
24
|
|
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.24.
|
|
4
|
+
"version": "2.24.3",
|
|
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.24.
|
|
45
|
+
"@cloudcommerce/eslint": "2.24.3"
|
|
46
46
|
},
|
|
47
47
|
"packageManager": "pnpm@8.15.7",
|
|
48
48
|
"scripts": {
|