1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/testing/xpcshell/node-http2/node_modules/http2-protocol/HISTORY.md Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,159 @@ 1.4 +Version history 1.5 +=============== 1.6 + 1.7 +### 0.10.0 (2014-03-10) ### 1.8 + 1.9 +* Upgrade to the latest draft: [draft-ietf-httpbis-http2-10][draft-10] 1.10 + 1.11 +[draft-10]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-10 1.12 + 1.13 +### 0.9.1 (2014-01-11) ### 1.14 + 1.15 +* Updated the examples (#5) 1.16 +* Fixed a compression error (#6) 1.17 +* Removed docs from the tree (but they remain [hosted on the github-page]) 1.18 +* [Tarball](https://github.com/molnarg/node-http2-protocol/archive/node-http2-protocol-0.9.1.tar.gz) 1.19 + 1.20 +[hosted on the github-page]: http://molnarg.github.io/node-http2-protocol/doc/ 1.21 + 1.22 +### 0.9.0 (2013-12-25) ### 1.23 + 1.24 +* Upgrade to the latest draft: [draft-ietf-httpbis-http2-09][draft-09] 1.25 +* [Tarball](https://github.com/molnarg/node-http2-protocol/archive/node-http2-protocol-0.9.0.tar.gz) 1.26 + 1.27 +[draft-09]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-09 1.28 + 1.29 +### 0.7.0 (2013-11-10) ### 1.30 + 1.31 +* Upgrade to the latest draft: [draft-ietf-httpbis-http2-07][draft-07] 1.32 +* [Tarball](https://github.com/molnarg/node-http2-protocol/archive/node-http2-protocol-0.7.0.tar.gz) 1.33 + 1.34 +[draft-07]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-07 1.35 + 1.36 +### 0.6.0 (2013-11-09) ### 1.37 + 1.38 +* Splitting out node-http2-protocol from node-http2 1.39 +* The only exported class is `Endpoint` 1.40 +* Versioning will be based on the implemented protocol version with a '0.' prefix 1.41 +* [Tarball](https://github.com/molnarg/node-http2-protocol/archive/node-http2-protocol-0.6.0.tar.gz) 1.42 + 1.43 +Version history as part of the [node-http](https://github.com/molnarg/node-http2) module 1.44 +---------------------------------------------------------------------------------------- 1.45 + 1.46 +### 1.0.1 (2013-10-14) ### 1.47 + 1.48 +* Support for ALPN if node supports it (currently needs a custom build) 1.49 +* Fix for a few small issues 1.50 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-1.0.1.tar.gz) 1.51 + 1.52 +### 1.0.0 (2013-09-23) ### 1.53 + 1.54 +* Exporting Endpoint class 1.55 +* Support for 'filters' in Endpoint 1.56 +* The last time-based release 1.57 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-1.0.0.tar.gz) 1.58 + 1.59 +### 0.4.1 (2013-09-15) ### 1.60 + 1.61 +* Major performance improvements 1.62 +* Minor improvements to error handling 1.63 +* [Blog post](http://gabor.molnar.es/blog/2013/09/15/gsoc-week-number-13/) 1.64 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.4.1.tar.gz) 1.65 + 1.66 +### 0.4.0 (2013-09-09) ### 1.67 + 1.68 +* Upgrade to the latest draft: [draft-ietf-httpbis-http2-06][draft-06] 1.69 +* Support for HTTP trailers 1.70 +* Support for TLS SNI (Server Name Indication) 1.71 +* Improved stream scheduling algorithm 1.72 +* [Blog post](http://gabor.molnar.es/blog/2013/09/09/gsoc-week-number-12/) 1.73 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.4.0.tar.gz) 1.74 + 1.75 +[draft-06]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-06 1.76 + 1.77 +### 0.3.1 (2013-09-03) ### 1.78 + 1.79 +* Lot of testing, bugfixes 1.80 +* [Blog post](http://gabor.molnar.es/blog/2013/09/03/gsoc-week-number-11/) 1.81 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.3.1.tar.gz) 1.82 + 1.83 +### 0.3.0 (2013-08-27) ### 1.84 + 1.85 +* Support for prioritization 1.86 +* Small API compatibility improvements (compatibility with the standard node.js HTTP API) 1.87 +* Minor push API change 1.88 +* Ability to pass an external bunyan logger when creating a Server or Agent 1.89 +* [Blog post](http://gabor.molnar.es/blog/2013/08/27/gsoc-week-number-10/) 1.90 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.3.0.tar.gz) 1.91 + 1.92 +### 0.2.1 (2013-08-20) ### 1.93 + 1.94 +* Fixing a flow control bug 1.95 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.2.1.tar.gz) 1.96 + 1.97 +### 0.2.0 (2013-08-19) ### 1.98 + 1.99 +* Exposing server push in the public API 1.100 +* Connection pooling when operating as client 1.101 +* Much better API compatibility with the standard node.js HTTPS module 1.102 +* Logging improvements 1.103 +* [Blog post](http://gabor.molnar.es/blog/2013/08/19/gsoc-week-number-9/) 1.104 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.2.0.tar.gz) 1.105 + 1.106 +### 0.1.1 (2013-08-12) ### 1.107 + 1.108 +* Lots of bugfixes 1.109 +* Proper flow control for outgoing frames 1.110 +* Basic flow control for incoming frames 1.111 +* [Blog post](http://gabor.molnar.es/blog/2013/08/12/gsoc-week-number-8/) 1.112 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.1.1.tar.gz) 1.113 + 1.114 +### 0.1.0 (2013-08-06) ### 1.115 + 1.116 +* First release with public API (similar to the standard node HTTPS module) 1.117 +* Support for NPN negotiation (no ALPN or Upgrade yet) 1.118 +* Stream number limitation is in place 1.119 +* Push streams works but not exposed yet in the public API 1.120 +* [Blog post](http://gabor.molnar.es/blog/2013/08/05/gsoc-week-number-6-and-number-7/) 1.121 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.1.0.tar.gz) 1.122 + 1.123 +### 0.0.6 (2013-07-19) ### 1.124 + 1.125 +* `Connection` and `Endpoint` classes are usable, but not yet ready 1.126 +* Addition of an exmaple server and client 1.127 +* Using [istanbul](https://github.com/gotwarlost/istanbul) for measuring code coverage 1.128 +* [Blog post](http://gabor.molnar.es/blog/2013/07/19/gsoc-week-number-5/) 1.129 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.6.tar.gz) 1.130 + 1.131 +### 0.0.5 (2013-07-14) ### 1.132 + 1.133 +* `Stream` class is done 1.134 +* Public API stubs are in place 1.135 +* [Blog post](http://gabor.molnar.es/blog/2013/07/14/gsoc-week-number-4/) 1.136 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.5.tar.gz) 1.137 + 1.138 +### 0.0.4 (2013-07-08) ### 1.139 + 1.140 +* Added logging 1.141 +* Started `Stream` class implementation 1.142 +* [Blog post](http://gabor.molnar.es/blog/2013/07/08/gsoc-week-number-3/) 1.143 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.4.tar.gz) 1.144 + 1.145 +### 0.0.3 (2013-07-03) ### 1.146 + 1.147 +* Header compression is ready 1.148 +* [Blog post](http://gabor.molnar.es/blog/2013/07/03/the-http-slash-2-header-compression-implementation-of-node-http2/) 1.149 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.3.tar.gz) 1.150 + 1.151 +### 0.0.2 (2013-07-01) ### 1.152 + 1.153 +* Frame serialization and deserialization ready and updated to match the newest spec 1.154 +* Header compression implementation started 1.155 +* [Blog post](http://gabor.molnar.es/blog/2013/07/01/gsoc-week-number-2/) 1.156 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.2.tar.gz) 1.157 + 1.158 +### 0.0.1 (2013-06-23) ### 1.159 + 1.160 +* Frame serialization and deserialization largely done 1.161 +* [Blog post](http://gabor.molnar.es/blog/2013/06/23/gsoc-week-number-1/) 1.162 +* [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.1.tar.gz)