curl-to-postmanv2
Advanced tools
Comparing version 1.7.0 to 1.7.1
@@ -5,2 +5,4 @@ # cURL to Postman Importer Changelog | ||
## [v1.7.1] - 2023-07-17 | ||
## [v1.7.0] - 2023-06-27 | ||
@@ -117,4 +119,6 @@ | ||
[Unreleased]: https://github.com/postmanlabs/curl-to-postman/compare/v1.7.0...HEAD | ||
[Unreleased]: https://github.com/postmanlabs/curl-to-postman/compare/v1.7.1...HEAD | ||
[v1.7.1]: https://github.com/postmanlabs/curl-to-postman/compare/v1.7.0...v1.7.1 | ||
[v1.7.0]: https://github.com/postmanlabs/curl-to-postman/compare/v1.6.0...v1.7.0 | ||
@@ -121,0 +125,0 @@ |
{ | ||
"name": "curl-to-postmanv2", | ||
"version": "1.7.0", | ||
"version": "1.7.1", | ||
"description": "Convert a given CURL command to a Postman request", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -318,4 +318,4 @@ const commander = require('commander'), | ||
if (toDecodeUri) { | ||
key = decodeURIComponent(key); | ||
val = decodeURIComponent(val); | ||
key = decodeURIComponent(key.replace(/\+/g, '%20')); | ||
val = decodeURIComponent(val.replace(/\+/g, '%20')); | ||
} | ||
@@ -322,0 +322,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
84631