OSDN Git Service

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