version 2.0.1
This commit is contained in:
parent
2d17313c4a
commit
39aa5d1f6e
6 changed files with 10 additions and 5 deletions
|
@ -7,6 +7,11 @@ Known issues:
|
||||||
|
|
||||||
## not yet released
|
## not yet released
|
||||||
|
|
||||||
|
(nothing yet)
|
||||||
|
|
||||||
|
|
||||||
|
## 2.0.1 (beta)
|
||||||
|
|
||||||
- [issue #504] **Backward incompatible change to the `bunyan` CLI:**
|
- [issue #504] **Backward incompatible change to the `bunyan` CLI:**
|
||||||
The `bunyan` CLI no longer adds a `Host` header when rendering a `client_req`
|
The `bunyan` CLI no longer adds a `Host` header when rendering a `client_req`
|
||||||
field in a log record. In 1.x it used to do this (using `client_req.address`
|
field in a log record. In 1.x it used to do this (using `client_req.address`
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -100,7 +100,7 @@ test: $(NODEUNIT)
|
||||||
$(SUDO) $(NODEUNIT) test/dtrace.test.js)
|
$(SUDO) $(NODEUNIT) test/dtrace.test.js)
|
||||||
$(NODEUNIT) $(NON_DTRACE_TEST_FILES)
|
$(NODEUNIT) $(NON_DTRACE_TEST_FILES)
|
||||||
|
|
||||||
# Test will all node supported versions (presumes install locations I use on
|
# Test with all node supported versions (presumes install locations I use on
|
||||||
# my machine -- "~/opt/node-VER"):
|
# my machine -- "~/opt/node-VER"):
|
||||||
# Note: 'test4' is last so (if all is well) I end up with a binary
|
# Note: 'test4' is last so (if all is well) I end up with a binary
|
||||||
# dtrace-provider build for my current default node version.
|
# dtrace-provider build for my current default node version.
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
* vim: expandtab:ts=4:sw=4
|
* vim: expandtab:ts=4:sw=4
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var VERSION = '2.0.0';
|
var VERSION = '2.0.1';
|
||||||
|
|
||||||
var p = console.log;
|
var p = console.log;
|
||||||
var util = require('util');
|
var util = require('util');
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* vim: expandtab:ts=4:sw=4
|
* vim: expandtab:ts=4:sw=4
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var VERSION = '2.0.0';
|
var VERSION = '2.0.1';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Bunyan log format version. This becomes the 'v' field on all log records.
|
* Bunyan log format version. This becomes the 'v' field on all log records.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bunyan",
|
"name": "bunyan",
|
||||||
"version": "2.0.0",
|
"version": "2.0.1",
|
||||||
"description": "a JSON logging library for node.js services",
|
"description": "a JSON logging library for node.js services",
|
||||||
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
|
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
|
||||||
"main": "./lib/bunyan.js",
|
"main": "./lib/bunyan.js",
|
||||||
|
|
|
@ -55,7 +55,7 @@ test('client_req.address is not used for Host header in 2.x (issue #504)',
|
||||||
function (err, stdout, stderr) {
|
function (err, stdout, stderr) {
|
||||||
t.ifError(err)
|
t.ifError(err)
|
||||||
t.equal(stdout, [
|
t.equal(stdout, [
|
||||||
// JSSTYLED:
|
// JSSTYLED
|
||||||
'[2017-05-12T23:59:15.877Z] TRACE: minfo/66266 on sharptooth.local: request sent (client_req.address=127.0.0.1)',
|
'[2017-05-12T23:59:15.877Z] TRACE: minfo/66266 on sharptooth.local: request sent (client_req.address=127.0.0.1)',
|
||||||
' HEAD /dap/stor HTTP/1.1',
|
' HEAD /dap/stor HTTP/1.1',
|
||||||
' accept: application/json, */*',
|
' accept: application/json, */*',
|
||||||
|
|
Loading…
Reference in a new issue