Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: node-lib/node-http2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: molnarg/node-http2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 19 commits
  • 9 files changed
  • 10 contributors

Commits on Apr 28, 2016

  1. Typo: finshed

    sebdeckers committed Apr 28, 2016
    Configuration menu
    Copy the full SHA
    a6f437a View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2016

  1. Update connection.js

    simllll authored Oct 20, 2016
    Configuration menu
    Copy the full SHA
    9e81bd5 View commit details
    Browse the repository at this point in the history
  2. Update connection.js

    simllll authored Oct 20, 2016
    Configuration menu
    Copy the full SHA
    5421660 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2017

  1. Fix GOAWAY deserialization when debug data is present

    Additional debug data is allowed to be included in the GOAWAY frame:
    https://http2.github.io/http2-spec/#GOAWAY. We now put that data into
    frame.debug_data instead of returning a FRAME_SIZE_ERROR. Fixes molnarg#218
    and molnarg#219.
    thughes committed Mar 7, 2017
    Configuration menu
    Copy the full SHA
    a62839e View commit details
    Browse the repository at this point in the history
  2. Remove invalid assert

    Fixes molnarg#228
    
    In the case where this._push(frame) returns null (i.e., the frame is too
    large for the window and split or the window size is <=0), moreNeeded
    will be set to null. Then this._queue.push(frame) is called, but
    moreNeeded is still null. Thus, any time the window is <=0 or the frame
    is split we'll hit the assert:
    
      var moreNeeded = null;
      if (this._queue.length === 0) {
        moreNeeded = this._push(frame);
      }
    
      if (moreNeeded === null) {
        this._queue.push(frame);
      }
    
      return moreNeeded;
    
    Credit goes to @jrabek for original version of this patch
    thughes committed Mar 7, 2017
    Configuration menu
    Copy the full SHA
    47650b9 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2017

  1. Support for ORIGIN FRAME

    http://httpwg.org/http-extensions/origin-frame.html
    
    ORIGIN FRAME uses codepoint 0xB, which BLOCKED was squatting
    on. BLOCKED is removed by this patch.
    mcmanus committed Apr 3, 2017
    Configuration menu
    Copy the full SHA
    e12eb8e View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2017

  1. Configuration menu
    Copy the full SHA
    9759f5c View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2017

  1. Configuration menu
    Copy the full SHA
    2869c84 View commit details
    Browse the repository at this point in the history
  2. Update README

    nwgh committed Sep 21, 2017
    Configuration menu
    Copy the full SHA
    4f174b2 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2018

  1. Merge pull request molnarg#241 from mcmanus/originFrame

    Support for ORIGIN FRAME
    nwgh authored Feb 16, 2018
    Configuration menu
    Copy the full SHA
    f3189f3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c0fde18 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2019

  1. Configuration menu
    Copy the full SHA
    7d00ff8 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2025

  1. Use static module resolution

    guest271314 authored Feb 24, 2025
    Configuration menu
    Copy the full SHA
    239da7e View commit details
    Browse the repository at this point in the history
  2. Merge pull request molnarg#258 from guest271314/guest271314-patch-1

    Use static module resolution
    molnarg authored Feb 24, 2025
    Configuration menu
    Copy the full SHA
    eb73219 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2025

  1. Merge pull request molnarg#235 from airtimemedia/go-away-fix

    GOAWAY deserialization fix
    molnarg authored Mar 30, 2025
    Configuration menu
    Copy the full SHA
    e1cfa27 View commit details
    Browse the repository at this point in the history
  2. Merge pull request molnarg#199 from sebdeckers/patch-1

    Typo: finshed
    molnarg authored Mar 30, 2025
    Configuration menu
    Copy the full SHA
    aab8b12 View commit details
    Browse the repository at this point in the history
  3. Merge pull request molnarg#222 from simllll/master

    memory leak fix (by argon) and another 'upstream is not defined' check
    molnarg authored Mar 30, 2025
    Configuration menu
    Copy the full SHA
    7751faf View commit details
    Browse the repository at this point in the history
  4. Merge pull request molnarg#255 from winniecluk/checkFlagsForOwnProperty

    ignore inherited properties when iterating through flags
    molnarg authored Mar 30, 2025
    Configuration menu
    Copy the full SHA
    2966f25 View commit details
    Browse the repository at this point in the history
  5. Merge pull request molnarg#236 from airtimemedia/fix-invalid-assert

    Remove invalid assert
    molnarg authored Mar 30, 2025
    Configuration menu
    Copy the full SHA
    ddb2159 View commit details
    Browse the repository at this point in the history
Loading