testing/xpcshell/node-http2/node_modules/http2-protocol/HISTORY.md

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 Version history
     2 ===============
     4 ### 0.10.0 (2014-03-10) ###
     6 * Upgrade to the latest draft: [draft-ietf-httpbis-http2-10][draft-10]
     8 [draft-10]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-10
    10 ### 0.9.1 (2014-01-11) ###
    12 * Updated the examples (#5)
    13 * Fixed a compression error (#6)
    14 * Removed docs from the tree (but they remain [hosted on the github-page])
    15 * [Tarball](https://github.com/molnarg/node-http2-protocol/archive/node-http2-protocol-0.9.1.tar.gz)
    17 [hosted on the github-page]: http://molnarg.github.io/node-http2-protocol/doc/
    19 ### 0.9.0 (2013-12-25) ###
    21 * Upgrade to the latest draft: [draft-ietf-httpbis-http2-09][draft-09]
    22 * [Tarball](https://github.com/molnarg/node-http2-protocol/archive/node-http2-protocol-0.9.0.tar.gz)
    24 [draft-09]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-09
    26 ### 0.7.0 (2013-11-10) ###
    28 * Upgrade to the latest draft: [draft-ietf-httpbis-http2-07][draft-07]
    29 * [Tarball](https://github.com/molnarg/node-http2-protocol/archive/node-http2-protocol-0.7.0.tar.gz)
    31 [draft-07]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-07
    33 ### 0.6.0 (2013-11-09) ###
    35 * Splitting out node-http2-protocol from node-http2
    36 * The only exported class is `Endpoint`
    37 * Versioning will be based on the implemented protocol version with a '0.' prefix
    38 * [Tarball](https://github.com/molnarg/node-http2-protocol/archive/node-http2-protocol-0.6.0.tar.gz)
    40 Version history as part of the [node-http](https://github.com/molnarg/node-http2) module
    41 ----------------------------------------------------------------------------------------
    43 ### 1.0.1 (2013-10-14) ###
    45 * Support for ALPN if node supports it (currently needs a custom build)
    46 * Fix for a few small issues
    47 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-1.0.1.tar.gz)
    49 ### 1.0.0 (2013-09-23) ###
    51 * Exporting Endpoint class
    52 * Support for 'filters' in Endpoint
    53 * The last time-based release
    54 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-1.0.0.tar.gz)
    56 ### 0.4.1 (2013-09-15) ###
    58 * Major performance improvements
    59 * Minor improvements to error handling
    60 * [Blog post](http://gabor.molnar.es/blog/2013/09/15/gsoc-week-number-13/)
    61 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.4.1.tar.gz)
    63 ### 0.4.0 (2013-09-09) ###
    65 * Upgrade to the latest draft: [draft-ietf-httpbis-http2-06][draft-06]
    66 * Support for HTTP trailers
    67 * Support for TLS SNI (Server Name Indication)
    68 * Improved stream scheduling algorithm
    69 * [Blog post](http://gabor.molnar.es/blog/2013/09/09/gsoc-week-number-12/)
    70 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.4.0.tar.gz)
    72 [draft-06]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-06
    74 ### 0.3.1 (2013-09-03) ###
    76 * Lot of testing, bugfixes
    77 * [Blog post](http://gabor.molnar.es/blog/2013/09/03/gsoc-week-number-11/)
    78 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.3.1.tar.gz)
    80 ### 0.3.0 (2013-08-27) ###
    82 * Support for prioritization
    83 * Small API compatibility improvements (compatibility with the standard node.js HTTP API)
    84 * Minor push API change
    85 * Ability to pass an external bunyan logger when creating a Server or Agent
    86 * [Blog post](http://gabor.molnar.es/blog/2013/08/27/gsoc-week-number-10/)
    87 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.3.0.tar.gz)
    89 ### 0.2.1 (2013-08-20) ###
    91 * Fixing a flow control bug
    92 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.2.1.tar.gz)
    94 ### 0.2.0 (2013-08-19) ###
    96 * Exposing server push in the public API
    97 * Connection pooling when operating as client
    98 * Much better API compatibility with the standard node.js HTTPS module
    99 * Logging improvements
   100 * [Blog post](http://gabor.molnar.es/blog/2013/08/19/gsoc-week-number-9/)
   101 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.2.0.tar.gz)
   103 ### 0.1.1 (2013-08-12) ###
   105 * Lots of bugfixes
   106 * Proper flow control for outgoing frames
   107 * Basic flow control for incoming frames
   108 * [Blog post](http://gabor.molnar.es/blog/2013/08/12/gsoc-week-number-8/)
   109 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.1.1.tar.gz)
   111 ### 0.1.0 (2013-08-06) ###
   113 * First release with public API (similar to the standard node HTTPS module)
   114 * Support for NPN negotiation (no ALPN or Upgrade yet)
   115 * Stream number limitation is in place
   116 * Push streams works but not exposed yet in the public API
   117 * [Blog post](http://gabor.molnar.es/blog/2013/08/05/gsoc-week-number-6-and-number-7/)
   118 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.1.0.tar.gz)
   120 ### 0.0.6 (2013-07-19) ###
   122 * `Connection` and `Endpoint` classes are usable, but not yet ready
   123 * Addition of an exmaple server and client
   124 * Using [istanbul](https://github.com/gotwarlost/istanbul) for measuring code coverage
   125 * [Blog post](http://gabor.molnar.es/blog/2013/07/19/gsoc-week-number-5/)
   126 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.6.tar.gz)
   128 ### 0.0.5 (2013-07-14) ###
   130 * `Stream` class is done
   131 * Public API stubs are in place
   132 * [Blog post](http://gabor.molnar.es/blog/2013/07/14/gsoc-week-number-4/)
   133 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.5.tar.gz)
   135 ### 0.0.4 (2013-07-08) ###
   137 * Added logging
   138 * Started `Stream` class implementation
   139 * [Blog post](http://gabor.molnar.es/blog/2013/07/08/gsoc-week-number-3/)
   140 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.4.tar.gz)
   142 ### 0.0.3 (2013-07-03) ###
   144 * Header compression is ready
   145 * [Blog post](http://gabor.molnar.es/blog/2013/07/03/the-http-slash-2-header-compression-implementation-of-node-http2/)
   146 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.3.tar.gz)
   148 ### 0.0.2 (2013-07-01) ###
   150 * Frame serialization and deserialization ready and updated to match the newest spec
   151 * Header compression implementation started
   152 * [Blog post](http://gabor.molnar.es/blog/2013/07/01/gsoc-week-number-2/)
   153 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.2.tar.gz)
   155 ### 0.0.1 (2013-06-23) ###
   157 * Frame serialization and deserialization largely done
   158 * [Blog post](http://gabor.molnar.es/blog/2013/06/23/gsoc-week-number-1/)
   159 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.0.1.tar.gz)

mercurial