From 7be79fb8f6a81f556faaab89d55f04ca33b0791a Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Fri, 8 Jan 2021 15:25:39 -0800 Subject: [PATCH] version 1.8.15 --- CHANGES.md | 7 +++++++ bin/bunyan | 4 ++-- lib/bunyan.js | 4 ++-- package-lock.json | 2 +- package.json | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 0e6d2a66..2386d683 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ # 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 @@ -7,6 +10,10 @@ Known issues: ## 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 . (By @twelve17 and diff --git a/bin/bunyan b/bin/bunyan index 662def6d..3b84471b 100755 --- a/bin/bunyan +++ b/bin/bunyan @@ -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) @@ -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'); diff --git a/lib/bunyan.js b/lib/bunyan.js index e717c0c8..f9885606 100644 --- a/lib/bunyan.js +++ b/lib/bunyan.js @@ -1,5 +1,5 @@ /** - * Copyright 2020 Trent Mick. + * Copyright 2021 Trent Mick. * Copyright 2020 Joyent Inc. * * The bunyan logging library for node.js. @@ -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. diff --git a/package-lock.json b/package-lock.json index e22ae156..cff6a6c7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "bunyan", - "version": "1.8.14", + "version": "1.8.15", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0a6416a3..3f6383b7 100644 --- a/package.json +++ b/package.json @@ -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 (http://trentm.com)", "main": "./lib/bunyan.js",