second
[josuexyz/.git] / node_modules / morgan / HISTORY.md
1 1.9.1 / 2018-09-10
2 ==================
3
4   * Fix using special characters in format
5   * deps: depd@~1.1.2
6     - perf: remove argument reassignment
7
8 1.9.0 / 2017-09-26
9 ==================
10
11   * Use `res.headersSent` when available
12   * deps: basic-auth@~2.0.0
13      - Use `safe-buffer` for improved Buffer API
14   * deps: debug@2.6.9
15   * deps: depd@~1.1.1
16     - Remove unnecessary `Buffer` loading
17
18 1.8.2 / 2017-05-23
19 ==================
20
21   * deps: debug@2.6.8
22     - Fix `DEBUG_MAX_ARRAY_LENGTH`
23     - deps: ms@2.0.0
24
25 1.8.1 / 2017-02-04
26 ==================
27
28   * deps: debug@2.6.1
29     - Fix deprecation messages in WebStorm and other editors
30     - Undeprecate `DEBUG_FD` set to `1` or `2`
31
32 1.8.0 / 2017-02-04
33 ==================
34
35   * Fix sending unnecessary `undefined` argument to token functions
36   * deps: basic-auth@~1.1.0
37   * deps: debug@2.6.0
38     - Allow colors in workers
39     - Deprecated `DEBUG_FD` environment variable
40     - Fix error when running under React Native
41     - Use same color for same namespace
42     - deps: ms@0.7.2
43   * perf: enable strict mode in compiled functions
44
45 1.7.0 / 2016-02-18
46 ==================
47
48   * Add `digits` argument to `response-time` token
49   * deps: depd@~1.1.0
50     - Enable strict mode in more places
51     - Support web browser loading
52   * deps: on-headers@~1.0.1
53     - perf: enable strict mode
54
55 1.6.1 / 2015-07-03
56 ==================
57
58   * deps: basic-auth@~1.0.3
59
60 1.6.0 / 2015-06-12
61 ==================
62
63   * Add `morgan.compile(format)` export
64   * Do not color 1xx status codes in `dev` format
65   * Fix `response-time` token to not include response latency
66   * Fix `status` token incorrectly displaying before response in `dev` format
67   * Fix token return values to be `undefined` or a string
68   * Improve representation of multiple headers in `req` and `res` tokens
69   * Use `res.getHeader` in `res` token
70   * deps: basic-auth@~1.0.2
71     - perf: enable strict mode
72     - perf: hoist regular expression
73     - perf: parse with regular expressions
74     - perf: remove argument reassignment
75   * deps: on-finished@~2.3.0
76     - Add defined behavior for HTTP `CONNECT` requests
77     - Add defined behavior for HTTP `Upgrade` requests
78     - deps: ee-first@1.1.1
79   * pref: enable strict mode
80   * pref: reduce function closure scopes
81   * pref: remove dynamic compile on every request for `dev` format
82   * pref: remove an argument reassignment
83   * pref: skip function call without `skip` option
84
85 1.5.3 / 2015-05-10
86 ==================
87
88   * deps: basic-auth@~1.0.1
89   * deps: debug@~2.2.0
90     - deps: ms@0.7.1
91   * deps: depd@~1.0.1
92   * deps: on-finished@~2.2.1
93     - Fix `isFinished(req)` when data buffered
94
95 1.5.2 / 2015-03-15
96 ==================
97
98   * deps: debug@~2.1.3
99     - Fix high intensity foreground color for bold
100     - deps: ms@0.7.0
101
102 1.5.1 / 2014-12-31
103 ==================
104
105   * deps: debug@~2.1.1
106   * deps: on-finished@~2.2.0
107
108 1.5.0 / 2014-11-06
109 ==================
110
111   * Add multiple date formats
112     - `clf` for the common log format
113     - `iso` for the common ISO 8601 date time format
114     - `web` for the common RFC 1123 date time format
115   * Deprecate `buffer` option
116   * Fix date format in `common` and `combined` formats
117   * Fix token arguments to accept values with `"`
118
119 1.4.1 / 2014-10-22
120 ==================
121
122   * deps: on-finished@~2.1.1
123     - Fix handling of pipelined requests
124
125 1.4.0 / 2014-10-16
126 ==================
127
128   * Add `debug` messages
129   * deps: depd@~1.0.0
130
131 1.3.2 / 2014-09-27
132 ==================
133
134   * Fix `req.ip` integration when `immediate: false`
135
136 1.3.1 / 2014-09-14
137 ==================
138
139   * Remove un-used `bytes` dependency
140   * deps: depd@0.4.5
141
142 1.3.0 / 2014-09-01
143 ==================
144
145   * Assert if `format` is not a function or string
146
147 1.2.3 / 2014-08-16
148 ==================
149
150   * deps: on-finished@2.1.0
151
152 1.2.2 / 2014-07-27
153 ==================
154
155   * deps: depd@0.4.4
156     - Work-around v8 generating empty stack traces
157
158 1.2.1 / 2014-07-26
159 ==================
160
161   * deps: depd@0.4.3
162     - Fix exception when global `Error.stackTraceLimit` is too low
163
164 1.2.0 / 2014-07-19
165 ==================
166
167   * Add `:remote-user` token
168   * Add `combined` log format
169   * Add `common` log format
170   * Add `morgan(format, options)` function signature
171   * Deprecate `default` format -- use `combined` format instead
172   * Deprecate not providing a format
173   * Remove non-standard grey color from `dev` format
174
175 1.1.1 / 2014-05-20
176 ==================
177
178   * simplify method to get remote address
179
180 1.1.0 / 2014-05-18
181 ==================
182
183   * "dev" format will use same tokens as other formats
184   * `:response-time` token is now empty when immediate used
185   * `:response-time` token is now monotonic
186   * `:response-time` token has precision to 1 μs
187   * fix `:status` + immediate output in node.js 0.8
188   * improve `buffer` option to prevent indefinite event loop holding
189   * deps: bytes@1.0.0
190     - add negative support
191
192 1.0.1 / 2014-05-04
193 ==================
194
195   * Make buffer unique per morgan instance
196   * deps: bytes@0.3.0
197     * added terabyte support
198
199 1.0.0 / 2014-02-08
200 ==================
201
202   * Initial release