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

@techteamer/mq

Package Overview
Dependencies
Maintainers
3
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@techteamer/mq - npm Package Compare versions

Comparing version 2.2.0 to 2.2.1

3

CHANGELOG.md

@@ -0,1 +1,4 @@

2.2.1
- Fix multi-byte character (de)serialization
2.2.0

@@ -2,0 +5,0 @@ - Binary sending is available

2

package.json
{
"name": "@techteamer/mq",
"version": "2.2.0",
"version": "2.2.1",
"description": "A RabbitMQ wrapper for node",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -40,4 +40,4 @@ class QueueMessage {

let lengthBuf = Buffer.alloc(4)
lengthBuf.writeUInt32BE(stringJson.length)
let jsonBuf = Buffer.from(stringJson)
lengthBuf.writeUInt32BE(jsonBuf.length)
return Buffer.concat([formatBuf, lengthBuf, jsonBuf, ...attachmentBuffers])

@@ -44,0 +44,0 @@ }

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