Socket
Socket
Sign inDemoInstall

postman-collection

Package Overview
Dependencies
Maintainers
4
Versions
180
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postman-collection - npm Package Compare versions

Comparing version 4.1.0 to 4.1.1

9

lib/collection/url.js

@@ -310,7 +310,8 @@ var _ = require('../util').lodash,

getPathWithQuery () {
var path = this.getPath();
var path = this.getPath(),
queryString = this.getQueryString();
// check count first so that, we can ensure that ba `?` is always appended, even if a blank query string exists
if (this.query.count()) {
path += (QUERY_SEPARATOR + this.getQueryString());
// Check if the queryString exists to figure out if we need to add a `?` alongside the queryString
if (queryString) {
path += (QUERY_SEPARATOR + queryString);
}

@@ -317,0 +318,0 @@

{
"name": "postman-collection",
"version": "4.1.0",
"version": "4.1.1",
"description": "Enables developers to use a unified Postman Collection format Object across projects",

@@ -42,3 +42,3 @@ "author": "Postman Inc.",

"mime-format": "2.0.1",
"mime-types": "2.1.32",
"mime-types": "2.1.34",
"postman-url-encoder": "3.0.5",

@@ -50,3 +50,3 @@ "semver": "7.3.5",

"@postman/shipit": "^0.3.0",
"async": "^3.2.1",
"async": "^3.2.2",
"bipbip": "^0.4.2",

@@ -59,9 +59,9 @@ "browserify": "^17.0.0",

"eslint": "^7.32.0",
"eslint-plugin-jsdoc": "^36.0.7",
"eslint-plugin-jsdoc": "^37.5.0",
"eslint-plugin-lodash": "^7.2.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-security": "^1.4.0",
"js-yaml": "^4.1.0",
"jsdoc": "^3.6.7",
"karma": "^6.3.4",
"karma": "^6.3.9",
"karma-browserify": "^8.1.0",

@@ -71,3 +71,3 @@ "karma-chrome-launcher": "^3.1.0",

"karma-mocha-reporter": "^2.2.5",
"mocha": "^9.0.3",
"mocha": "^9.1.3",
"nyc": "^15.1.0",

@@ -74,0 +74,0 @@ "parse-gitignore": "^1.0.1",

Sorry, the diff of this file is not supported yet

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