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.96.1
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.97.0
Choose a head ref
  • 8 commits
  • 186 files changed
  • 3 contributors

Commits on Jan 25, 2019

  1. fix: add test for dag get with localResolve option (#433)

    vmx authored and Alan Shaw committed Jan 25, 2019
    Configuration menu
    Copy the full SHA
    44d4803 View commit details
    Browse the repository at this point in the history
  2. fix: add new SSL certificate (#432)

    When running the tests I got errors like this:
    
        Error: error:140AB18E:SSL routines:SSL_CTX_use_certificate:ca md too weak
    
    In order to fix this I created a new certificate. I thought 100 years of
    validity might be enough. The command to create it was (based on
    https://letsencrypt.org/docs/certificates-for-localhost/):
    
        openssl req -x509 -out cert.pem -keyout privkey.pem \
          -newkey rsa:2048 -nodes -sha256 \
          -subj '/CN=localhost' -extensions EXT -config <( \
           printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth") \
          -days 36524
    
    To verify, run from within *js-ipfs*:
    
        npx mocha test/core/interface.spec.js --grep 'should add from a HTTPS URL'
    vmx authored and Alan Shaw committed Jan 25, 2019
    Configuration menu
    Copy the full SHA
    fe539e6 View commit details
    Browse the repository at this point in the history
  3. docs: add instruction to run tests against a go-ipfs daemon (#431)

    vmx authored and Alan Shaw committed Jan 25, 2019
    Configuration menu
    Copy the full SHA
    45da688 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2019

  1. refactor: move to root (#435)

    In response to #423
    Alan Shaw authored Feb 19, 2019
    Configuration menu
    Copy the full SHA
    e161175 View commit details
    Browse the repository at this point in the history
  2. chore: switch to travis (#441)

    License: MIT
    Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
    Alan Shaw authored Feb 19, 2019
    Configuration menu
    Copy the full SHA
    b674158 View commit details
    Browse the repository at this point in the history
  3. test: fix resolve test (#385)

    * test: fix resolve test
    
    1. This is an IPLD path.
    2. Resolve really should be resolving up to the last path, not just "failing".
    
    * fix: resolve test and add resolve across multiple test
    
    License: MIT
    Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
    Stebalien authored and Alan Shaw committed Feb 19, 2019
    Configuration menu
    Copy the full SHA
    92fb51b View commit details
    Browse the repository at this point in the history
  4. chore: update contributors

    Alan Shaw committed Feb 19, 2019
    Configuration menu
    Copy the full SHA
    ceb9218 View commit details
    Browse the repository at this point in the history
  5. chore: release version v0.97.0

    Alan Shaw committed Feb 19, 2019
    Configuration menu
    Copy the full SHA
    d39458e View commit details
    Browse the repository at this point in the history
Loading