Highlights ✨
This release brings a built-in IPFS retrieval client powered by Lassie. You can fetch any CID using the fetch
API and receive a CAR stream to verify that the content matches the CID.
const response = await fetch(
"ipfs://bafybeib36krhffuh3cupjml4re2wfxldredkir5wti3dttulyemre7xkni"
);
assert(response.ok);
const data = await response.arrayBuffer();
// data contains binary data in the CAR format
What's Changed
- deps: Bump regex from 1.8.2 to 1.8.3 by @dependabot in #231
- deps: Bump tokio from 1.28.1 to 1.28.2 by @dependabot in #232
- deps: Bump chrono from 0.4.24 to 0.4.25 by @dependabot in #233
- deps: Bump chrono from 0.4.25 to 0.4.26 by @dependabot in #237
- deps: Bump once_cell from 1.17.1 to 1.18.0 by @dependabot in #238
- deps: Bump clap from 4.3.0 to 4.3.2 by @dependabot in #241
- deps: Bump regex from 1.8.3 to 1.8.4 by @dependabot in #240
- deps: Bump tempfile from 3.5.0 to 3.6.0 by @dependabot in #242
- deps: Bump serde from 1.0.163 to 1.0.164 by @dependabot in #244
- deps: Bump clap from 4.3.2 to 4.3.3 by @dependabot in #247
- feat: IPFS retrieval client by @bajtos in #243
- deps: Bump lassie from 0.3.0 to 0.3.1 by @dependabot in #249
- feat: upgrade Deno to 2023.06.08 by @bajtos in #250
- fix: include Lassie in Zinnia dist by @bajtos in #248
Full Changelog: v0.10.1...v0.11.0