- Remove default SETTINGS_MAX_CONCURRENT_STREAMS value. By default, the number of concurrent outbound streams is not limited.
- Fix Connection SETTINGS_MAX_CONCURRENT_STREAMS settings on creation #24 (via #26)
- Fix http.js support on request for
retry-after
bad timer delay computation.
-
Update http.js to add support on request for
retry-after
header on503|429|302
status code.[About 503] The server returns an HTTP error 503 when more users than are allowed by the server's request queue limit have sent requests to a single server or when the actions of the client have triggered throttling.
Retry-After If a Retry-After header ([RFC2616]) is present in the response, the client SHOULD<6> retry the request after waiting the number of seconds indicated by the Retry-After header. Any such value represents an estimate of when the server is expected to be able to process the request.
- Bugfixes from pull requests
- Fails to load in IE11 due to timers.setImmediate call
- Fix Node 5+ support #4 bug
- update object-keys module for Object.keys shim
- Rename package from 'http2' to 'http2.js'.
- Fork from abandoned https://github.com/molnarg/node-http2 to https://github.com/kaazing/http2.js and change version to '4.0.0' to avoid confusion.
- Bugfixes from pull requests
- Clean up ended streams to free leaked memory (molnarg/node-http2#200)
- Memory leak fix (by argon) and another 'upstream is not defined' check (molnarg/node-http2#222)
- Allow frames to send after the arrival of the RST_STREAM. (molnarg/node-http2#210)
- GOAWAY deserialization fix (molnarg/node-http2#235)
- Update Mocha link (molnarg/node-http2#229)
- Remove invalid assert (molnarg/node-http2#236)
- Typo: finshed (molnarg/node-http2#199)
- JSHINT all source (dpwspoon/node-http2#4)
- Changed API to be fully pluggable for any transport or server (dpwspoon/node-http2#2)
- We were not appropriately sending HPACK context updates when receiving SETTINGS_HEADER_TABLE_SIZE. This release fixes that bug.
- Fix issues with large DATA frames (molnarg/node-http2#207)
- More PR bugfixes (https://github.com/molnarg/node-http2/issues?q=milestone%3Av3.3.4)
- Bugfixes from pull requests (https://github.com/molnarg/node-http2/search?q=milestone%3Av3.3.3&type=Issues&utf8=%E2%9C%93)
- Fix an incompatibility with Firefox (issue 167)
- Fix some DoS bugs (issues 145, 146, 147, and 148)
- Bugfix updates from pull requests
- Update ALPN token to final RFC version (h2).
- Update altsvc implementation to draft 06: [draft-ietf-httpbis-alt-svc-06]
- Update the example server to have a safe push example.
- Bugfix release.
- Fixes an issue sending a push promise that is large enough to fill the frame (#93).
- Upgrade to the latest draft: draft-ietf-httpbis-http2-16
- This involves some state transition changes that are technically incompatible with draft-14. If you need to be assured to interop on -14, continue using 3.0.1
- Bugfix release.
- Fixed #81 and #87
- Fixed a bug in flow control (without GitHub issue)
- Re-join node-http2 and node-http2-protocol into one repository
- API Changes
- The default versions of createServer, request, and get now enforce TLS-only
- The raw versions of createServer, request, and get are now under http2.raw instead of http2
- What was previously in the http2-protocol repository/module is now available under http2.protocol from this repo/module
- http2-protocol.ImplementedVersion is now http2.protocol.VERSION (the ALPN token)
- Require protocol 0.14.1 (bugfix release)
- Upgrade to the latest draft: draft-ietf-httpbis-http2-14
- Upgrade to the latest draft: draft-ietf-httpbis-http2-13
- Exposing API to send ALTSVC frames
- Fix a bug that occurs when the ALPN negotiation is unsuccessful
- Support for node 0.11.x
- New cipher suite priority list with comformant ciphers on the top (only available in node >=0.11.x)
- Upgrade to the latest draft: draft-ietf-httpbis-http2-12
- Upgrade to the latest draft: draft-ietf-httpbis-http2-11
- Upgrade to the latest draft: draft-ietf-httpbis-http2-10
- Upgrade to the latest draft: draft-ietf-httpbis-http2-09
- Tarball
- Minor bugfix
- Tarball
- Upgrade to the latest draft: draft-ietf-httpbis-http2-07
- Tarball
- Splitting out everything that is not related to negotiating HTTP2 or the node-like HTTP API. These live in separate module from now on: http2-protocol.
- The only backwards incompatible change: the
Endpoint
class is not exported anymore. Use the http2-protocol module if you want to use this low level interface. - Tarball
- Support for ALPN if node supports it (currently needs a custom build)
- Fix for a few small issues
- Tarball
- Exporting Endpoint class
- Support for 'filters' in Endpoint
- The last time-based release
- Tarball
- Upgrade to the latest draft: draft-ietf-httpbis-http2-06
- Support for HTTP trailers
- Support for TLS SNI (Server Name Indication)
- Improved stream scheduling algorithm
- Blog post
- Tarball
- Support for prioritization
- Small API compatibility improvements (compatibility with the standard node.js HTTP API)
- Minor push API change
- Ability to pass an external bunyan logger when creating a Server or Agent
- Blog post
- Tarball
- Fixing a flow control bug
- Tarball
- Exposing server push in the public API
- Connection pooling when operating as client
- Much better API compatibility with the standard node.js HTTPS module
- Logging improvements
- Blog post
- Tarball
- Lots of bugfixes
- Proper flow control for outgoing frames
- Basic flow control for incoming frames
- Blog post
- Tarball
- First release with public API (similar to the standard node HTTPS module)
- Support for NPN negotiation (no ALPN or Upgrade yet)
- Stream number limitation is in place
- Push streams works but not exposed yet in the public API
- Blog post
- Tarball
Connection
andEndpoint
classes are usable, but not yet ready- Addition of an exmaple server and client
- Using istanbul for measuring code coverage
- Blog post
- Tarball