Skip to content

Commit 01b7ade

Browse files
Release v2.4.1
1 parent 111d76c commit 01b7ade

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## 2.4.1
4+
- zzAPI bumped up to 2.0.1 (Bug fix: proper error message on network errors on Mac)
5+
36
## 2.4.0
47
- Remove zzAPI user-agent from show cURL output
58
- Sort variable files for predictable overrides

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"publisher": "AgroStar",
55
"description": "Tool for testing and documenting REST APIs",
66
"repository": "https://github.com/agrostar/zzapi-vscode",
7-
"version": "2.4.0",
7+
"version": "2.4.1",
88
"engines": {
99
"vscode": "^1.70.0"
1010
},
@@ -353,6 +353,6 @@
353353
},
354354
"dependencies": {
355355
"yaml": "^2.4.3",
356-
"zzapi": "^2.0.0"
356+
"zzapi": "^2.0.1"
357357
}
358358
}

src/getResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export async function allRequestsWithProgress(
157157
const out = getOutputChannel();
158158
if (error) {
159159
out.append(`${new Date().toLocaleString()} [ERROR] `);
160-
out.appendLine(`${method} ${name} Error executing request: ${error})`);
160+
out.appendLine(`${method} ${name} Error executing request: ${error}`);
161161
displayUndefs(undefs);
162162
out.show(true);
163163
continue;

0 commit comments

Comments
 (0)