@garuhq/cli 0.4.0 → 0.4.1
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 +10 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to `@garuhq/cli` are documented in this file. Format:
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/). Versioning: [SemVer](https://semver.org/).
|
|
5
5
|
|
|
6
|
+
## [0.4.1] — 2026-05-19
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
|
|
10
|
+
- Bump `@garuhq/node` to `0.11.1` to pick up the empty-body POST fix.
|
|
11
|
+
`garu webhooks events retry <id>` and `garu scheduled-charges resume <id>`
|
|
12
|
+
were failing against production with `Body cannot be empty when content-type
|
|
13
|
+
is set to 'application/json'`. The SDK now sends an explicit `{}` body on
|
|
14
|
+
every otherwise-empty mutation.
|
|
15
|
+
|
|
6
16
|
## [0.4.0] — 2026-05-19
|
|
7
17
|
|
|
8
18
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@garuhq/cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Official command-line interface for the Garu payment gateway.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://garu.com.br",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"prepublishOnly": "npm run typecheck && npm test && npm run build"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@garuhq/node": "0.11.
|
|
48
|
+
"@garuhq/node": "0.11.1",
|
|
49
49
|
"@inquirer/prompts": "8.4.1",
|
|
50
50
|
"commander": "12.0.0",
|
|
51
51
|
"picocolors": "1.0.0",
|