Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

curl-to-postmanv2

Package Overview
Dependencies
Maintainers
6
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

curl-to-postmanv2 - npm Package Compare versions

Comparing version 1.7.0 to 1.7.1

6

CHANGELOG.md

@@ -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 @@

2

package.json
{
"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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc