You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

180 lines
3.8 KiB

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