1 | # [1.1.0](https://github.com/EventSource/eventsource/compare/v1.0.7...v1.1.0)
|
---|
2 |
|
---|
3 | * Improve performance for large messages across many chunks ([#130](https://github.com/EventSource/eventsource/pull/130) Trent Willis)
|
---|
4 | * Add `createConnection` option for http or https requests ([#120](https://github.com/EventSource/eventsource/pull/120) Vasily Lavrov)
|
---|
5 | * Support HTTP 302 redirects ([#116](https://github.com/EventSource/eventsource/pull/116) Ryan Bonte)
|
---|
6 | * Prevent sequential errors from attempting multiple reconnections ([#125](https://github.com/EventSource/eventsource/pull/125) David Patty)
|
---|
7 | * Add `new` to correct test ([#111](https://github.com/EventSource/eventsource/pull/101) Stéphane Alnet)
|
---|
8 | * Fix reconnections attempts now happen more than once ([#136](https://github.com/EventSource/eventsource/pull/136) Icy Fish)
|
---|
9 |
|
---|
10 | # [1.0.7](https://github.com/EventSource/eventsource/compare/v1.0.6...v1.0.7)
|
---|
11 |
|
---|
12 | * Add dispatchEvent to EventSource ([#101](https://github.com/EventSource/eventsource/pull/101) Ali Afroozeh)
|
---|
13 | * Added `checkServerIdentity` option ([#104](https://github.com/EventSource/eventsource/pull/104) cintolas)
|
---|
14 | * Surface request error message ([#107](https://github.com/EventSource/eventsource/pull/107) RasPhilCo)
|
---|
15 |
|
---|
16 | # [1.0.6](https://github.com/EventSource/eventsource/compare/v1.0.5...v1.0.6)
|
---|
17 |
|
---|
18 | * Fix issue where a unicode sequence split in two chunks would lead to invalid messages ([#108](https://github.com/EventSource/eventsource/pull/108) Espen Hovlandsdal)
|
---|
19 | * Change example to use `eventsource/ssestream` (Aslak Hellesøy)
|
---|
20 |
|
---|
21 | # [1.0.5](https://github.com/EventSource/eventsource/compare/v1.0.4...v1.0.5)
|
---|
22 |
|
---|
23 | * Check for `window` existing before polyfilling. ([#80](https://github.com/EventSource/eventsource/pull/80) Neftaly Hernandez)
|
---|
24 |
|
---|
25 | # [1.0.4](https://github.com/EventSource/eventsource/compare/v1.0.2...v1.0.4)
|
---|
26 |
|
---|
27 | * Pass withCredentials on to the XHR. ([#79](https://github.com/EventSource/eventsource/pull/79) Ken Mayer)
|
---|
28 |
|
---|
29 | # [1.0.2](https://github.com/EventSource/eventsource/compare/v1.0.1...v1.0.2)
|
---|
30 |
|
---|
31 | * Fix proxy not working when proxy and target URL uses different protocols. ([#76](https://github.com/EventSource/eventsource/pull/76) Espen Hovlandsdal)
|
---|
32 | * Make `close()` a prototype method instead of an instance method. ([#77](https://github.com/EventSource/eventsource/pull/77) Espen Hovlandsdal)
|
---|
33 |
|
---|
34 | # [1.0.1](https://github.com/EventSource/eventsource/compare/v1.0.0...v1.0.1)
|
---|
35 |
|
---|
36 | * Reconnect if server responds with HTTP 500, 502, 503 or 504. ([#74](https://github.com/EventSource/eventsource/pull/74) Vykintas Narmontas)
|
---|
37 |
|
---|
38 | # [1.0.0](https://github.com/EventSource/eventsource/compare/v0.2.3...v1.0.0)
|
---|
39 |
|
---|
40 | * Add missing `removeEventListener`-method. ([#51](https://github.com/EventSource/eventsource/pull/51) Yucheng Tu / Espen Hovlandsdal)
|
---|
41 | * Fix EventSource reconnecting on non-200 responses. ([af84476](https://github.com/EventSource/eventsource/commit/af84476b519a01e61b8c80727261df52ae40022c) Espen Hovlandsdal)
|
---|
42 | * Add ability to customize https options. ([#53](https://github.com/EventSource/eventsource/pull/53) Rafael Alfaro)
|
---|
43 | * Add readyState constants to EventSource instances. ([#66](https://github.com/EventSource/eventsource/pull/66) Espen Hovlandsdal)
|
---|
44 |
|
---|
45 | # [0.2.3](https://github.com/EventSource/eventsource/compare/v0.2.2...v0.2.3)
|
---|
46 |
|
---|
47 | * Fix `onConnectionClosed` firing multiple times resulting in multiple connections. ([#61](https://github.com/EventSource/eventsource/pull/61) Phil Strong / Duncan Wong)
|
---|
48 | * Remove unneeded isPlainObject check for headers. ([#64](https://github.com/EventSource/eventsource/pull/64) David Mark)
|
---|
49 |
|
---|
50 | # [0.2.2](https://github.com/EventSource/eventsource/compare/v0.2.1...v0.2.2)
|
---|
51 |
|
---|
52 | * Don't include test files in npm package. ([#56](https://github.com/EventSource/eventsource/pull/56) eanplatter)
|
---|
53 |
|
---|
54 | # [0.2.1](https://github.com/EventSource/eventsource/compare/v0.2.0...v0.2.1)
|
---|
55 |
|
---|
56 | * Fix `close()` for polyfill. ([#52](https://github.com/EventSource/eventsource/pull/52) brian-medendorp)
|
---|
57 | * Add http/https proxy function. ([#46](https://github.com/EventSource/eventsource/pull/46) Eric Lu)
|
---|
58 | * Fix reconnect for polyfill. Only disable reconnect when server status is 204. (Aslak Hellesøy).
|
---|
59 | * Drop support for Node 0.10.x and older (Aslak Hellesøy).
|
---|
60 |
|
---|
61 | # [0.2.0](https://github.com/EventSource/eventsource/compare/v0.1.6...v0.2.0)
|
---|
62 |
|
---|
63 | * Renamed repository to `eventsource` (since it's not just Node, but also browser polyfill). (Aslak Hellesøy).
|
---|
64 | * Compatibility with webpack/browserify. ([#44](https://github.com/EventSource/eventsource/pull/44) Adriano Raiano).
|
---|
65 |
|
---|
66 | # [0.1.6](https://github.com/EventSource/eventsource/compare/v0.1.5...v0.1.6)
|
---|
67 |
|
---|
68 | * Ignore headers without a value. ([#41](https://github.com/EventSource/eventsource/issues/41), [#43](https://github.com/EventSource/eventsource/pull/43) Adriano Raiano)
|
---|
69 |
|
---|
70 | # [0.1.5](https://github.com/EventSource/eventsource/compare/v0.1.4...v0.1.5)
|
---|
71 |
|
---|
72 | * Refactor tests to support Node.js 0.12.0 and Io.js 1.1.0. (Aslak Hellesøy)
|
---|
73 |
|
---|
74 | # [0.1.4](https://github.com/EventSource/eventsource/compare/v0.1.3...master)
|
---|
75 |
|
---|
76 | * Bugfix: Added missing origin property. ([#39](https://github.com/EventSource/eventsource/pull/39), [#38](https://github.com/EventSource/eventsource/issues/38) Arnout Kazemier)
|
---|
77 | * Expose `status` property on `error` events. ([#40](https://github.com/EventSource/eventsource/pull/40) Adriano Raiano)
|
---|
78 |
|
---|
79 | # [0.1.3](https://github.com/EventSource/eventsource/compare/v0.1.2...v0.1.3)
|
---|
80 |
|
---|
81 | * Bugfix: Made message properties enumerable. ([#37](https://github.com/EventSource/eventsource/pull/37) Golo Roden)
|
---|
82 |
|
---|
83 | # [0.1.2](https://github.com/EventSource/eventsource/compare/v0.1.1...v0.1.2)
|
---|
84 |
|
---|
85 | * Bugfix: Blank lines not read. ([#35](https://github.com/EventSource/eventsource/issues/35), [#36](https://github.com/EventSource/eventsource/pull/36) Lesterpig)
|
---|
86 |
|
---|
87 | # [0.1.1](https://github.com/EventSource/eventsource/compare/v0.1.0...v0.1.1)
|
---|
88 |
|
---|
89 | * Bugfix: Fix message type. ([#33](https://github.com/EventSource/eventsource/pull/33) Romain Gauthier)
|
---|
90 |
|
---|
91 | # [0.1.0](https://github.com/EventSource/eventsource/compare/v0.0.10...v0.1.0)
|
---|
92 |
|
---|
93 | * Bugfix: High CPU usage by replacing Jison with port of WebKit's parser. ([#25](https://github.com/EventSource/eventsource/issues/25), [#32](https://github.com/EventSource/eventsource/pull/32), [#18](https://github.com/EventSource/eventsource/issues/18) qqueue)
|
---|
94 | * Reformatted all code to 2 spaces.
|
---|
95 |
|
---|
96 | # [0.0.10](https://github.com/EventSource/eventsource/compare/v0.0.9...v0.0.10)
|
---|
97 |
|
---|
98 | * Provide `Event` argument on `open` and `error` event ([#30](https://github.com/EventSource/eventsource/issues/30), [#31](https://github.com/EventSource/eventsource/pull/31) Donghwan Kim)
|
---|
99 | * Expose `lastEventId` on messages. ([#28](https://github.com/EventSource/eventsource/pull/28) mbieser)
|
---|
100 |
|
---|
101 | # [0.0.9](https://github.com/EventSource/eventsource/compare/v0.0.8...v0.0.9)
|
---|
102 |
|
---|
103 | * Bugfix: old "last-event-id" used on reconnect ([#27](https://github.com/EventSource/eventsource/pull/27) Aslak Hellesøy)
|
---|
104 |
|
---|
105 | # [0.0.8](https://github.com/EventSource/eventsource/compare/v0.0.7...v0.0.8)
|
---|
106 |
|
---|
107 | * Bugfix: EventSource still reconnected when closed ([#24](https://github.com/EventSource/eventsource/pull/24) FrozenCow)
|
---|
108 | * Allow unauthorized HTTPS connections by setting `rejectUnauthorized` to false. (Aslak Hellesøy)
|
---|
109 |
|
---|
110 | # [0.0.7](https://github.com/EventSource/eventsource/compare/v0.0.6...v0.0.7)
|
---|
111 |
|
---|
112 | * Explicitly raise an error when server returns http 403 and don't continue ([#20](https://github.com/EventSource/eventsource/pull/20) Scott Moak)
|
---|
113 | * Added ability to send custom http headers to server ([#21](https://github.com/EventSource/eventsource/pull/21), [#9](https://github.com/EventSource/eventsource/issues/9) Scott Moak)
|
---|
114 | * Fix Unicode support to cope with Javascript Unicode size limitations ([#23](https://github.com/EventSource/eventsource/pull/23), [#22](https://github.com/EventSource/eventsource/issues/22) Devon Adkisson)
|
---|
115 | * Graceful handling of parse errors ([#19](https://github.com/EventSource/eventsource/issues/19) Aslak Hellesøy)
|
---|
116 | * Switched from testing with Nodeunit to Mocha (Aslak Hellesøy)
|
---|
117 |
|
---|
118 | # [0.0.6](https://github.com/EventSource/eventsource/compare/v0.0.5...v0.0.6)
|
---|
119 |
|
---|
120 | * Add Accept: text/event-stream header ([#17](https://github.com/EventSource/eventsource/pull/17) William Wicks)
|
---|
121 |
|
---|
122 | # [0.0.5](https://github.com/EventSource/eventsource/compare/v0.0.4...v0.0.5)
|
---|
123 |
|
---|
124 | * Add no-cache and https support ([#10](https://github.com/EventSource/eventsource/pull/10) Einar Otto Stangvik)
|
---|
125 | * Ensure that Last-Event-ID is sent to the server for reconnects, as defined in the spec ([#8](https://github.com/EventSource/eventsource/pull/8) Einar Otto Stangvik)
|
---|
126 | * Verify that CR and CRLF are accepted alongside LF ([#7](https://github.com/EventSource/eventsource/pull/7) Einar Otto Stangvik)
|
---|
127 | * Emit 'open' event ([#4](https://github.com/EventSource/eventsource/issues/4) Einar Otto Stangvik)
|
---|
128 |
|
---|
129 | # [0.0.4](https://github.com/EventSource/eventsource/compare/v0.0.3...v0.0.4)
|
---|
130 |
|
---|
131 | * Automatic reconnect every second if the server is down. Reconnect interval can be set with `reconnectInterval` (not in W3C spec). (Aslak Hellesøy)
|
---|
132 |
|
---|
133 | # [0.0.3](https://github.com/EventSource/eventsource/compare/v0.0.2...v0.0.3)
|
---|
134 |
|
---|
135 | * Jison based eventstream parser ([#2](https://github.com/EventSource/eventsource/pull/2) Einar Otto Stangvik)
|
---|
136 |
|
---|
137 | # [0.0.2](https://github.com/EventSource/eventsource/compare/v0.0.1...v0.0.2)
|
---|
138 |
|
---|
139 | * Use native EventListener (Aslak Hellesøy)
|
---|
140 |
|
---|
141 | # 0.0.1
|
---|
142 |
|
---|
143 | * First release
|
---|