Skip to content

Commit f080d5f

Browse files
committed
Bump version to 0.13.0. Updated changelog. Fix README lint issues.
1 parent 59cd647 commit f080d5f

File tree

2 files changed

+29
-15
lines changed

2 files changed

+29
-15
lines changed

README.md

+28-14
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
nsqjs
2-
=====
1+
# nsqjs
32

43
The official NodeJS client for the [nsq](http://nsq.io/) client protocol. This implementation attempts to be
54
fully compliant and maintain feature parity with the official Go ([go-nsq](https://github.com/nsqio/go-nsq)) and Python ([pynsq](https://github.com/nsqio/pynsq)) clients.
65

76

8-
Usage
9-
-----
7+
## Usage
108

119
### new Reader(topic, channel, options)
10+
1211
The topic and channel arguments are strings and must be specified. The options
1312
argument is optional. Below are the parameters that can be specified in the
1413
options object.
@@ -93,8 +92,8 @@ These methods are available on a Reader object:
9392
* `isPaused()` <br/>
9493
`true` if paused, `false` otherwise.
9594

96-
9795
### Message
96+
9897
The following properties and methods are available on Message objects produced by a Reader
9998
instance.
10099

@@ -125,9 +124,11 @@ instance.
125124
soft timeout by the normal timeout amount.
126125

127126
### new Writer(nsqdHost, nsqdPort, options)
128-
Allows messages to be sent to an nsqd.
127+
128+
Allows messages to be sent to an nsqd.
129129

130130
Available Writer options:
131+
131132
* ```tls: false``` <br/>
132133
Use TLS if nsqd has TLS support enabled.
133134
* ```tlsVerification: true``` <br/>
@@ -149,6 +150,7 @@ Writer events are:
149150
* `Writer.ERROR` or `error`
150151

151152
These methods are available on a Writer object:
153+
152154
* `connect()` <br/>
153155
Connect to the nsqd specified.
154156
* `close()` <br/>
@@ -163,6 +165,7 @@ These methods are available on a Writer object:
163165

164166
Start [nsqd](http://nsq.io/components/nsqd.html) and
165167
[nsqdlookupd](http://nsq.io/components/nsqlookupd.html)
168+
166169
```bash
167170
# nsqdLookupd Listens on 4161 for HTTP requests and 4160 for TCP requests
168171
$ nsqlookupd &
@@ -185,6 +188,7 @@ reader.on('message', msg => {
185188
```
186189

187190
Publish a message to nsqd to be consumed by the sample client:
191+
188192
```bash
189193
$ curl -d "it really tied the room together" http://localhost:4151/pub?topic=sample_topic
190194
```
@@ -231,6 +235,7 @@ reader.on('message', msg => {
231235
```
232236

233237
### Enable nsqjs debugging
238+
234239
nsqjs uses [debug](https://github.com/visionmedia/debug) to log debug output.
235240

236241
To see all nsqjs events:
@@ -254,7 +259,6 @@ To see all writer events:
254259
$ DEBUG=nsqjs:writer:* node my_nsqjs_script.js
255260
```
256261

257-
258262
### A Writer Example
259263

260264
The writer sends a single message and then a list of messages.
@@ -285,8 +289,18 @@ w.on('closed', () => {
285289
})
286290
```
287291

288-
Changes
289-
-------
292+
## Changes
293+
294+
* **0.13.0**
295+
* Fix: SnappyStream initialization race condition. (#353)
296+
* Fix: IPv6 address support (#352)
297+
* Fix: Support JavaScript String objects as messages (#341)
298+
* Deprecated: Node versions < 12 (#346)
299+
* Change: Debug is now a dev dependency (#349)
300+
* Change: Use SnappyStream 2.0 (#354)
301+
* Change: Replaced BigNumber.js with built-in BigInt (#337)
302+
* Change: Replaced request.js with node-fetch (#347)
303+
* Change: Removed dependency on async.js (#347)
290304
* **0.12.0**
291305
* Expose `lowRdyTimeout` parameter for Readers.
292306
* Change the default value for `lowRdyTimeout` from 1.5s to 50ms.
@@ -355,8 +369,8 @@ Changes
355369
* Slightly better invalid topic and channel error messages.
356370
* Handle more conditions for failing to publish a message.
357371
* **0.7.2**
358-
* Fix build for iojs and node v0.12
359-
* Bumped snappystream version.
372+
* Fix build for iojs and node v0.12
373+
* Bumped snappystream version.
360374
* **0.7.1**
361375
* Fix connection returning to max connection RDY after backoff
362376
* Fix backoff ignored when `message.finish` is called after backoff event.
@@ -388,10 +402,10 @@ Changes
388402
* Added Deflate support
389403
* Added Snappy support
390404
* **0.4.1**
391-
* Fixed a logging issue on NSQConnection disconnected
405+
* Fixed a logging issue on NSQConnection disconnected
392406
* **0.4.0**
393-
* Added `close`, `pause`, and `unpause` to Reader
394-
* Added callback for Writer publish
407+
* Added `close`, `pause`, and `unpause` to Reader
408+
* Added callback for Writer publish
395409
* Expose error events on Reader/Writer
396410
* Expose nsqd connect / disconnect events
397411
* Fix crash when Message `finish`, `requeue`, etc after nsqd disconnect

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nsqjs",
33
"description": "NodeJS client for NSQ",
4-
"version": "0.12.1",
4+
"version": "0.13.0",
55
"homepage": "https://github.com/dudleycarr/nsqjs",
66
"author": {
77
"name": "Dudley Carr",

0 commit comments

Comments
 (0)