Skip to content
This repository was archived by the owner on Mar 10, 2020. 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-inactive/interface-js-ipfs-core
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.35.0
Choose a base ref
...
head repository: ipfs-inactive/interface-js-ipfs-core
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.36.0
Choose a head ref
  • 4 commits
  • 7 files changed
  • 1 contributor

Commits on Nov 16, 2017

  1. chore

    daviddias committed Nov 16, 2017
    Copy the full SHA
    ecbdf55 View commit details

Commits on Nov 17, 2017

  1. New Streaming and Buffered Interfaces (#162)

    * add function signatures
    
    * fix typo
    
    * complete update the spec
    
    * chore: update deps
    
    * structure tests, add placeholders
    
    * apply cr
    
    * update .add tests
    
    * files.add done
    
    * .addReadableStream
    
    * .addPullStream
    
    * files.cat
    
    * .catReadableStream
    
    * catPulLStream
    
    * .get
    
    * getReadableStream
    
    * chore: fix travis
    
    * chore: add ipfs.ls spec
    
    * chore: update CI
    
    * chore: fix CI and linting
    
    * fix directory test
    
    * add remaining tests for .ls .lsReadableStream and .lsPullStream
    
    * apply spec CR
    
    * enable all tests to fix ipfs-inactive/js-ipfs-http-client#339
    
    * remove dup ls test
    
    * .add tested in js-ipfs
    
    * get tests also passing on js-ipfs
    
    * ls is implemented in js-ipfs too
    daviddias authored Nov 17, 2017
    Copy the full SHA
    8f34b0e View commit details
  2. chore: update contributors

    daviddias committed Nov 17, 2017

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2a4ec9a View commit details
  3. Copy the full SHA
    23dc504 View commit details
Showing with 1,143 additions and 582 deletions.
  1. +0 −5 .travis.yml
  2. +5 −0 CHANGELOG.md
  3. +413 −56 SPEC/FILES.md
  4. +0 −9 circle.yml
  5. +7 −6 package.json
  6. +710 −498 src/files.js
  7. +8 −8 src/pubsub.js
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -9,12 +9,7 @@ matrix:
script:
- npm run lint

before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start

addons:
firefox: 'latest'
apt:
sources:
- ubuntu-toolchain-r-test
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<a name="0.36.0"></a>
# [0.36.0](https://github.com/ipfs/interface-ipfs-core/compare/v0.35.0...v0.36.0) (2017-11-17)



<a name="0.35.0"></a>
# [0.35.0](https://github.com/ipfs/interface-ipfs-core/compare/v0.34.3...v0.35.0) (2017-11-16)

Loading