testing/xpcshell/node-http2/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 ### 2.3.0 (2014-03-10) ###
     6 * Upgrade to the latest draft: [draft-ietf-httpbis-http2-10]
     8 [draft-ietf-httpbis-http2-10]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-10
    10 ### 2.2.0 (2013-12-25) ###
    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)
    15 [draft-ietf-httpbis-http2-09]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-09
    17 ### 2.1.1 (2013-12-21) ###
    19 * Minor bugfix
    20 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-2.1.1.tar.gz)
    22 ### 2.1.0 (2013-11-10) ###
    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)
    27 [draft-07]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-07
    29 ### 2.0.0 (2013-11-09) ###
    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)
    38 ### 1.0.1 (2013-10-14) ###
    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)
    44 ### 1.0.0 (2013-09-23) ###
    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)
    51 ### 0.4.1 (2013-09-15) ###
    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)
    58 ### 0.4.0 (2013-09-09) ###
    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)
    67 [draft-06]: http://tools.ietf.org/html/draft-ietf-httpbis-http2-06
    69 ### 0.3.1 (2013-09-03) ###
    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)
    75 ### 0.3.0 (2013-08-27) ###
    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)
    84 ### 0.2.1 (2013-08-20) ###
    86 * Fixing a flow control bug
    87 * [Tarball](https://github.com/molnarg/node-http2/archive/node-http2-0.2.1.tar.gz)
    89 ### 0.2.0 (2013-08-19) ###
    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)
    98 ### 0.1.1 (2013-08-12) ###
   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)
   106 ### 0.1.0 (2013-08-06) ###
   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)
   115 ### 0.0.6 (2013-07-19) ###
   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)
   123 ### 0.0.5 (2013-07-14) ###
   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)
   130 ### 0.0.4 (2013-07-08) ###
   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)
   137 ### 0.0.3 (2013-07-03) ###
   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)
   143 ### 0.0.2 (2013-07-01) ###
   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)
   150 ### 0.0.1 (2013-06-23) ###
   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)

mercurial