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

node-firebird

Package Overview
Dependencies
Maintainers
3
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-firebird - npm Package Compare versions

Comparing version 0.2.5 to 0.2.6

4

lib/serialize.js

@@ -211,3 +211,3 @@

this.ensure(8);
var l = new Long(value);
var l = Long.fromNumber(value);
this.buffer.writeInt32BE(l.high_, this.pos);

@@ -299,3 +299,3 @@ this.pos += 4;

this.pos += 4;
return new Long(low, high);
return new Long(low, high).toNumber();
};

@@ -302,0 +302,0 @@

{
"name": "node-firebird",
"version": "0.2.5",
"version": "0.2.6",
"description": "Pure JavaScript and Asynchronous Firebird client for Node.js.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -352,2 +352,10 @@ ![Firebird Logo](https://www.totaljs.com/exports/firebird-logo.png)

### Firebird 3.0 Support
Firebird new wire protocol is not supported yet so
for Firebird 3.0 you need to add the following in firebird.conf
```
AuthServer = Legacy_Auth
WireCrypt = Disabled
```
## Contributors

@@ -354,0 +362,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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