Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Latest commit

 

History

History
23 lines (13 loc) · 1.11 KB

v0.64-v0.65.md

File metadata and controls

23 lines (13 loc) · 1.11 KB

A migration guide for refactoring your application code from [email protected] to [email protected]

Table of Contents

libp2p

The upgrade to [email protected] incorporates an update to [email protected] but no API changes.

If your application uses only the default libp2p config there is nothing to do.

If you supply a custom libp2p instance to the ipfs factory function you should consult the [email protected] upgrade guide for any changes you need to make.

multiformats

[email protected] now uses [email protected], this means instances of the CID class now come from that module and not [email protected] so any instanceof checks your codebase has may break if instances are compare to the class loaded from a different module version.

If your project also has a dependency on the multiformats module, it should be updated to 10.x.x in line with js-ipfs.