Blame view

node_modules/serve-favicon/HISTORY.md 3.27 KB
f7563de62   Palak Handa   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
  2.4.2 / 2017-03-24
  ==================
  
    * deps: ms@1.0.0
  
  2.4.1 / 2017-02-27
  ==================
  
    * Remove usage of `res._headers` private field
    * deps: fresh@0.5.0
      - Fix incorrect result when `If-None-Match` has both `*` and ETags
      - Fix weak `ETag` matching to match spec
      - perf: skip checking modified time if ETag check failed
      - perf: skip parsing `If-None-Match` when no `ETag` header
      - perf: use `Date.parse` instead of `new Date`
  
  2.4.0 / 2017-02-19
  ==================
  
    * deps: etag@~1.8.0
      - Use SHA1 instead of MD5 for ETag hashing
      - Works with FIPS 140-2 OpenSSL configuration
    * deps: fresh@0.4.0
      - Fix false detection of `no-cache` request directive
      - perf: enable strict mode
      - perf: hoist regular expressions
      - perf: remove duplicate conditional
      - perf: remove unnecessary boolean coercions
    * perf: simplify initial argument checking
  
  2.3.2 / 2016-11-16
  ==================
  
    * deps: ms@0.7.2
  
  2.3.1 / 2016-01-23
  ==================
  
    * deps: parseurl@~1.3.1
      - perf: enable strict mode
  
  2.3.0 / 2015-06-13
  ==================
  
    * Send non-chunked response for `OPTIONS`
    * deps: etag@~1.7.0
      - Always include entity length in ETags for hash length extensions
      - Generate non-Stats ETags using MD5 only (no longer CRC32)
      - Remove base64 padding in ETags to shorten
    * deps: fresh@0.3.0
      - Add weak `ETag` matching support
    * perf: enable strict mode
    * perf: remove argument reassignment
    * perf: remove bitwise operations
  
  2.2.1 / 2015-05-14
  ==================
  
    * deps: etag@~1.6.0
     - Improve support for JXcore
     - Support "fake" stats objects in environments without `fs`
    * deps: ms@0.7.1
      - Prevent extraordinarily long inputs
  
  2.2.0 / 2014-12-18
  ==================
  
    * Support query string in the URL
    * deps: etag@~1.5.1
      - deps: crc@3.2.1
    * deps: ms@0.7.0
      - Add `milliseconds`
      - Add `msecs`
      - Add `secs`
      - Add `mins`
      - Add `hrs`
      - Add `yrs`
  
  2.1.7 / 2014-11-19
  ==================
  
    * Avoid errors from enumerables on `Object.prototype`
  
  2.1.6 / 2014-10-16
  ==================
  
    * deps: etag@~1.5.0
  
  2.1.5 / 2014-09-24
  ==================
  
    * deps: etag@~1.4.0
  
  2.1.4 / 2014-09-15
  ==================
  
    * Fix content headers being sent in 304 response
    * deps: etag@~1.3.1
      - Improve ETag generation speed
  
  2.1.3 / 2014-09-07
  ==================
  
    * deps: fresh@0.2.4
  
  2.1.2 / 2014-09-05
  ==================
  
    * deps: etag@~1.3.0
      - Improve ETag generation speed
  
  2.1.1 / 2014-08-25
  ==================
  
    * Fix `ms` to be listed as a dependency
  
  2.1.0 / 2014-08-24
  ==================
  
    * Accept string for `maxAge` (converted by `ms`)
    * Use `etag` to generate `ETag` header
  
  2.0.1 / 2014-06-05
  ==================
  
    * Reduce byte size of `ETag` header
  
  2.0.0 / 2014-05-02
  ==================
  
    * `path` argument is required; there is no default icon.
    * Accept `Buffer` of icon as first argument.
    * Non-GET and HEAD requests are denied.
    * Send valid max-age value
    * Support conditional requests
    * Support max-age=0
    * Support OPTIONS method
    * Throw if `path` argument is directory.
  
  1.0.2 / 2014-03-16
  ==================
  
    * Fixed content of default icon.
  
  1.0.1 / 2014-03-11
  ==================
  
    * Fixed path to default icon.
  
  1.0.0 / 2014-02-15
  ==================
  
    * Initial release