Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.
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: ipfs/js-ipfs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: [email protected]
Choose a base ref
...
head repository: ipfs/js-ipfs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: [email protected]
Choose a head ref
  • 11 commits
  • 76 files changed
  • 3 contributors

Commits on Nov 9, 2020

  1. chore: update versions

    achingbrain committed Nov 9, 2020
    Copy the full SHA
    1311160 View commit details

Commits on Nov 12, 2020

  1. fix: ensure correct progress is reported (#3384)

    Fixes a bug where due to parallel file imports, the reported size of
    ingested bytes was getting mixed up.
    
    We now tally imported bytes against the reported file name instead of
    assuming a sequential import, taking care to not let the tally grow
    until memory is exhausted.
    achingbrain authored Nov 12, 2020
    Copy the full SHA
    633d870 View commit details
  2. fix: align behaviour between go and js for content without paths (#3385)

    Aligns behaviour between js and go when no path is present during an import
    - we now pass an empty string instead of `'unknown'`.
    achingbrain authored Nov 12, 2020
    Copy the full SHA
    334873d View commit details
  3. chore: replace SoL arnet from node config (#3387)

    Replaces `SoL-arnet` bootstrap nodes from Node.js config to the new `dnsaddr` per #3370 (comment) and libp2p/js-libp2p-bootstrap#98
    
    These new addresses resolve into DNS TXT records with tcp and wss based addresses for each peer (with `ipv4` and `ipv6`.
    vasco-santos authored Nov 12, 2020
    Copy the full SHA
    583503b View commit details

Commits on Nov 13, 2020

  1. test: add tests for different types of connection config (#3388)

    We claim to support URLs, MultiAddrs, strings and individual URL components
    so add tests for them.
    
    Also, add code to actually support the above permutations..
    
    Co-authored-by: Vasco Santos <[email protected]>
    achingbrain and vasco-santos authored Nov 13, 2020
    Copy the full SHA
    b554002 View commit details
  2. Copy the full SHA
    cea7317 View commit details

Commits on Nov 16, 2020

  1. chore: removed unused and add missing deps (#3395)

    Removes all unused dependencies, adds missing ones.
    
    Also runs prod & unused dep checks in CI.
    achingbrain authored Nov 16, 2020
    Copy the full SHA
    bba650d View commit details
  2. fix: report ipfs.add progress over http (#3310)

    The browser fetch api doesn't allow reading of any data until the whole request has been sent which means progress events only fire after the upload is complete which rather defeats the purpose of reporting upload progress.
    
    Here we switch to XHR for uploads with progress that does allow reading response data before the request is complete.
    
    Co-authored-by: achingbrain <[email protected]>
    Gozala and achingbrain authored Nov 16, 2020
    Copy the full SHA
    39cad4b View commit details
  3. fix: correct raw leaves setting (#3401)

    If raw-leaves is unset, default to true if cid version is > 0.
    
    This is in line with go-IPFS and is what the importer used to do internally.
    achingbrain authored Nov 16, 2020
    Copy the full SHA
    c0703ef View commit details
  4. Copy the full SHA
    11c0923 View commit details
  5. Copy the full SHA
    fade646 View commit details
Loading