postman-cli 1.25.0 → 1.27.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/README.md +1 -1
- package/index.js +2 -1
- package/man/postman.1 +1 -1
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ postman api lint <api-id>
|
|
|
60
60
|
This package automatically downloads the appropriate binary for your platform:
|
|
61
61
|
|
|
62
62
|
- macOS (Intel & Apple Silicon)
|
|
63
|
-
- Linux (x64)
|
|
63
|
+
- Linux (x64 & ARM64)
|
|
64
64
|
- Windows (x64)
|
|
65
65
|
|
|
66
66
|
> **Note:** Linux support excludes Alpine Linux distributions due to libc compatibility requirements.
|
package/index.js
CHANGED
|
@@ -4,7 +4,8 @@ const { execFileSync } = require('child_process'),
|
|
|
4
4
|
'darwin-arm64': 'pm-bin-macos-arm64',
|
|
5
5
|
'darwin-x64': 'pm-bin-macos-x64',
|
|
6
6
|
'win32-x64': 'pm-bin-windows-x64',
|
|
7
|
-
'linux-x64': 'pm-bin-linux-x64'
|
|
7
|
+
'linux-x64': 'pm-bin-linux-x64',
|
|
8
|
+
'linux-arm64': 'pm-bin-linux-arm64'
|
|
8
9
|
};
|
|
9
10
|
|
|
10
11
|
function locateBinary () {
|
package/man/postman.1
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postman-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.27.0",
|
|
4
4
|
"description": "Official Postman CLI - Command-line companion for API development, testing, and automation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"postman",
|
|
@@ -58,9 +58,10 @@
|
|
|
58
58
|
"man/"
|
|
59
59
|
],
|
|
60
60
|
"optionalDependencies": {
|
|
61
|
-
"@postman/pm-bin-macos-arm64": "1.
|
|
62
|
-
"@postman/pm-bin-macos-x64": "1.
|
|
63
|
-
"@postman/pm-bin-linux-x64": "1.
|
|
64
|
-
"@postman/pm-bin-
|
|
61
|
+
"@postman/pm-bin-macos-arm64": "1.27.0",
|
|
62
|
+
"@postman/pm-bin-macos-x64": "1.27.0",
|
|
63
|
+
"@postman/pm-bin-linux-x64": "1.27.0",
|
|
64
|
+
"@postman/pm-bin-linux-arm64": "1.27.0",
|
|
65
|
+
"@postman/pm-bin-windows-x64": "1.27.0"
|
|
65
66
|
}
|
|
66
67
|
}
|