Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.13.0
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [v1.8.3] - 2025-09-30

### Changed

- Upgrade dep: shell-quote

## [v1.8.2] - 2025-02-20

### Added
Expand Down Expand Up @@ -134,7 +140,9 @@ Newer releases follow the [Keep a Changelog](https://keepachangelog.com) format.
- Conforming to the internal Postman plugin interface
- Fixes for Github issues - 4770,3623,3135,4018,5737,5286, among others

[Unreleased]: https://github.com/postmanlabs/curl-to-postman/compare/v1.8.2...HEAD
[Unreleased]: https://github.com/postmanlabs/curl-to-postman/compare/v1.8.3...HEAD

[v1.8.3]: https://github.com/postmanlabs/curl-to-postman/compare/v1.8.2...v1.8.3

[v1.8.2]: https://github.com/postmanlabs/curl-to-postman/compare/v1.8.1...v1.8.2

Expand Down
96 changes: 16 additions & 80 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "curl-to-postmanv2",
"version": "1.8.2",
"version": "1.8.3",
"description": "Convert a given CURL command to a Postman request",
"main": "index.js",
"com_postman_plugin": {
Expand All @@ -12,10 +12,9 @@
"node": ">=12"
},
"dependencies": {
"commander": "2.20.3",
"lodash": "4.17.21",
"shell-quote": "1.6.1",
"uuid": "3.2.1",
"commander": "^2.20.3",
"lodash": "^4.17.21",
"shell-quote": "^1.8.2",
"valid-url": "^1.0.9"
},
"devDependencies": {
Expand Down
Loading