node-postgres/NEWS.md

35 lines
1.0 KiB
Markdown
Raw Normal View History

2013-03-29 23:39:05 +08:00
All major and minor releases are briefly explained below.
For richer information consult the commit log on github with referenced pull requests.
We do not include break-fix version release in this file.
2013-06-07 08:34:37 +08:00
### v1.3
- Make client_encoding configurable and optional
2013-06-05 10:19:58 +08:00
### v1.2
- return field metadata on result object: access via result.fields[i].name/dataTypeID
### v1.1
- built in support for `JSON` data type for PostgreSQL Server @ v9.2.0 or greater
2013-04-05 01:02:11 +08:00
### v1.0
2013-03-14 21:44:20 +08:00
- remove deprecated functionality
- Callback function passed to `pg.connect` now __requires__ 3 arguments
- Client#pauseDrain() / Client#resumeDrain removed
- numeric, decimal, and float data types no longer parsed into float before being returned. Will be returned from query results as `String`
2013-03-14 21:44:20 +08:00
2013-03-29 04:35:59 +08:00
### v0.15.0
- client now emits `end` when disconnected from back-end server
- if client is disconnected in the middle of a query, query receives an error
2013-03-14 21:44:20 +08:00
### v0.14.0
- add deprecation warnings in prep for v1.0
- fix read/write failures in native module under node v0.9.x