项目原始demo,不改动
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

Changelog.md 8.7 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. 1.1.4
  2. ==
  3. * Upgrade `debug` and fix object key literal mangling, fixes regression in Opera 11.10 #359
  4. * Trim descriptions in package.json and bower.json - #372
  5. 1.1.3
  6. ==
  7. * Bad publish to NPM (removed)
  8. 1.1.2
  9. ==
  10. * Ensure both sender and receiver are cleaned upon close - #342
  11. * Remove event listeners before calling `close` - #344
  12. * Update documentation links - #351, #339, #316
  13. * Explicitly export `undefined` when `WebSocket` does not exist. Fixes Webpack. #321
  14. * Include `dist` folder on npm - #265
  15. * Simplify build setup
  16. * Update to Node.js 6.9
  17. * Add sourcemap for minified version
  18. * Remove unused String.trim shim
  19. 1.1.1
  20. ==
  21. * Do not pass `protocols` or `options` arguments to browser WebSocket constructor - #309
  22. 1.1.0
  23. ==
  24. * Fix IE7/8 usage of `console.log` which does not have `apply` - #279
  25. * Remove `dbg` global variable - #282
  26. * Bump `faye-websocket` version to `0.11.0` - #267
  27. * Optimize `arguments` usage - #263
  28. * Add sourcemap file to dist folder - #237
  29. * Add way to transparently pass transport-specific options - #272
  30. 1.0.3
  31. ==
  32. * Use `https` module for xhr requests in node when url uses https - #254
  33. 1.0.2
  34. ==
  35. * Fix iframe info receiver url
  36. * Move iframe.contentWindow check inside setTimeout - #246
  37. 1.0.1
  38. ==
  39. * Use proper base url for iframe-based info receiver - #249
  40. * Don't register unload event in chrome packaged app - #223
  41. * Allow custom session ids - #250
  42. * Remove version property from bower.json - #247
  43. * Update example CDN url - #244
  44. 1.0.0
  45. ===
  46. * Simplify url handling by delegating to `url-parse` - #242
  47. * Upgrade to `url-parse` 1.0.1 to fix colon issue if auth has no password
  48. 1.0.0-beta.13
  49. ===
  50. * Transport timeout on connection should fallback - #238
  51. 1.0.0-beta.12
  52. ====
  53. * Upgrade `url-parse` to 1.0.0 to fix #218 again
  54. 1.0.0-beta.10
  55. ====
  56. * Upgrade `url-parse` to 0.2.3 to fix #222
  57. 1.0.0-beta.9
  58. ====
  59. * Upgrade `url-parse` to 0.2.1 to fix 'too much recursion' errors
  60. 1.0.0-beta.8
  61. ====
  62. * Upgrade `url-parse` to 0.2.0 to fix inheritance issues
  63. 1.0.0-beta.7
  64. ====
  65. * Upgrade `url-parse` to 0.1.5 to fix #218
  66. * Don't strip basic auth from url - #219
  67. 1.0.0-beta.6
  68. ====
  69. * Upgrade `url-parse` to 0.1.3 to avoid CSP issues
  70. 1.0.0-beta.5
  71. =====
  72. * Upgrade `url-parse` to 0.1.1 to fix #214
  73. 1.0.0-beta.4
  74. =====
  75. * Upgrade `url-parse` to 0.1.0 and `sockjs` to 0.3.11
  76. * Update .npmignore
  77. 1.0.0-beta.3
  78. =====
  79. * Move `debug` from devDependencies to dependencies
  80. 1.0.0-beta.2
  81. =====
  82. * Relax requirements when using same origin XHR - #80
  83. * Upgrade to JSON3 from JSON2 - #123
  84. * Package library with browserify supporting the UMD pattern - #184
  85. * Move tests to JavaScript
  86. * Add Gulp.js build script
  87. * Fix getOrigin for file:/// urls and standard ports - #173
  88. * Add onerror event handlers to Websockets - #169
  89. * Increase RTO lower bound to prevent spurious timeouts on IE8/9 - #161
  90. * Use window.crypto for random values when available - #128
  91. * Fix handling of listeners added and removed mid-dispatch - #127
  92. * Fix XHR Streaming for IE8 - #83
  93. * Remove explicit AMD name - #107
  94. * Check for an empty response from /info request - #143
  95. * Add Content-Type to XHR requests to fix issue over HTTPS on Galaxy S4 - #164
  96. * Fix iframe fallback when message is sent from a popup in IE7/8 - #166
  97. * Add support for query strings on the url - #72
  98. * Now works inside of Web Workers - #181
  99. * Support EventSource / Server Sent Events outside of iframes - #201
  100. * Rename protocols to transports - #65
  101. * Allow transports which need the body to trigger on 'interactive' readyState - #175
  102. * try/catch access to document.domain - #187
  103. * Use `window.location` instead of `document.location` - #195
  104. * Allow usage from node.js with same API
  105. 0.3.4
  106. =====
  107. * Mentioned njoyce's fork of sockjs-gevent.
  108. * #90 - Don't catch onbeforeunload event - it breaks javascript://
  109. links in IE.
  110. * IE mangles 204 response code for 1223 on ajax, see:
  111. http://bugs.jquery.com/ticket/1450
  112. * Make `new` optional for SockJS constructor (via substack).
  113. * It is impossible to cancel JSONP polling request - compensate for that.
  114. * Refactored EventEmitter prototype (used only internally)
  115. * #66 - Failure to post data to /xhr_send should kill the session
  116. 0.3.2
  117. =====
  118. * #77 - Getting /info on modern browsers when html is served from
  119. file:// urls was broken.
  120. 0.3.1
  121. =====
  122. * #61 - Meteor guys found that we unintentionally catch "onopen" errors.
  123. * #63 - Meteorjs guys found that xhr-streaming on Safari sometimes
  124. left busy cursor running.
  125. * Increased allowed time for websocket transport (from 1 rtt to 2),
  126. this should make ws transport more reliable over SSL, at the cost
  127. of slightly longer connection time for users with blocked ws.
  128. * #57 - previous fix didn't really work, sockjs-client still left
  129. a mess in browsers history when using iframe transports. This
  130. is fixed now.
  131. * #60 - Opera 12 (next) claims to do AJAX2 / CORS, but can't
  132. do xhr-streaming.
  133. * #58 - onunload test sometimes failed on Safari on windows
  134. * Updated readme WRT websocket protocols
  135. * Updated readme WRT deployments on heroku
  136. * Add minimalistic license block to every source file.
  137. 0.3.0
  138. =====
  139. * Temporarily disabled iframe tests - they are failing unpredictably.
  140. * #57 - pointing an iframe to "about:blank" during cleanup caused
  141. Opera to messup history.
  142. * #55 - Improved iframe abstraction (reduced a possible mem leak)
  143. * Refactored AJAX abstractions, for better CORS handing - again.
  144. * Add additional parent origin security check to an iframe.
  145. * Urls with hashes or query strings can't be passed to SockJS.
  146. * #18 - Mention workaround for Firefox ESC key issue
  147. * #53 - AMD compliance
  148. * sockjs/sockjs-protocol#28 - always use square brackets for
  149. websocket frames
  150. * #51 - initial support for IE10 - try XHR before XDR
  151. * #28 - handle onunload / onbeforeunload in a more robust fashion
  152. * #49 - support SockJS-client being used from files served from
  153. file:// urls.
  154. 0.2.1
  155. =====
  156. * "smoke-latency.html" test was unnecesairly sending too much data.
  157. * Bumped core dependencies (coffee-script and uglify-js)
  158. * Minor updates to the README, few cosmetic changes in the code.
  159. 0.2.0
  160. =====
  161. * The API had changed - use `protocols_whitelist` option instead of
  162. passing an array of protocols as a second argument to SockJS constructor.
  163. * Dropped 'chunking-test' functionality and replace it with 'info'.
  164. * Rewritten protocol-choosing alogirthm, see "utils.detectProtocols" method.
  165. * Use dynamic protocol timeouts based on RTT, not hardcoded 5 seconds
  166. * #34 - Don't ever reuse `session_id`, especially when trying
  167. fallback protocols.
  168. * The test server got moved from SockJS-client to SockJS-node.
  169. * Don't test unicode surrogates - it can't work in some environments.
  170. * XHR/XDR helpers were rewritten, ajax transports were simplified.
  171. * Added a domain check in the iframe to improve security.
  172. * SockJS will now trigger 1002 error if there is a problem during handshake
  173. instead of 2000 error.
  174. * Smoke-throughput test is renamed to smoke-latency.
  175. 0.1.2
  176. =====
  177. * #29 - Allow all unicode characters to be send over SockJS.
  178. * #15 - SockJS should now work fine even if the connection is started
  179. in HEAD, before BODY is loaded.
  180. * #28 - In rare circumstances WebSocket connection can be left intact
  181. after the page is unloaded in FireFox.
  182. * Updated scripts to work with Node 0.6.
  183. * Initial work to do better QUnit testing.
  184. * Updated the minifying script (always escape unicode chars, remove
  185. trailing comment).
  186. * Use string instead of array of chars (utils.js:random_number_string).
  187. 0.1.1
  188. =====
  189. * #21 Get JsonP transport working on IE9 (Vladimir Dronnikov).
  190. * #26 Emit heartbeat event.
  191. * #27 Include license inline.
  192. 0.1.0
  193. =====
  194. * SockJS-client can only send UTF-8 encodable strings. Previously we
  195. took advantage of rich data structures and automatically
  196. json-encoded them, but this got removed. Now, all data passed to
  197. `send` will be converted to string. This is also how native
  198. * `status` property on `EventClose` is renamed to `code`
  199. as per Websocket API
  200. WebSockets behave.
  201. * The test server was updated to new `sockjs-node` API
  202. * Fixed problem with Jsonp-polling transport on IE9
  203. * Repository was moved - updated links.
  204. 0.0.4
  205. =====
  206. * All transports were refactored, some transports were introduced:
  207. htmlfile and separate xhr-streaming.
  208. * Added logic to detect support for http chunking, and thus a
  209. possibility to rule out streaming transports before running them.
  210. * Added 'cookie' option, useful for cookie-based load balancing
  211. (currently, it make a difference only for IE).
  212. * Added hack to prevent EventSource from crashing Safari and Chrome.
  213. * Loads and loads of other small and medium changes.
  214. 0.0.2
  215. =====
  216. * Initial support for JSESSIONID based load balancing. Currently
  217. doesn't play nicely with IE XDomainRequest transport.
  218. 0.0.1
  219. =====
  220. * Initial release.