Skip to content

v1.5.0

Latest

Choose a tag to compare

@yasintqvi yasintqvi released this 28 Aug 05:36
f0d5c14

Added

  • Smart incremental Postman Cloud sync (#66)
    Added direct integration with the Postman API to sync generated Laravel routes with an existing Postman collection without overwriting manually maintained data.
    The new --push option generates the collection, merges it with the remote collection, and pushes the result back to Postman Cloud.

  • Dry-run support for Postman Cloud sync (#66)
    Added the --dry-run option to preview the merge result without updating the remote Postman collection.

  • Preservation of Postman customizations during sync (#66)
    Saved example responses, pre-request scripts, test scripts, manually added collection items, descriptions, authentication settings, query parameters, and existing collection variables can now be preserved during synchronization.

Improved

  • Route parameter generation and normalization (#66)
    Improved path parameter handling by consistently converting Laravel route parameters such as {user} to Postman-style :user parameters and generating variables for all detected route parameters.

  • Postman Cloud payload compatibility (#66)
    Added collection sanitization before sending data to the Postman API to ensure generated and preserved collection data is compatible with Postman Cloud updates.

  • Postman service architecture (#66)
    Introduced dedicated cloud sync, collection merge, and sanitization services to keep Postman API communication and merge behavior separated from collection generation.