Skip to content

Commit 43a570c

Browse files
committed
2.0.0-alpha8
1 parent 264f203 commit 43a570c

File tree

3 files changed

+25
-6
lines changed

3 files changed

+25
-6
lines changed

Changes.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,26 @@ This file is a manually maintained list of changes for each release. Feel free
44
to add your changes here when sending pull requests. Also send corrections if
55
you spot any mistakes.
66

7+
## v2.0.0-alpha8 (2013-04-30)
8+
9+
* Switch to old mode for Streams 2 (Node.js v 0.10.x)
10+
* Add stream method to Query Wraps events from the query object into a node v0.10.x Readable stream
11+
* DECIMAL should also be treated as big number
12+
* Removed slow unnecessary stack access
13+
* Added charsets
14+
* Added bigNumberStrings option for forcing BIGINT columns as strings
15+
* Changes date parsing to return String if not a valid JS Date
16+
* Adds support for ?? escape sequence to escape identifiers
17+
* Changes Auth.token() to force password to be in binary, not utf8 (#378)
18+
* Restrict debugging by packet types
19+
* Add 'multipleStatements' option tracking to ConnectionConfig. Fixes GH-408
20+
* Changes Pool to handle 'error' events and dispose connection
21+
* Allows db.query({ sql: "..." }, [ val1, ... ], cb); (#390)
22+
* Improved documentation
23+
* Bug fixes
24+
725
## v2.0.0-alpha7 (2013-02-03)
26+
827
* Add connection pooling (#351)
928

1029
## v2.0.0-alpha6 (2013-01-31)

Readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## Install
66

77
```bash
8-
npm install [email protected]alpha7
8+
npm install [email protected]alpha8
99
```
1010

1111
Despite the alpha tag, this is the recommended version for new applications.
@@ -508,13 +508,13 @@ get your thoughts and contributions on this.
508508
### Piping results with [Streams2](http://blog.nodejs.org/2012/12/20/streams2/) (Node v0.10+)
509509

510510
The query object provides a convenience method `.stream([options])` that wraps
511-
query events into a [Readable](http://nodejs.org/api/stream.html#stream_class_stream_readable)
511+
query events into a [Readable](http://nodejs.org/api/stream.html#stream_class_stream_readable)
512512
Streams2 object. This stream can easily be piped downstream and provides
513-
automatic pause/resume, based on downstream congestion and the optional
513+
automatic pause/resume, based on downstream congestion and the optional
514514
`highWaterMark`. The `objectMode` parameter of the stream is set to `true` by
515-
default.
515+
default.
516516

517-
For example, piping query results into another stream (with a max buffer of 5
517+
For example, piping query results into another stream (with a max buffer of 5
518518
objects) is simply:
519519

520520
```js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "Felix Geisendörfer <[email protected]> (http://debuggable.com/)",
33
"name": "mysql",
44
"description": "A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed.",
5-
"version": "2.0.0-alpha7",
5+
"version": "2.0.0-alpha8",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/felixge/node-mysql"

0 commit comments

Comments
 (0)