New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

postman-sandbox

Package Overview
Dependencies
Maintainers
5
Versions
142
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postman-sandbox - npm Package Compare versions

Comparing version

to
3.0.9-beta.1

5

CHANGELOG.md
# Postman Sandbox Changelog
#### v3.0.8 (May 16, 2018)
#### v3.0.9-beta.1 (June 6, 2018)
* Enable tracking variable changes within sandbox execution
#### v3.0.8 (May 24, 2018)
* Updated dependencies

@@ -5,0 +8,0 @@

8

lib/sandbox/execution.js

@@ -33,9 +33,9 @@ var _ = require('lodash'),

this.environment = sdk.VariableScope.isVariableScope(context.environment) ?
context.environment : new sdk.VariableScope(context.environment);
context.environment : new sdk.VariableScope(context.environment, null, {enableTracking: true, changeTracker: {compressed: true}});
this._variables = sdk.VariableScope.isVariableScope(context._variables) ?
context._variables : new sdk.VariableScope(context._variables);
context._variables : new sdk.VariableScope(context._variables, null, {enableTracking: true, changeTracker: {compressed: true}});
this.globals = sdk.VariableScope.isVariableScope(context.globals) ?
context.globals : new sdk.VariableScope(context.globals);
context.globals : new sdk.VariableScope(context.globals, null, {enableTracking: true, changeTracker: {compressed: true}});
this.collectionVariables = sdk.VariableScope.isVariableScope(context.collectionVariables) ?
context.collectionVariables : new sdk.VariableScope(context.collectionVariables);
context.collectionVariables : new sdk.VariableScope(context.collectionVariables, null, {enableTracking: true, changeTracker: {compressed: true}});

@@ -42,0 +42,0 @@ if (TARGETS_WITH_REQUEST[this.target] || _.has(context, PROPERTY.REQUEST)) {

{
"name": "postman-sandbox",
"version": "3.0.8",
"version": "3.0.9-beta.1",
"description": "Sandbox for Postman Scripts to run in NodeJS or Chrome",

@@ -60,3 +60,3 @@ "main": "index.js",

"jquery": "3.3.1",
"js-yaml": "3.11.0",
"js-yaml": "3.12.0",
"jsdoc": "3.5.5",

@@ -72,7 +72,7 @@ "jsdoc-to-markdown": "4.0.1",

"mocha": "5.0.1",
"moment": "2.22.1",
"moment": "2.22.2",
"nsp": "2.8.1",
"packity": "0.3.2",
"parse-gitignore": "0.4.0",
"postman-collection": "3.0.10",
"postman-collection": "3.1.0-beta.1",
"recursive-readdir": "2.2.2",

@@ -79,0 +79,0 @@ "shelljs": "0.8.2",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display