Socket
Socket
Sign inDemoInstall

pg

Package Overview
Dependencies
Maintainers
1
Versions
224
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pg - npm Package Compare versions

Comparing version 0.14.0 to 0.14.1

NEWS.md

2

lib/types/textParsers.js

@@ -204,3 +204,3 @@ var deprecate = require('deprecate');

register(1022, parseFloatArray); // _float8
register(1231, parseIntegerArray); // _numeric
register(1231, parseFloatArray); // _numeric
register(1014, parseStringArray); //char

@@ -207,0 +207,0 @@ register(1015, parseStringArray); //varchar

{
"name": "pg",
"version": "0.14.0",
"version": "0.14.1",
"description": "PostgreSQL client - pure javascript & libpq with the same API",

@@ -21,3 +21,3 @@ "keywords": [

"dependencies": {
"generic-pool": "2.0.2",
"generic-pool": "~2.0.2",
"deprecate": "~0.1.0"

@@ -24,0 +24,0 @@ },

@@ -85,2 +85,13 @@ #node-postgres

## Heads Up!!
node-postgres is __very__ near to v1.0.0 release. Up until now I've tried to maintain all backwards compatilbity, but there are a few breaking changes the community has recommended I introduce.
The current version will spit out deprecation warnings when you use the soon-to-be-deprecated features. They're meant to be obtrusive and annoying. Understandable if you'd like to disable them.
You can do so like this: `pg.defaults.hideDeprecationWarnings = true;`
These are the breaking changes: https://github.com/brianc/node-postgres/pull/301
## Documentation

@@ -87,0 +98,0 @@

@@ -192,2 +192,10 @@ var helper = require(__dirname + '/test-helper');

}
},{
name : 'array/numeric',
format : 'text',
dataTypeID: 1231,
actual: '{1.2,3.4}',
expected :function(val){
assert.deepEqual(val, [1.2,3.4]);
}
},

@@ -194,0 +202,0 @@

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