Skip to content

Commit 10d1273

Browse files
committedAug 2, 2017
version 1.8.11
1 parent 2848661 commit 10d1273

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed
 

‎CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Known issues:
77

88
## not yet released
99

10+
(nothing yet)
11+
12+
13+
## 1.8.11
14+
1015
- [issue #504] The `bunyan` 1.x CLI adds a `Host: $client_req.address[:$client_req.port]`
1116
header when rendering a `client_req` field in a log record. Fix that here to:
1217
(a) not add it if `client_req.headers` already includes a host header; and

‎bin/bunyan

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* vim: expandtab:ts=4:sw=4
1212
*/
1313

14-
var VERSION = '1.8.10';
14+
var VERSION = '1.8.11';
1515

1616
var p = console.log;
1717
var util = require('util');

‎lib/bunyan.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* vim: expandtab:ts=4:sw=4
99
*/
1010

11-
var VERSION = '1.8.10';
11+
var VERSION = '1.8.11';
1212

1313
/*
1414
* Bunyan log format version. This becomes the 'v' field on all log records.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bunyan",
3-
"version": "1.8.10",
3+
"version": "1.8.11",
44
"description": "a JSON logging library for node.js services",
55
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
66
"main": "./lib/bunyan.js",

0 commit comments

Comments
 (0)
Please sign in to comment.