Skip to content
This repository has been archived by the owner on Feb 11, 2020. It is now read-only.

Commit

Permalink
Bumped v0.15.0. Updated HISTORY.
Browse files Browse the repository at this point in the history
Closes #73.
  • Loading branch information
mcollina committed Dec 29, 2013
1 parent 9026e45 commit 673d4d5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
12 changes: 12 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
History
=======

## 0.15.0

* Removed limit of 23 bytes for the client id as in MQTT 3.1.1.
* Removed two possible race conditions for offline messages.
The race conditions were:
1. the restoration of all subscriptions was done after connack,
which
means that there was a tiny window were a message could be lost.
2. the puback for a QoS 1 packet was sent before the write was
concluded.
* Dumped node v0.8 support forever.

## 0.14.4

* Restored 'clientDisconnected' event in case of errors
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ Mosca can be used:
* <a href="#standalone">Standalone</a>
* <a href="#embedded">Embedded in another Node.js application</a>

Mosca officially support only node v0.10 but v0.11.x should work too.
Node v0.8 is not supported.

## Features

* MQTT 3.1 compliant.
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mosca",
"version": "0.14.4",
"version": "0.15.0",
"description": "The multi-transport MQTT broker for node.js. It supports AMQP, Redis, ZeroMQ, MongoDB or just MQTT.",
"main": "index.js",
"bin": {
Expand All @@ -12,7 +12,8 @@
"coverage": "rm -rf coverage; istanbul cover _mocha -- --recursive --reporter spec --bail",
"publish-coverage": "npm run coverage && (cat coverage/lcov.info | coveralls)",
"jshint-lib": "jshint lib/*.js",
"jshint-test": "jshint test/*.js"
"jshint-test": "jshint test/*.js",
"start": "./bin/mosca -v | bunyan"
},
"pre-commit": [
"jshint-lib",
Expand All @@ -26,6 +27,9 @@
"bugs": {
"url": "http://github.com/mcollina/mosca/issues"
},
"engines": {
"node": "0.10.x"
},
"keywords": [
"mqtt",
"mqtt server",
Expand Down

0 comments on commit 673d4d5

Please sign in to comment.