Fix unit tests
[govpp.git] / vendor / github.com / sirupsen / logrus / CHANGELOG.md
1 # 1.0.0
2
3 * Officially changed name to lower-case
4 * bug: colors on Windows 10 (#541)
5 * bug: fix race in accessing level (#512)
6
7 # 0.11.5
8
9 * feature: add writer and writerlevel to entry (#372)
10
11 # 0.11.4
12
13 * bug: fix undefined variable on solaris (#493)
14
15 # 0.11.3
16
17 * formatter: configure quoting of empty values (#484)
18 * formatter: configure quoting character (default is `"`) (#484)
19 * bug: fix not importing io correctly in non-linux environments (#481)
20
21 # 0.11.2
22
23 * bug: fix windows terminal detection (#476)
24
25 # 0.11.1
26
27 * bug: fix tty detection with custom out (#471)
28
29 # 0.11.0
30
31 * performance: Use bufferpool to allocate (#370)
32 * terminal: terminal detection for app-engine (#343)
33 * feature: exit handler (#375)
34
35 # 0.10.0
36
37 * feature: Add a test hook (#180)
38 * feature: `ParseLevel` is now case-insensitive (#326)
39 * feature: `FieldLogger` interface that generalizes `Logger` and `Entry` (#308)
40 * performance: avoid re-allocations on `WithFields` (#335)
41
42 # 0.9.0
43
44 * logrus/text_formatter: don't emit empty msg
45 * logrus/hooks/airbrake: move out of main repository
46 * logrus/hooks/sentry: move out of main repository
47 * logrus/hooks/papertrail: move out of main repository
48 * logrus/hooks/bugsnag: move out of main repository
49 * logrus/core: run tests with `-race`
50 * logrus/core: detect TTY based on `stderr`
51 * logrus/core: support `WithError` on logger
52 * logrus/core: Solaris support
53
54 # 0.8.7
55
56 * logrus/core: fix possible race (#216)
57 * logrus/doc: small typo fixes and doc improvements
58
59
60 # 0.8.6
61
62 * hooks/raven: allow passing an initialized client
63
64 # 0.8.5
65
66 * logrus/core: revert #208
67
68 # 0.8.4
69
70 * formatter/text: fix data race (#218)
71
72 # 0.8.3
73
74 * logrus/core: fix entry log level (#208)
75 * logrus/core: improve performance of text formatter by 40%
76 * logrus/core: expose `LevelHooks` type
77 * logrus/core: add support for DragonflyBSD and NetBSD
78 * formatter/text: print structs more verbosely
79
80 # 0.8.2
81
82 * logrus: fix more Fatal family functions
83
84 # 0.8.1
85
86 * logrus: fix not exiting on `Fatalf` and `Fatalln`
87
88 # 0.8.0
89
90 * logrus: defaults to stderr instead of stdout
91 * hooks/sentry: add special field for `*http.Request`
92 * formatter/text: ignore Windows for colors
93
94 # 0.7.3
95
96 * formatter/\*: allow configuration of timestamp layout
97
98 # 0.7.2
99
100 * formatter/text: Add configuration option for time format (#158)