bdbd2fd52238049d91275cf2b13e84969ca567c98c7d8ca705c1b503a78b43d6811c6727c75ef8302056ae85afe851f2fd7e70f4e0334e44c8f6ad11a72c72 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. 2.4.1 / 2022-02-22
  2. ==================
  3. * Fix error on early async hooks implementations
  4. 2.4.0 / 2022-02-21
  5. ==================
  6. * Prevent loss of async hooks context
  7. 2.3.0 / 2015-05-26
  8. ==================
  9. * Add defined behavior for HTTP `CONNECT` requests
  10. * Add defined behavior for HTTP `Upgrade` requests
  11. * deps: ee-first@1.1.1
  12. 2.2.1 / 2015-04-22
  13. ==================
  14. * Fix `isFinished(req)` when data buffered
  15. 2.2.0 / 2014-12-22
  16. ==================
  17. * Add message object to callback arguments
  18. 2.1.1 / 2014-10-22
  19. ==================
  20. * Fix handling of pipelined requests
  21. 2.1.0 / 2014-08-16
  22. ==================
  23. * Check if `socket` is detached
  24. * Return `undefined` for `isFinished` if state unknown
  25. 2.0.0 / 2014-08-16
  26. ==================
  27. * Add `isFinished` function
  28. * Move to `jshttp` organization
  29. * Remove support for plain socket argument
  30. * Rename to `on-finished`
  31. * Support both `req` and `res` as arguments
  32. * deps: ee-first@1.0.5
  33. 1.2.2 / 2014-06-10
  34. ==================
  35. * Reduce listeners added to emitters
  36. - avoids "event emitter leak" warnings when used multiple times on same request
  37. 1.2.1 / 2014-06-08
  38. ==================
  39. * Fix returned value when already finished
  40. 1.2.0 / 2014-06-05
  41. ==================
  42. * Call callback when called on already-finished socket
  43. 1.1.4 / 2014-05-27
  44. ==================
  45. * Support node.js 0.8
  46. 1.1.3 / 2014-04-30
  47. ==================
  48. * Make sure errors passed as instanceof `Error`
  49. 1.1.2 / 2014-04-18
  50. ==================
  51. * Default the `socket` to passed-in object
  52. 1.1.1 / 2014-01-16
  53. ==================
  54. * Rename module to `finished`
  55. 1.1.0 / 2013-12-25
  56. ==================
  57. * Call callback when called on already-errored socket
  58. 1.0.1 / 2013-12-20
  59. ==================
  60. * Actually pass the error to the callback
  61. 1.0.0 / 2013-12-20
  62. ==================
  63. * Initial release