Postman CLI Release Notes
Last updated: Mar 2, 2026
- March 2026
- No date parsed from source.
- First seen by Releasebot:Mar 2, 2026
Postman CLI v1.31.3
Postman CLI adds private API monitoring with enterprise runners behind firewalls, enabling in-network tests that report to the cloud. It also supports performance tests, mock servers, SDK generation from collections or OpenAPI, local flows for Enterprise, and multi‑protocol runs (gRPC, GraphQL) for CI/CD.
What’s New
Support for Private API Monitoring with runners (Available on Enterprise plans)
With Private API Monitoring, the Postman CLI now supports monitoring your organization’s internal APIs behind a firewall or deployed in a restricted network. This means you can monitor internal APIs without exposing your endpoints to the public internet.
Use the postman runner start command to start a runner with your runner’s ID and key. Once running, the runner polls Postman for upcoming monitor runs. The collection and its tests run in your network and the results are sent back to the Postman cloud.
To learn more, see Monitor internal APIs with runners.
Support for running performance tests
The Postman CLI now supports configuring and running performance tests against collections in your team. Performance tests enable you to simulate real-world traffic to your APIs and automatically surface performance issues before changes reach production.
Use the postman performance run command to integrate performance tests into your CI/CD pipeline and ensure your APIs stay fast and reliable with every release. The Postman CLI sends the results to the Postman cloud to help you debug performance test results.
To learn more, see Run a performance test using the Postman CLI.
Support for mock servers
The Postman CLI now supports using a mock server to run against your collection’s tests. This helps you validate your tests against the mocked responses of external APIs used in your service, both locally and in CI environments. With the Postman CLI, you can integrate a mock server into your CI/CD pipeline with the --mocks option when you run a collection with postman collection run.
You can also use the postman mock run command in your CI/CD pipeline to start a mock server as a dependency for your application or test suite. The mock server runs on the specified port until you stop it. This is useful for simulating an API server for your service or external tests.
To learn more, see Postman CLI command options.
Support for generating SDKs from collections and API specifications
The Postman CLI now supports generating client SDKs directly from your Postman collections or API specifications (such as OpenAPI). Generate production-ready SDKs in TypeScript, Python, and Java, making it easy to provide consumers of your API with idiomatic client libraries.
Use the postman sdk generate command with a collection ID, specification ID, local file, or publicly accessible URL as input. You can generate SDKs for one language at a time, multiple languages, or all supported languages at once using the --all flag. Generated SDKs are written to a configurable output directory (default ./sdks) with a subdirectory per language.
postman sdk generate <collection-or-spec-id> --language typescript python --output-dir ./sdksTo customize SDK generation, use the postman sdk init command to create a .postman/config.json configuration file where you can set the SDK name, version, authentication behavior, retry policies, and per-language options.
Additional SDK management commands are available:
- postman sdk list — List previous SDK builds for a collection or specification.
- postman sdk fetch — Download SDKs from a previous build by its build ID.
- postman sdk connect — Connect a collection to a GitHub repository for automated SDK pull requests. Once connected, use the --pr flag with postman sdk generate to automatically create pull requests with updated SDKs.
Support for running flows locally with the Postman CLI (Available on Enterprise plans)
You can use the postman flows run command to run local flows without exposing private APIs and sensitive data to the Postman cloud. The postman flows run command has options to set input values, show run log information, and use values from a scenario.
To learn more, see Postman CLI command options.
Improvements
Support for multi-protocol collection runs
The postman collection run command now supports gRPC and GraphQL collection runs.
To learn more, see Postman CLI command options.
Original source Report a problem - February 2026
- No date parsed from source.
- First seen by Releasebot:Feb 4, 2026
Postman CLI v1.29.5
Improvements
Various internal enhancements were added in this release.
Original source Report a problem All of your release notes in one feed
Join Releasebot and get updates from Postman and hundreds of other software products.
- January 2026
- No date parsed from source.
- First seen by Releasebot:Jan 22, 2026
Postman CLI v1.29.1
Bug Fixes
Fixed an issue that caused the postman workspace push command to time out for large files.
Original source Report a problem - January 2026
- No date parsed from source.
- First seen by Releasebot:Jan 17, 2026
Postman CLI v1.29.0
Improvements
Internal and beta feature enhancements were added in this release.
Original source Report a problem - December 2025
- No date parsed from source.
- First seen by Releasebot:Dec 24, 2025
Postman CLI release notes: v1.28.0
Postman CLI gains beta support for running performance tests against collections. Simulate real traffic, surface performance issues early, and integrate tests into CI/CD pipelines. Test results are sent to Postman Cloud to help you debug and improve performance.
What's New
Support for running performance tests
Running performance tests using the Postman CLI is available as a beta feature.
The Postman CLI now supports configuring and running performance tests against collections in your team. Performance tests enable you to simulate real-world traffic to your APIs and automatically surface performance issues before changes reach production. With the Postman CLI, you can integrate performance tests into your CI/CD pipeline and ensure your APIs stay fast and reliable with every release. The Postman CLI sends the results to the Postman cloud to help you debug performance test results.
Original source Report a problem - December 2025
- No date parsed from source.
- First seen by Releasebot:Dec 12, 2025
Postman CLI v1.27.0
What's New
Support for Linux ARM64
The Postman CLI now supports Linux ARM64.
Original source Report a problem - December 2025
- No date parsed from source.
- First seen 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.
- First seen by Releasebot:Dec 2, 2025
- Modified by Releasebot:Jan 17, 2026
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.
- First seen 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.
- First seen 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