Socket
Socket
Sign inDemoInstall

impress

Package Overview
Dependencies
12
Maintainers
4
Versions
718
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.6.5 to 2.6.6

9

CHANGELOG.md

@@ -5,2 +5,8 @@ # Changelog

## [2.6.6][] - 2021-10-12
- Move `node.process` object to a sandbox context
- Make `scheduler` field optional in `config/server.js`
- Update dependencies to fix security and metacom
## [2.6.5][] - 2021-09-30

@@ -234,3 +240,4 @@

[unreleased]: https://github.com/metarhia/impress/compare/v2.6.5...HEAD
[unreleased]: https://github.com/metarhia/impress/compare/v2.6.6...HEAD
[2.6.6]: https://github.com/metarhia/impress/compare/v2.6.5...v2.6.6
[2.6.5]: https://github.com/metarhia/impress/compare/v2.6.4...v2.6.5

@@ -237,0 +244,0 @@ [2.6.4]: https://github.com/metarhia/impress/compare/v2.6.3...v2.6.4

2

lib/application.js

@@ -117,3 +117,3 @@ 'use strict';

application.invoke = async (call) => this.invoke(call);
const sandbox = { ...SANDBOX, console, application, config };
const sandbox = { ...SANDBOX, console, application, config, process };
sandbox.api = {};

@@ -120,0 +120,0 @@ sandbox.lib = this.lib.tree;

'use strict';
const node = { process };
const node = {};
const npm = {};

@@ -5,0 +5,0 @@ const metarhia = {};

{
"name": "impress",
"version": "2.6.5",
"version": "2.6.6",
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",

@@ -69,7 +69,7 @@ "description": "Enterprise application server for Node.js",

"dependencies": {
"metacom": "^2.0.3",
"metacom": "^2.0.4",
"metaconfiguration": "^2.1.5",
"metalog": "^3.1.4",
"metalog": "^3.1.5",
"metaschema": "^1.3.4",
"metautil": "^3.5.15",
"metautil": "^3.5.16",
"metavm": "^1.0.3",

@@ -79,13 +79,13 @@ "metawatch": "^1.0.4"

"devDependencies": {
"@types/node": "^16.9.6",
"@types/ws": "^7.4.7",
"@types/node": "^16.10.4",
"@types/ws": "^8.2.0",
"eslint": "^7.32.0",
"eslint-config-metarhia": "^7.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-import": "^2.25.1",
"eslint-plugin-prettier": "^4.0.0",
"metatests": "^0.7.2",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
"typescript": "^4.4.4"
}
}

@@ -20,5 +20,5 @@ ({

scheduler: {
concurrency: 'number',
size: 'number',
timeout: 'number',
concurrency: '?number',
size: '?number',
timeout: '?number',
},

@@ -25,0 +25,0 @@ workers: {

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc