Commit Graph

678 Commits (1.8.12)

Author SHA1 Message Date
Trent Mick 04de162a02 prep for future dev 2014-10-17 14:34:49 -07:00
Trent Mick f21007d46c prepare for 1.2.0 release 2014-10-17 14:34:46 -07:00
Trent Mick 6fc941c9b4 Restore dtrace-provider in optionalDependencies
dtrace-provider v0.3.0 fixes build issues of yore. This fixes things
for node 0.11/0.12 usage.

Fixes #157
2014-10-15 22:18:11 -07:00
Trent Mick 5598700713 prep for future dev 2014-09-27 21:50:14 -07:00
Trent Mick 6229405cba prepare for 1.1.3 release 2014-09-27 21:50:04 -07:00
Trent Mick 4455189b77 Include extra `err` fields in `bunyan` CLI output.
Fixes #165.
2014-09-27 21:49:27 -07:00
Trent Mick bd149b924b prep for future dev 2014-09-27 21:26:15 -07:00
Trent Mick c23b369be2 prepare for 1.1.2 release 2014-09-27 21:26:06 -07:00
Trent Mick a5ca41a150 Fix a breakage in `log.info(err)` on a logger with no serializers. 2014-09-27 21:22:17 -07:00
Trent Mick b9f347b757 prep for future dev 2014-09-27 21:08:53 -07:00
Trent Mick e5d8576f78 prepare for 1.1.1 release 2014-09-27 21:08:43 -07:00
Trent Mick 6684393563 Note Mihai's recent change. 2014-09-27 21:08:35 -07:00
Trent Mick db85a851fe Fix 'make check' 2014-09-27 21:04:34 -07:00
Trent Mick d3929226a8 Fix 'make check' 2014-09-27 21:04:14 -07:00
Trent Mick bc49f14cfa Merge pull request #168 from matomesc/master_matomesc
Use the correct error serializer
2014-09-27 21:02:15 -07:00
Trent Mick 594cc82da1 Better browser sniffing suggested at 414f33563d (commitcomment-7936060) 2014-09-26 20:46:27 -07:00
Trent Mick f5e5d577f0 clean up README sectioN 2014-09-21 21:35:27 -07:00
Trent Mick 9e6a199ca5 give people a start at rendered console.log in the browser 2014-09-21 21:32:07 -07:00
Trent Mick b86b954a6b TODOne 2014-09-21 21:22:01 -07:00
Trent Mick 9c150d9c6e prep for future dev 2014-09-21 21:21:06 -07:00
Trent Mick 75ade19b4d prepare for 1.1.0 release 2014-09-21 21:20:56 -07:00
Trent Mick 414f33563d browserify support, bump ver to 1.1.0 2014-09-21 21:20:43 -07:00
Mihai Tomescu 92a4e2b81b removed empty lines 2014-09-13 20:16:46 -04:00
Mihai Tomescu 576e500b11 use the correct error serializer 2014-09-13 20:12:09 -04:00
Trent Mick cb703ef474 prep for future dev 2014-08-25 00:51:14 -07:00
Trent Mick 1093b07a8e prepare for 1.0.1 release 2014-08-25 00:51:09 -07:00
Trent Mick 7ef6b120db 'make check' clean 2014-08-25 00:50:53 -07:00
Trent Mick a3e7081be6 note recent change 2014-08-25 00:40:52 -07:00
Trent Mick eaa88a74b6 Merge pull request #138 from andreineculau/patch-1
fix #105: export addStream and addSerializers
2014-08-25 00:30:16 -07:00
Trent Mick fe1e25aea9 Fix anchor (per @wayneseymour, fixes #152) 2014-08-25 00:24:25 -07:00
Trent Mick 2e1d85a3cb note recent change 2014-08-25 00:20:08 -07:00
Trent Mick a051565ced Merge pull request #159 from strongloop-forks/constructor-fix
Fix bad constructor guard
2014-08-25 00:10:41 -07:00
Trent Mick 6c6b6ea633 note recent change 2014-08-25 00:04:03 -07:00
Trent Mick 69c5258380 Add .npmignore for smaller install (~125k -> 56k)
Fixes #156
2014-08-24 23:47:59 -07:00
Trent Mick b729808307 rebuild man page from .ronn 2014-08-24 23:44:57 -07:00
Trent Mick ecf4b8c6a4 Tweak to SIGINT patch from @jnordberg for #161 2014-08-24 23:34:38 -07:00
Trent Mick 96b9f35019 Merge pull request #161 from jnordberg/ignore-sigint
Ignore SIGINT when processing stdin
2014-08-24 23:21:30 -07:00
Johan Nordberg e899ecbf92 Ignore SIGINT when processing stdin
Fixes #126
2014-08-17 13:22:01 +02:00
Trent Mick 26a8bb02a4 Bright black "hides" some bunyan CLI styled text when using Solarized Dark theme
fixes #160
2014-08-10 00:36:55 -07:00
Ryan Graham 6b44120d53 test: make throw tests validate was is thrown
When the second argument to nodeunit's assert.throws() is a string it
is used as the failure message, not for exception message matching.

To assert the contents of the exception's message a RegExp must be
used.
2014-08-08 18:28:40 -07:00
Ryan Graham c3b8dd26a7 Fix parent instanceof guard
The ! operator is higher priority than the instanceof operator, so the
expression (! this instanceof X) is the same as ((!this) instanceof X),
which will always evaluate to false.
2014-08-08 18:28:29 -07:00
Ryan Graham e4ea3fb05f test: ensure parent type guard is working 2014-08-08 18:28:25 -07:00
Ryan Graham 58df808325 Fix ctor instanceof guard
The ! operator is higher priority than the instanceof operator, so the
expression (! this instanceof X) is the same as ((!this) instanceof X),
which will always evaluate to false.
2014-08-08 18:26:07 -07:00
Ryan Graham e8aec58222 test: add test for instanceof ctor guard 2014-08-08 18:25:53 -07:00
Trent Mick dacdd080dc add note about separate dtrace-provider installation necessity 2014-08-01 16:38:33 -07:00
Trent Mick 76bc7acca4 prep for future dev 2014-08-01 16:01:01 -07:00
Trent Mick b31cb3be05 prepare for 1.0.0 release 2014-08-01 16:00:56 -07:00
Trent Mick 48cb962f53 tweak 2014-08-01 15:58:42 -07:00
Trent Mick 660b706479 doc new -c CODE; drop dtrace-provider as optionalDependency (fixes #135); add 'bunyan -0' shortcut 2014-08-01 15:57:48 -07:00
Trent Mick 02c1d042e9 Merge pull request #154 from pfmooney/GH-87
Fix #87 - nuke vm.runInNewContext condition filtering
2014-08-01 15:13:13 -07:00