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

node-red

Package Overview
Dependencies
Maintainers
2
Versions
188
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red - npm Package Compare versions

Comparing version 3.1.4 to 3.1.5

7

CHANGELOG.md

@@ -0,1 +1,8 @@

#### 3.1.5: Maintenance Release
Runtime
- Fix require of dns module (#4562) @knolleary
- Ensure global creds object is initialised when adding first cred (#4561) @knolleary
#### 3.1.4: Maintenance Release

@@ -2,0 +9,0 @@

4

lib/red.js

@@ -29,4 +29,4 @@ /*!

const NODE_MAJOR_VERSION = process.versions.node.split('.')[0];
if (NODE_MAJOR_VERSION > 14) {
const dns = require('node:dns');
if (NODE_MAJOR_VERSION >= 16) {
const dns = require('dns');
dns.setDefaultResultOrder('ipv4first');

@@ -33,0 +33,0 @@ }

{
"name": "node-red",
"version": "3.1.4",
"version": "3.1.5",
"description": "Low-code programming for event-driven applications",

@@ -34,6 +34,6 @@ "homepage": "https://nodered.org",

"dependencies": {
"@node-red/editor-api": "3.1.4",
"@node-red/runtime": "3.1.4",
"@node-red/util": "3.1.4",
"@node-red/nodes": "3.1.4",
"@node-red/editor-api": "3.1.5",
"@node-red/runtime": "3.1.5",
"@node-red/util": "3.1.5",
"@node-red/nodes": "3.1.5",
"basic-auth": "2.0.1",

@@ -40,0 +40,0 @@ "bcryptjs": "2.4.3",

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