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

pg-copy-streams-binary

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pg-copy-streams-binary - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

3

lib/parser.js

@@ -54,3 +54,4 @@ /**

// The backend sends a CopyOutResponse message to the frontend, followed by zero or more CopyData messages (always one per row)
if (this._headerReceived && (chunk.length - offset) >= 2) {
var UInt16Len = 2;
while (this._headerReceived && (chunk.length - offset) >= UInt16Len) {
var fieldCount = chunk.readUInt16BE(offset);

@@ -57,0 +58,0 @@ offset += 2;

{
"name": "pg-copy-streams-binary",
"version": "1.1.1",
"version": "1.1.2",
"description": "Streams for parsing and deparsing the COPY binary format",

@@ -19,16 +19,16 @@ "main": "index.js",

"dependencies": {
"bufferput": "^0.1.2",
"bufferput": "^0.1.3",
"flatten": "^1.0.2",
"ieee754": "^1.1.6",
"int64-buffer": "^0.1.9",
"ieee754": "^1.1.13",
"int64-buffer": "^0.99.1007",
"multi-fork": "0.0.2",
"through2": "^2.0.1"
"through2": "^3.0.1"
},
"devDependencies": {
"async": "^2.0.1",
"async": "^2.6.2",
"deeper": "^2.1.0",
"gonna": "0.0.0",
"pg": "^6.0.3",
"pg-copy-streams": "^1.2.0"
"pg": "^7.9.0",
"pg-copy-streams": "^2.2.0"
}
}

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