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

do-red

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

do-red - npm Package Compare versions

Comparing version 0.3.5 to 0.4.0

10

CHANGELOG.md
# Changelog
## Version 0.4.0 (26th of January 2024)
- Corrected node version (new feature in 0.3.5)
- Bugfix doubled nodes:add event emitted an append
- new / replaced nodes have an temporar _do_red key to identify nodes created via do-red in events
## Version 0.3.5 (25th of January 2024)
- Updated SIR and fixed UI bugs
- Bugfix: Node validation icon/each
- Added first / next
## Version 0.3.4 (02nd of December 2021)

@@ -4,0 +14,0 @@ - Bugfix: no-op no longer deletes msg._do

2

package.json
{
"name": "do-red",
"version": "0.3.5",
"version": "0.4.0",
"description": "A do-node and corresponding return-node for creating loops and task-lists.",

@@ -5,0 +5,0 @@ "author": "Christian Geiger",

@@ -130,3 +130,4 @@ /* global RED */

changed: true,
moved: true
moved: true,
_do_red: 'replace node' // temp identifier for events
}

@@ -296,3 +297,4 @@ newNode.inputs = newNode._def.inputs || 0

outputs: _def.outputs,
h: Math.max(100, (_def.outputs || 0) * 15)
h: Math.max(100, (_def.outputs || 0) * 15),
_do_red: 'append node' // temp identifier for events
}

@@ -308,3 +310,3 @@ // Initialize defaults

RED.nodes.add(newNode)
// RED.events.emit('nodes:add', newNode) // happens through RED.nodes.add()
// Determine source port (first free port or first port)

@@ -311,0 +313,0 @@ const ports = [...Array(selectedNode.outputs).keys()]

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