b870f43050c4c1a6633633e72ae46aeb2eae4d71f75b421e528416ec0115610a0656d7f62c92167e14cd94d3582ffdfb14243aa4140a524b3eddc5618c8162 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. 1.1.0 / 2017-09-24
  2. ==================
  3. * Use `res.headersSent` when available
  4. 1.0.6 / 2017-09-22
  5. ==================
  6. * deps: debug@2.6.9
  7. 1.0.5 / 2017-09-15
  8. ==================
  9. * deps: parseurl@~1.3.2
  10. - perf: reduce overhead for full URLs
  11. - perf: unroll the "fast-path" `RegExp`
  12. 1.0.4 / 2017-08-03
  13. ==================
  14. * deps: debug@2.6.8
  15. 1.0.3 / 2017-05-16
  16. ==================
  17. * deps: debug@2.6.7
  18. - deps: ms@2.0.0
  19. 1.0.2 / 2017-04-22
  20. ==================
  21. * deps: debug@2.6.4
  22. - deps: ms@0.7.3
  23. 1.0.1 / 2017-03-21
  24. ==================
  25. * Fix missing `</html>` in HTML document
  26. * deps: debug@2.6.3
  27. - Fix: `DEBUG_MAX_ARRAY_LENGTH`
  28. 1.0.0 / 2017-02-15
  29. ==================
  30. * Fix exception when `err` cannot be converted to a string
  31. * Fully URL-encode the pathname in the 404 message
  32. * Only include the pathname in the 404 message
  33. * Send complete HTML document
  34. * Set `Content-Security-Policy: default-src 'self'` header
  35. * deps: debug@2.6.1
  36. - Allow colors in workers
  37. - Deprecated `DEBUG_FD` environment variable set to `3` or higher
  38. - Fix error when running under React Native
  39. - Use same color for same namespace
  40. - deps: ms@0.7.2
  41. 0.5.1 / 2016-11-12
  42. ==================
  43. * Fix exception when `err.headers` is not an object
  44. * deps: statuses@~1.3.1
  45. * perf: hoist regular expressions
  46. * perf: remove duplicate validation path
  47. 0.5.0 / 2016-06-15
  48. ==================
  49. * Change invalid or non-numeric status code to 500
  50. * Overwrite status message to match set status code
  51. * Prefer `err.statusCode` if `err.status` is invalid
  52. * Set response headers from `err.headers` object
  53. * Use `statuses` instead of `http` module for status messages
  54. - Includes all defined status messages
  55. 0.4.1 / 2015-12-02
  56. ==================
  57. * deps: escape-html@~1.0.3
  58. - perf: enable strict mode
  59. - perf: optimize string replacement
  60. - perf: use faster string coercion
  61. 0.4.0 / 2015-06-14
  62. ==================
  63. * Fix a false-positive when unpiping in Node.js 0.8
  64. * Support `statusCode` property on `Error` objects
  65. * Use `unpipe` module for unpiping requests
  66. * deps: escape-html@1.0.2
  67. * deps: on-finished@~2.3.0
  68. - Add defined behavior for HTTP `CONNECT` requests
  69. - Add defined behavior for HTTP `Upgrade` requests
  70. - deps: ee-first@1.1.1
  71. * perf: enable strict mode
  72. * perf: remove argument reassignment
  73. 0.3.6 / 2015-05-11
  74. ==================
  75. * deps: debug@~2.2.0
  76. - deps: ms@0.7.1
  77. 0.3.5 / 2015-04-22
  78. ==================
  79. * deps: on-finished@~2.2.1
  80. - Fix `isFinished(req)` when data buffered
  81. 0.3.4 / 2015-03-15
  82. ==================
  83. * deps: debug@~2.1.3
  84. - Fix high intensity foreground color for bold
  85. - deps: ms@0.7.0
  86. 0.3.3 / 2015-01-01
  87. ==================
  88. * deps: debug@~2.1.1
  89. * deps: on-finished@~2.2.0
  90. 0.3.2 / 2014-10-22
  91. ==================
  92. * deps: on-finished@~2.1.1
  93. - Fix handling of pipelined requests
  94. 0.3.1 / 2014-10-16
  95. ==================
  96. * deps: debug@~2.1.0
  97. - Implement `DEBUG_FD` env variable support
  98. 0.3.0 / 2014-09-17
  99. ==================
  100. * Terminate in progress response only on error
  101. * Use `on-finished` to determine request status
  102. 0.2.0 / 2014-09-03
  103. ==================
  104. * Set `X-Content-Type-Options: nosniff` header
  105. * deps: debug@~2.0.0
  106. 0.1.0 / 2014-07-16
  107. ==================
  108. * Respond after request fully read
  109. - prevents hung responses and socket hang ups
  110. * deps: debug@1.0.4
  111. 0.0.3 / 2014-07-11
  112. ==================
  113. * deps: debug@1.0.3
  114. - Add support for multiple wildcards in namespaces
  115. 0.0.2 / 2014-06-19
  116. ==================
  117. * Handle invalid status codes
  118. 0.0.1 / 2014-06-05
  119. ==================
  120. * deps: debug@1.0.2
  121. 0.0.0 / 2014-06-05
  122. ==================
  123. * Extracted from connect/express