Changelog 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. 0.3.21
  2. ======
  3. * Update `faye-websocket` and `websocket-driver` to address DDoS vulnerability #275
  4. 0.3.20
  5. ======
  6. * Updated `node-uuid` and `coffeescript`
  7. * Exclude `examples`, `tests`, and `Makefile` from npm package
  8. * Update examples to use latest jQuery and sockjs-client #271
  9. * Don't call `res.end` in `writeHead` #266
  10. * Pin `websocket-driver` as later versions cause some tests from `sockjs-protocol` to fail
  11. 0.3.19
  12. ======
  13. * Update `node-uuid` version #224
  14. * Add `disable_cors` option to prevent CORS headers from being added to responses #218
  15. * Add `dnt` header to whitelist #212
  16. * Add `x-forwarded-host` and `x-forwarded-port` headers to whitelist #208
  17. * Update `sockjs_url` default to latest 1.x target #223
  18. * Updated hapi.js example #216
  19. 0.3.18
  20. ======
  21. * Change to using `res.statusCode` instead of manual parsing of `res._header` #213
  22. * Update sockjs-protocol filename in README #203
  23. 0.3.17
  24. ======
  25. * Fix usage of undefined `session` in `heartbeat_timeout` #179
  26. 0.3.16
  27. ======
  28. * Fix CORS response for null origin #177
  29. * Add websocket ping-pong and close if no response #129, #162, #169
  30. * Update sockjs-client version in examples #182
  31. * Add koa example #180
  32. * Disable raw websocket endpoint when websocket = false #183
  33. * Upgrade to faye-websocket 0.10.0 and use proper close code
  34. * When connection is aborted, don't delay the teardown
  35. * Forward additional headers #188
  36. * Add `no-transform` to Cache-Control headers #189
  37. * Update documentation about heartbeats #192
  38. 0.3.15
  39. ======
  40. * Remove usage of naked '@' function params to be compatible with coffeescript 1.9.0 #175
  41. 0.3.14
  42. ======
  43. * Re-publish to npm because of build issue in 0.3.13
  44. 0.3.13
  45. ======
  46. * Upgrade faye-websocket to 0.9.3 to fix #171
  47. 0.3.12
  48. ======
  49. * Allow Faye socket constructor options to be passed with
  50. faye_server_options option to createServer
  51. * Fix websocket bad json tests
  52. * Upgrade Faye to allow 0.9.*
  53. 0.3.11
  54. ======
  55. * #133 - only delay disconnect on non-websocket transports
  56. * Upgrade Faye to 0.8.0
  57. 0.3.10
  58. ======
  59. * #168 - Add CORS headers for eventsource
  60. * #158 - schedule heartbeat timer even if send_buffer is not empty
  61. * #96 - remove rbytes dependency
  62. * #83 - update documentation for prefix
  63. * #163 - add protection to JSON for SWF exploit
  64. * #104 - delete unused parameters in code
  65. * #106 - update CDN urls
  66. * #79 - Don't remove stream listeners until after end so 'close' event is heard
  67. * Get rid of need for _sockjs_onload global variable
  68. * Use Faye for websocket request validation
  69. * Upgrade Faye to 0.7.3
  70. * Upgrade node-uuid to 1.4.1
  71. 0.3.9
  72. =====
  73. * #130 - Set Vary: Origin on CORS requests
  74. * Upgrade Faye to 0.7.2 from 0.7.0
  75. 0.3.8
  76. =====
  77. * #118 - Allow servers to specify a base URL in /info
  78. * #131 - Don't look up session id undefined
  79. * #124 - Small grammar updates for ReadMe
  80. * Upgrade Faye to 0.7.0 from 0.4.0
  81. 0.3.7
  82. =====
  83. * Expose "protocol" on raw websocket connection instance, correctly
  84. 0.3.6
  85. =====
  86. * When the server closes a connection, make sure the send buffer still
  87. gets flushed.
  88. * Expose "protocol" on raw websocket connection instance
  89. * #105, #109, #113 - expose 'host', 'user-agent', and 'accept-language'
  90. headers
  91. * Serve SockJS over https CDN by default
  92. * Upgrade Faye to 0.4.4 from 0.4.0
  93. 0.3.5
  94. =====
  95. * #103 - connection.protocol might have been empty on some rare
  96. occasions.
  97. * #99 - faye-websocket was leaking sockets in "closed" state
  98. when dealing with rfc websockets
  99. 0.3.4
  100. =====
  101. * #73 - apparently 'package' is a reserved keyword (use 'pkg' instead)
  102. * #93 - Coffescript can leak a variable when the same name is used
  103. in catch statement. Let's always use 'x' as the variable in catch.
  104. * #76 - decorateConnection could throw an error if remote connection
  105. was closed before setup was complete
  106. * #90 - Fix "TypeError: 'addListener'" exception (via @pl).
  107. * remove 'optionalDependencies' section from package.json,
  108. 'rbytes' was always optional.
  109. * #91 - Fix rare null exception.
  110. 0.3.3
  111. =====
  112. * sockjs/sockjs-protocol#56, #88 Fix for iOS 6 caching POSTs
  113. 0.3.1
  114. =====
  115. * #58 - websocket transport emitted an array instead of a string
  116. during onmessage event.
  117. * Running under node.js 0.7 caused infinite recursion (Stephan Kochen)
  118. * #59 - restrict characters allowed in callback parameter
  119. * Updated readme - rbytes package is optional
  120. * Updated readme WRT deployments on heroku
  121. * Add minimalistic license block to every source file.
  122. 0.3.0
  123. =====
  124. * Sending JSESSIONID cookie is now *disabled* by default.
  125. * sockjs/sockjs-protocol#46 - introduce new service
  126. required for protocol tests "/cookie_needed_echo"
  127. * Initial work towards better integration with
  128. "connect" (Stephan Kochen). See discusion:
  129. https://github.com/senchalabs/connect/pull/506
  130. * More documentation about the Cookie and Origin headers.
  131. * #51 - expose "readyState" on connection instance
  132. * #53 - expose "protocol" on connection instance
  133. * #52 - Some protocols may not emit 'close' event with IE.
  134. * sockjs/sockjs-client#49 - Support 'null' origin - aka: allow SockJS
  135. client to be served from file:// paths.
  136. 0.2.1
  137. =====
  138. * Bumped "faye-websocket" dependency to 0.4. Updated
  139. code to take advantage of introduced changes.
  140. * Pinned "node-static" and bumped "node-uuid" dependencies.
  141. * Removed "Origin" header list of headers exposed to the user.
  142. This header is not really meaningful in sockjs context.
  143. * Header "Access-Control-Allow-Methods" was misspelled.
  144. 0.2.0
  145. =====
  146. * #36, #3 - Replace a custom WebSocket server implementation
  147. with faye-websocket-node.
  148. * Multiple changes to support SockJS-protocol 0.2.
  149. * The session is now closed on network errors immediately
  150. (instead of waiting 5 seconds)
  151. * Raw websocket interface available - to make it easier
  152. to write command line SockJS clients.
  153. * Support '/info' url.
  154. * The test server got moved from SockJS-client to SockJS-node.
  155. * Dropped deprecated Server API (use createServer method instead).
  156. * Option `websocket` is now used instead of `disabled_transports`.
  157. 0.1.2
  158. =====
  159. * #27 - Allow all unicode characters to be send over SockJS.
  160. * #14 - Make it possible to customize JSESSIONID cookie logic.
  161. 0.1.1
  162. =====
  163. * #32 Expose various request headers on connection.
  164. * #30 Expose request path on connection.
  165. 0.1.0
  166. =====
  167. * The API changed, there is now an idiomatic API, modelled on node.js
  168. Stream API. The old API is deprecated and there is a dummy wrapper
  169. that emulates it. Please do upgrade to the new idiomatic API.
  170. * #22 Initial support for hybi13 (stephank)
  171. * New options accepted by the `Server` constructor: `log`,
  172. `heartbeat_delay` and `disconnect_delay`.
  173. * SockJS is now not able to send rich data structures - all data
  174. passed to `write` is converted to a string.
  175. * #23 `Connection.remoteAddress` property introduced (Stéphan Kochen)
  176. * Loads of small changes in order to adhere to protocol spec.
  177. 0.0.5
  178. =====
  179. * #20: `npm submodule sockjs` didn't work due to outdated github
  180. path.
  181. 0.0.4
  182. =====
  183. * Support for htmlfile transport, used by IE in a deployment
  184. dependent on cookies.
  185. * Added /chunking_test API, used to detect support for HTTP chunking
  186. on client side.
  187. * Unified code logic for all the chunking transports - the same code
  188. is reused for polling versions.
  189. * All the chunking transports are closed by the server after 128K was
  190. send, in order to force client to GC and reconnect.
  191. * Don't distribute source coffeescript with npm.
  192. * Minor fixes in websocket code.
  193. * Dropped jQuery dependency.
  194. * Unicode encoding could been garbled during XHR upload.
  195. * Other minor fixes.
  196. 0.0.3
  197. ======
  198. * EventSource transport didn't emit 'close' event.
  199. 0.0.2
  200. =====
  201. * By default set JSESSIONID cookie, useful for load balancing.
  202. 0.0.1
  203. =====
  204. * Initial release.