Skip to content

Commit

Permalink
version 1.8.15
Browse files Browse the repository at this point in the history
  • Loading branch information
trentm committed Jan 8, 2021
1 parent 82e6f41 commit 7be79fb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
# bunyan Changelog

See [the bunyan@2.x changelog](https://github.com/trentm/node-bunyan/blob/master/CHANGES.md)
for details on recent 2.x releases.

Known issues:

- [issue #58] Can't install to a dir with spaces. This is [this node-gyp
bug](https://github.com/TooTallNate/node-gyp/issues/65).

## not yet released

(nothing yet)

## 1.8.15

- [pull #575, #278] Change the default "req" serializer to accept expressjs's
`req.originalUrl` for the "url" field per
<https://expressjs.com/en/api.html#req.originalUrl>. (By @twelve17 and
Expand Down
4 changes: 2 additions & 2 deletions bin/bunyan
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node
/**
* Copyright 2020 Trent Mick
* Copyright 2021 Trent Mick
* Copyright 2020 Joyent Inc.
*
* bunyan -- filter and pretty-print Bunyan log files (line-delimited JSON)
Expand All @@ -11,7 +11,7 @@
* vim: expandtab:ts=4:sw=4
*/

var VERSION = '1.8.14';
var VERSION = '1.8.15';

var p = console.log;
var util = require('util');
Expand Down
4 changes: 2 additions & 2 deletions lib/bunyan.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright 2020 Trent Mick.
* Copyright 2021 Trent Mick.
* Copyright 2020 Joyent Inc.
*
* The bunyan logging library for node.js.
Expand All @@ -8,7 +8,7 @@
* vim: expandtab:ts=4:sw=4
*/

var VERSION = '1.8.14';
var VERSION = '1.8.15';

/*
* Bunyan log format version. This becomes the 'v' field on all log records.
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bunyan",
"version": "1.8.14",
"version": "1.8.15",
"description": "a JSON logging library for node.js services",
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
"main": "./lib/bunyan.js",
Expand Down

0 comments on commit 7be79fb

Please sign in to comment.