You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
Another version bump because 0.8.1 didn't get applied properly for some mysterious reason.
Sorry about that. Changed name of "faster" parser to "javascript".
This commit is contained in:
@@ -1,6 +1,13 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
## v0.8.2 - November 11, 2012
|
||||||
|
|
||||||
|
Another version bump because 0.8.1 didn't get applied properly for some mysterious reason.
|
||||||
|
Sorry about that.
|
||||||
|
|
||||||
|
Changed name of "faster" parser to "javascript".
|
||||||
|
|
||||||
## v0.8.1 - September 11, 2012
|
## v0.8.1 - September 11, 2012
|
||||||
|
|
||||||
Important bug fix for null responses (Jerry Sievert)
|
Important bug fix for null responses (Jerry Sievert)
|
||||||
|
@@ -6,7 +6,7 @@ function Packet(type, size) {
|
|||||||
this.size = +size;
|
this.size = +size;
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.name = "faster";
|
exports.name = "javascript";
|
||||||
exports.debug_mode = false;
|
exports.debug_mode = false;
|
||||||
|
|
||||||
function ReplyParser(options) {
|
function ReplyParser(options) {
|
||||||
@@ -192,7 +192,7 @@ ReplyParser.prototype.execute = function (buffer) {
|
|||||||
// check the state for what is the result of
|
// check the state for what is the result of
|
||||||
// a -1, set it back up for a null reply
|
// a -1, set it back up for a null reply
|
||||||
if (ret === undefined) {
|
if (ret === undefined) {
|
||||||
ret = null;
|
ret = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.send_reply(ret);
|
this.send_reply(ret);
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{ "name" : "redis",
|
{ "name" : "redis",
|
||||||
"version" : "0.8.1",
|
"version" : "0.8.2",
|
||||||
"description" : "Redis client library, battle-tested by Voxer",
|
"description" : "Redis client library",
|
||||||
"keywords" : [ "redis", "pub", "sub", "voxer", "database" ],
|
"keywords" : [ "redis", "database" ],
|
||||||
"author": "Matt Ranney <mjr@ranney.com>",
|
"author": "Matt Ranney <mjr@ranney.com>",
|
||||||
"main": "./index.js",
|
"main": "./index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Reference in New Issue
Block a user