This repository has been archived by the owner on Jan 8, 2024. It is now read-only.
Releases: ipfs/helia-ipns
Releases · ipfs/helia-ipns
@helia/ipns-v4.0.0
@helia/ipns-v3.0.1
@helia/ipns-v3.0.0
@helia/ipns-v3.0.0 (2023-12-05)
⚠ BREAKING CHANGES
- alters the options object passed to the
ipns
factory function
Before
import { createHelia } from 'helia'
import { ipns } from '@helia/ipns'
import { dht, pubsub } from '@helia/ipns/routing'
import { unixfs } from '@helia/unixfs'
const helia = await createHelia()
const name = ipns(helia, [
dht(helia),
pubsub(helia)
])
After
import { createHelia } from 'helia'
import { ipns } from '@helia/ipns'
import { dnsOverHttps } from '@helia/ipns/dns-resolvers'
import { unixfs } from '@helia/unixfs'
const helia = await createHelia()
const name = ipns(helia, {
routers: [
dht(helia),
pubsub(helia)
],
resolvers: [
dnsOverHttps('https://private-dns-server.me/dns-query'),
]
})
Features
@helia/ipns-v2.0.3
@helia/ipns-v2.0.2
@helia/ipns-v2.0.1
@helia/ipns-v2.0.1 (2023-10-07)
Dependencies
@helia/ipns-v2.0.0
@helia/ipns-v2.0.0 (2023-09-22)
⚠ BREAKING CHANGES
- the
IPNSRecord
type returned from thepublish
method has changed