- December 2025
- No date parsed from source.
- Detected by Releasebot:Dec 2, 2025
Postman CLI v1.26.0
Postman adds precise syntax validation for API specs with file names and line numbers, making OpenAPI errors easy to fix. A new Issue Type column separates syntax from governance issues in outputs. Also fixes for collection push and owner ID prefix handling.
What's New
Syntax validation for API specifications
The postman spec lint command now includes dedicated syntax validation. Previously, specs with syntax errors would display a generic message like "Unable to lint. Please check your specification for errors." Now you see the exact syntax errors with file names, line numbers, and clear descriptions, making it much easier to fix issues in your OpenAPI specifications.
New "Issue Type" column in output
Validation results now include an "Issue Type" column that distinguishes between Syntax errors (structural/parsing issues) and Governance violations (rule-based issues). This helps you quickly identify and prioritize what to fix first.
The new column is added at the end of CSV, JSON, and table outputs to maintain backward compatibility with existing CI/CD pipelines.
Fixed collection push failing due to owner ID mismatch
Fixed an issue where postman workspace push would fail to update collections when the resource ID format didn't include the expected owner prefix.
Original source Report a problem - December 2025
- No date parsed from source.
- Detected by Releasebot:Dec 2, 2025
- Modified by Releasebot:Dec 2, 2025
Postman CLI v1.25.0
What's New
Run saved requests in scripts with runners
Runners now support the pm.execution.runRequest method that enables you to reference and send requests from your collection's scripts.
Original source Report a problem - November 2025
- No date parsed from source.
- Detected by Releasebot:Nov 16, 2025
- Modified by Releasebot:Dec 2, 2025
Postman CLI v1.24.2
What's New
Improvements to syncing local elements with workspaces
The postman workspace commands now support scanning local collection, environment, and specification directories for elements to sync with the Postman cloud. Collections now regenerate their IDs if there's a mismatch between workspaces.
Original source Report a problem - November 2025
- No date parsed from source.
- Detected by Releasebot:Nov 12, 2025
Postman CLI v1.24.1
Bug Fixes
Fixed memory stack overflow errors that caused runners to fail during long monitor runs.
Original source Report a problem - November 2025
- No date parsed from source.
- Detected by Releasebot:Nov 12, 2025
- Modified by Releasebot:Dec 2, 2025
Postman CLI v1.24.0
What's New
The Postman CLI now includes a new postman request command that lets you send HTTP requests directly from the command line with full Postman capabilities. Use familiar Postman features like environment variables, authentication methods, pre-request and post-request scripts, and test assertions all from your terminal.
Send a simple GET request
postman request https://api.example.com/usersLearn more about POST with authentication and environment variables.
Original source Report a problem - November 2025
- No date parsed from source.
- Detected by Releasebot:Nov 10, 2025
- Modified by Releasebot:Dec 2, 2025
Postman CLI v1.23.1
What's New
Added support for linting specifications in EU-region.
Learn more about linting API specifications with the Postman CLI.
Original source Report a problem - November 2025
- No date parsed from source.
- Detected by Releasebot:Nov 4, 2025
Postman CLI v1.23.0
Postman rolls out Private API Monitoring in beta on all paid plans, letting teams monitor internal APIs with runners inside their own network. Enable via the Postman CLI; runs appear in monitors and don’t expose endpoints to the public internet.
Private API Monitoring
Private API Monitoring is available as a beta feature on all paid plans. Enterprise teams must contact their Postman Customer Success Manager to enable Private API Monitoring.
You can now set up runners using the Postman CLI to monitor internal APIs within your own infrastructure. With runners, you can run monitors on your network without exposing internal endpoints to the public internet.
To start a runner, use the following command:
postman runner start --id <id> --key <key>Once deployed, runners appear automatically in your monitor configuration and can be used to monitor APIs in restricted networks, isolated VPCs, or private data centers.
To learn more, see Set up a runner with the Postman CLI.
Original source Report a problem - November 2025
- No date parsed from source.
- Detected by Releasebot:Nov 4, 2025
Postman CLI v1.22.0
Postman launches a public beta for workspace management to sync local collections and environments with cloud workspaces using new commands like workspace prepare and workspace push. A declarative .postman/config.json file and CI-friendly flags streamline preparation and push workflows.
New workspace management commands
New workspace management commands have been introduced as a public beta to sync locally exported and saved collections and environments with Postman workspaces:
- postman workspace prepare – Prepares and validates local files for a cloud push.
- postman workspace push – Creates, updates, or deletes entities in the target workspace; validates IDs globally; updates local files with server-assigned IDs. (Also runs prepare first.)
Required Configuration
A new declarative config file .postman/config.json defines the workspace ID and entity paths (collections, environments, specs, flows).
For example:{ "schemaVersion": "1", "workspace": { "id": "your-workspace-id" }, "entities": { "collections": ["./collections/name.postman_collection.json"], "environments": ["./environments/name.postman_environment.json"], "specs": ["./specs/name.yaml"] } }Flags
- --no-prepare: Skip the prepare step.
- --yes: Bypass all prompts (for CI/CD use).
- October 2025
- No date parsed from source.
- Detected by Releasebot:Oct 8, 2025
- Modified by Releasebot:Nov 12, 2025
Postman CLI v1.21.0
What's New
The pm.execution.runRequest method is now supported with the Postman CLI. When you use the method to reference a request in your pre-request and post-response scripts, the referenced request now runs when the collection run is triggered by the Postman CLI.
To learn more, see
Use scripts to send requests stored in your collections.
Original source Report a problem - October 2025
- No date parsed from source.
- Detected by Releasebot:Oct 8, 2025
- Modified by Releasebot:Nov 12, 2025
Postman CLI v1.20.0
Postman CLI gets a new manual page for full command reference and options, accessible via the man postman command. It also adds linting for OpenAPI 3.0 specs from a local root file, with workspace-scoped governance checks available via --workspace-id.
What’s New
Introducing the Postman CLI manual page
The Postman CLI now supports a manual page with a complete list of supported commands and options. Use the man postman command to return the manual page.
Support for linting API specifications by path to the root file
The Postman CLI now supports linting OpenAPI 3.0 specifications using a local file path to the root file. To run the command, use postman spec lint . By default, the command lints specifications against API governance rules applied to all workspaces. Use the --workspace-id option to lint specifications against API governance rules applied to a particular workspace.
Original source Report a problem