-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Comparing changes
Open a pull request
base repository: ipfs/js-ipfs
base: [email protected]
head repository: ipfs/js-ipfs
compare: [email protected]
- 20 commits
- 542 files changed
- 16 contributors
Commits on Jun 18, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 57c3413 - Browse repository at this point
Copy the full SHA 57c3413View commit details
Commits on Jun 25, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 54478b0 - Browse repository at this point
Copy the full SHA 54478b0View commit details
Commits on Jul 1, 2021
-
chore: fix pkg.homepage for ipfs-core-types (#3733)
I linked from the npm package listing and was suprised to end up at the interface-ipfs-core package.
Configuration menu - View commit details
-
Copy full SHA for cd548e6 - Browse repository at this point
Copy the full SHA cd548e6View commit details
Commits on Jul 5, 2021
-
docs: examples/browser-create-react-app (#3694)
Co-authored-by: kvutien <[email protected]> Co-authored-by: Marcin Rataj <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dc041aa - Browse repository at this point
Copy the full SHA dc041aaView commit details
Commits on Jul 19, 2021
-
feat: upgrade to the new multiformats (#3556)
- Replaces the old [interface-ipld-format](https://github.com/ipld/interface-ipld-format) stack with the new [multiformats](https://github.com/multiformats/js-multiformats) stack. - The Block API takes/returns `Uint8Array`s instead of [ipld-block](https://github.com/ipld/js-ipld-block) objects BREAKING CHANGE: ipld-formats no longer supported, use multiformat BlockCodecs instead Co-authored-by: Rod Vagg <[email protected]> Co-authored-by: achingbrain <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d13d15f - Browse repository at this point
Copy the full SHA d13d15fView commit details -
fix: make "ipfs resolve" cli command recursive by default (#3707)
This changes the default behaviour of the `jsipfs resolve` cli command to be recursive by default. Closes #3692. ```shell # in packages/ipfs node src/cli.js resolve /ipns/ipfs.io /ipfs/bafybeiagozluzfopjadeigrjlsmktseozde2xc5prvighob7452imnk76a ``` BREAKING CHANGE: resolve is now recursive by default Co-authored-by: Alex Potsides <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 399ce36 - Browse repository at this point
Copy the full SHA 399ce36View commit details -
docs: update browser ipns publish example (#3596)
Applying all the magic from #3584, updating the dependencies, adding tips (address example) for working with a local node Co-authored-by: Vasco Santos <[email protected]> Co-authored-by: Alen Šiljak <[email protected]> Co-authored-by: achingbrain <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 91a84e4 - Browse repository at this point
Copy the full SHA 91a84e4View commit details
Commits on Jul 27, 2021
-
feat: implement dag import/export (#3728)
Adds `ipfs.dag.import` and `ipfs.dag.export` commands to import/export CAR files, e.g. single-file archives that contain blocks and root CIDs. Supersedes #2953 Fixes #2745 Co-authored-by: achingbrain <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 700765b - Browse repository at this point
Copy the full SHA 700765bView commit details -
fix(ipfs-core-types): wrong extension (#3753)
`.ts` should be `.d.ts`
Configuration menu - View commit details
-
Copy full SHA for 4bad1c6 - Browse repository at this point
Copy the full SHA 4bad1c6View commit details -
fix: round bandwidth stats (#3735)
Dividing the bandwidth stats sometimes results in a fraction which we cannot convert to a `BigInteger` since it's not an integer... Fixes #3726
Configuration menu - View commit details
-
Copy full SHA for 58fb802 - Browse repository at this point
Copy the full SHA 58fb802View commit details -
fix: support @web-std/file in normalize input (#3750)
* fix: support @web-std/file in normalize input * chore: validate blob/file have a stream property * chore: fallback to web-std blob * fix: tests * chore: use latest file version
Configuration menu - View commit details
-
Copy full SHA for 6fd7776 - Browse repository at this point
Copy the full SHA 6fd7776View commit details -
fix: fix flaky pubsub test (#3761)
In the http client, when we subscribe to a topic we open a HTTP connection which we keep open for the duration of the subscription. When we unsubscribe we abort the connection but it can remain open for a little while after the abort, even if we try to wait on the `fetch` command ending before continuting, which leads to the topic still being present in the subs list, so retry asserting that the subs list is empty in the tests within a certain time window. Fixes this sort of error: ``` ipfs: 1) interface-ipfs-core over ipfs-http-client tests against go-ipfs ipfs: .pubsub.unsubscribe ipfs: should subscribe 5 handlers and unsubscribe once with no reference to the handlers: ipfs: AssertionError: expected [ Array(1) ] to deeply equal [] ipfs: + expected - actual ipfs: -[ ipfs: - "pubsub-tests-SVOFzpM5DtbcI7jBETrmm" ipfs: -] ipfs: +[] ```
Configuration menu - View commit details
-
Copy full SHA for 8bcf56f - Browse repository at this point
Copy the full SHA 8bcf56fView commit details -
docs: improve README of browser-create-react-app (#3737)
Co-authored-by: kvutien <[email protected]> Co-authored-by: Alex Potsides <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9852d14 - Browse repository at this point
Copy the full SHA 9852d14View commit details -
Upgrade to GitHub-native Dependabot (#3658)
* Upgrade to GitHub-native Dependabot * chore: remove ignores Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Alex Potsides <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3d91be2 - Browse repository at this point
Copy the full SHA 3d91be2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 62311f8 - Browse repository at this point
Copy the full SHA 62311f8View commit details -
fix: flaky timeout test (#3767)
If we run a node in offline mode only, it'll never go to the network to fetch a CID it doesn't have, so we can't really test timeouts properly.
Configuration menu - View commit details
-
Copy full SHA for 55afc2f - Browse repository at this point
Copy the full SHA 55afc2fView commit details -
fix: export ipfs http client type and use option extension for client (…
Configuration menu - View commit details
-
Copy full SHA for 31bddd4 - Browse repository at this point
Copy the full SHA 31bddd4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 166d341 - Browse repository at this point
Copy the full SHA 166d341View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1bed859 - Browse repository at this point
Copy the full SHA 1bed859View commit details -
- [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected]
Configuration menu - View commit details
-
Copy full SHA for ef41f92 - Browse repository at this point
Copy the full SHA ef41f92View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff [email protected]@0.148.0