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

socketcan

Package Overview
Dependencies
Maintainers
2
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

socketcan - npm Package Compare versions

Comparing version 2.9.1 to 3.0.0

2

package.json

@@ -8,3 +8,3 @@ {

"description": "A SocketCAN abstraction layer for NodeJS.",
"version": "2.9.1",
"version": "3.0.0",
"license": "MIT",

@@ -11,0 +11,0 @@ "repository": {

@@ -250,2 +250,9 @@ /* Copyright Sebastian Haas <sebastian@sebastianhaas.info>. All rights reserved.

/**
* Named information to inform that the frame is CAN_FD format .
* @attribute Boolean
* @final
*/
this.canfd = desc.canfd;
/**
* Named array of signals within this message. Accessible via index and name.

@@ -370,3 +377,3 @@ * @attribute {Signal} signals

rtr: false,
data : (m.len > 0 && m.len < 8) ? Buffer.alloc(m.len) : Buffer.alloc(8)
data : (m.len > 0 && m.len < 64) ? Buffer.alloc(m.len) : Buffer.alloc(64) // for CANFD data buffer 64 bytes
};

@@ -421,2 +428,3 @@

/**

@@ -423,0 +431,0 @@ * @method parseNetworkDescription

Sorry, the diff of this file is not supported yet

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