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/js-ipfs-http-client
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v30.1.2
Choose a base ref
...
head repository: ipfs-inactive/js-ipfs-http-client
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v30.1.3
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Apr 11, 2019

  1. fix: fix missing buffer bundling with browserify (#966)

    fixes #964
    hugomrdias authored and Alan Shaw committed Apr 11, 2019
    Copy the full SHA
    944a64b View commit details
  2. chore: update contributors

    Alan Shaw committed Apr 11, 2019

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    55408eb View commit details
  3. chore: release version v30.1.3

    Alan Shaw committed Apr 11, 2019

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    ab77171 View commit details
Showing with 13 additions and 1 deletion.
  1. +10 −0 CHANGELOG.md
  2. +2 −1 package.json
  3. +1 −0 src/index.js
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="30.1.3"></a>
## [30.1.3](https://github.com/ipfs/js-ipfs-http-client/compare/v30.1.2...v30.1.3) (2019-04-11)


### Bug Fixes

* fix missing buffer bundling with browserify ([#966](https://github.com/ipfs/js-ipfs-http-client/issues/966)) ([944a64b](https://github.com/ipfs/js-ipfs-http-client/commit/944a64b)), closes [#964](https://github.com/ipfs/js-ipfs-http-client/issues/964)



<a name="30.1.2"></a>
## [30.1.2](https://github.com/ipfs/js-ipfs-http-client/compare/v30.1.1...v30.1.2) (2019-04-09)

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-http-client",
"version": "30.1.2",
"version": "30.1.3",
"description": "A client library for the IPFS HTTP API",
"leadMaintainer": "Alan Shaw <alan@tableflip.io>",
"main": "src/index.js",
@@ -26,6 +26,7 @@
"bignumber.js": "^8.0.2",
"bl": "^3.0.0",
"bs58": "^4.0.1",
"buffer": "^5.2.1",
"cids": "~0.5.5",
"concat-stream": "hugomrdias/concat-stream#feat/smaller",
"debug": "^4.1.0",
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@
/* global self */

const isIPFS = require('is-ipfs')
const { Buffer } = require('buffer')
const CID = require('cids')
const multiaddr = require('multiaddr')
const multibase = require('multibase')