|
1 Version history |
|
2 =============== |
|
3 |
|
4 ### 2.3.0 (2014-03-10) ### |
|
5 |
|
6 * Upgrade to the latest draft: [draft-ietf-httpbis-http2-10] |
|
7 |
|
8 [draft-ietf-httpbis-http2-10]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-10 |
|
9 |
|
10 ### 2.2.0 (2013-12-25) ### |
|
11 |
|
12 * Upgrade to the latest draft: [draft-ietf-httpbis-http2-09] |
|
13 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-2.2.0.tar.gz) |
|
14 |
|
15 [draft-ietf-httpbis-http2-09]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-09 |
|
16 |
|
17 ### 2.1.1 (2013-12-21) ### |
|
18 |
|
19 * Minor bugfix |
|
20 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-2.1.1.tar.gz) |
|
21 |
|
22 ### 2.1.0 (2013-11-10) ### |
|
23 |
|
24 * Upgrade to the latest draft: [draft-ietf-httpbis-http2-07][draft-07] |
|
25 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-2.1.0.tar.gz) |
|
26 |
|
27 [draft-07]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-07 |
|
28 |
|
29 ### 2.0.0 (2013-11-09) ### |
|
30 |
|
31 * Splitting out everything that is not related to negotiating HTTP2 or the node-like HTTP API. |
|
32 These live in separate module from now on: |
|
33 [http2-protocol](https://github.com/molnarg/node-http2-protocol). |
|
34 * The only backwards incompatible change: the `Endpoint` class is not exported anymore. Use the |
|
35 http2-protocol module if you want to use this low level interface. |
|
36 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-2.0.0.tar.gz) |
|
37 |
|
38 ### 1.0.1 (2013-10-14) ### |
|
39 |
|
40 * Support for ALPN if node supports it (currently needs a custom build) |
|
41 * Fix for a few small issues |
|
42 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-1.0.1.tar.gz) |
|
43 |
|
44 ### 1.0.0 (2013-09-23) ### |
|
45 |
|
46 * Exporting Endpoint class |
|
47 * Support for 'filters' in Endpoint |
|
48 * The last time-based release |
|
49 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-1.0.0.tar.gz) |
|
50 |
|
51 ### 0.4.1 (2013-09-15) ### |
|
52 |
|
53 * Major performance improvements |
|
54 * Minor improvements to error handling |
|
55 * [Blog post](http://gabor.molnar.es/blog/2013/09/15/gsoc-week-number-13/) |
|
56 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.4.1.tar.gz) |
|
57 |
|
58 ### 0.4.0 (2013-09-09) ### |
|
59 |
|
60 * Upgrade to the latest draft: [draft-ietf-httpbis-http2-06][draft-06] |
|
61 * Support for HTTP trailers |
|
62 * Support for TLS SNI (Server Name Indication) |
|
63 * Improved stream scheduling algorithm |
|
64 * [Blog post](http://gabor.molnar.es/blog/2013/09/09/gsoc-week-number-12/) |
|
65 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.4.0.tar.gz) |
|
66 |
|
67 [draft-06]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-06 |
|
68 |
|
69 ### 0.3.1 (2013-09-03) ### |
|
70 |
|
71 * Lot of testing, bugfixes |
|
72 * [Blog post](http://gabor.molnar.es/blog/2013/09/03/gsoc-week-number-11/) |
|
73 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.3.1.tar.gz) |
|
74 |
|
75 ### 0.3.0 (2013-08-27) ### |
|
76 |
|
77 * Support for prioritization |
|
78 * Small API compatibility improvements (compatibility with the standard node.js HTTP API) |
|
79 * Minor push API change |
|
80 * Ability to pass an external bunyan logger when creating a Server or Agent |
|
81 * [Blog post](http://gabor.molnar.es/blog/2013/08/27/gsoc-week-number-10/) |
|
82 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.3.0.tar.gz) |
|
83 |
|
84 ### 0.2.1 (2013-08-20) ### |
|
85 |
|
86 * Fixing a flow control bug |
|
87 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.2.1.tar.gz) |
|
88 |
|
89 ### 0.2.0 (2013-08-19) ### |
|
90 |
|
91 * Exposing server push in the public API |
|
92 * Connection pooling when operating as client |
|
93 * Much better API compatibility with the standard node.js HTTPS module |
|
94 * Logging improvements |
|
95 * [Blog post](http://gabor.molnar.es/blog/2013/08/19/gsoc-week-number-9/) |
|
96 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.2.0.tar.gz) |
|
97 |
|
98 ### 0.1.1 (2013-08-12) ### |
|
99 |
|
100 * Lots of bugfixes |
|
101 * Proper flow control for outgoing frames |
|
102 * Basic flow control for incoming frames |
|
103 * [Blog post](http://gabor.molnar.es/blog/2013/08/12/gsoc-week-number-8/) |
|
104 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.1.1.tar.gz) |
|
105 |
|
106 ### 0.1.0 (2013-08-06) ### |
|
107 |
|
108 * First release with public API (similar to the standard node HTTPS module) |
|
109 * Support for NPN negotiation (no ALPN or Upgrade yet) |
|
110 * Stream number limitation is in place |
|
111 * Push streams works but not exposed yet in the public API |
|
112 * [Blog post](http://gabor.molnar.es/blog/2013/08/05/gsoc-week-number-6-and-number-7/) |
|
113 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.1.0.tar.gz) |
|
114 |
|
115 ### 0.0.6 (2013-07-19) ### |
|
116 |
|
117 * `Connection` and `Endpoint` classes are usable, but not yet ready |
|
118 * Addition of an exmaple server and client |
|
119 * Using [istanbul](https://github.com/gotwarlost/istanbul) for measuring code coverage |
|
120 * [Blog post](http://gabor.molnar.es/blog/2013/07/19/gsoc-week-number-5/) |
|
121 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.6.tar.gz) |
|
122 |
|
123 ### 0.0.5 (2013-07-14) ### |
|
124 |
|
125 * `Stream` class is done |
|
126 * Public API stubs are in place |
|
127 * [Blog post](http://gabor.molnar.es/blog/2013/07/14/gsoc-week-number-4/) |
|
128 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.5.tar.gz) |
|
129 |
|
130 ### 0.0.4 (2013-07-08) ### |
|
131 |
|
132 * Added logging |
|
133 * Started `Stream` class implementation |
|
134 * [Blog post](http://gabor.molnar.es/blog/2013/07/08/gsoc-week-number-3/) |
|
135 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.4.tar.gz) |
|
136 |
|
137 ### 0.0.3 (2013-07-03) ### |
|
138 |
|
139 * Header compression is ready |
|
140 * [Blog post](http://gabor.molnar.es/blog/2013/07/03/the-http-slash-2-header-compression-implementation-of-node-http2/) |
|
141 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.3.tar.gz) |
|
142 |
|
143 ### 0.0.2 (2013-07-01) ### |
|
144 |
|
145 * Frame serialization and deserialization ready and updated to match the newest spec |
|
146 * Header compression implementation started |
|
147 * [Blog post](http://gabor.molnar.es/blog/2013/07/01/gsoc-week-number-2/) |
|
148 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.2.tar.gz) |
|
149 |
|
150 ### 0.0.1 (2013-06-23) ### |
|
151 |
|
152 * Frame serialization and deserialization largely done |
|
153 * [Blog post](http://gabor.molnar.es/blog/2013/06/23/gsoc-week-number-1/) |
|
154 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.1.tar.gz) |