@helia/ipns-v4.0.0 (2024-01-08)
- uses multiformats v13 and helia v3, renames
dht
routing tolibp2p
6.0.1 (2024-02-28)
- remove is-ipfs from @helia/ipns dependencies (#421) (3851fe2)
- update project deps and docs (77e34fc)
- update libp2p patch versions (917a1bc)
- The following workspace dependencies were updated
- dependencies
- @helia/interface bumped from ^4.0.0 to ^4.0.1
- dependencies
6.0.0 (2024-01-31)
- to support paths in
@helia/ipns
, the return type ofipns.resolve
is now{ path: string, cid: CID }
instead of justCID
5.0.0 (2024-01-24)
- remove gossipsub from default libp2p services (#401)
helia.routing
is the default routing used, thelibp2p
routing has been removed as it is redundant- the
libp2p
property has been removed from theHelia
interface in@helia/interface
- it is still present on the return type ofcreateHelia
from thehelia
module
- remove gossipsub from default libp2p services (#401) (99c94f4)
- update ipns module to v9 and fix double verification of records (#396) (f2853f8)
- The following workspace dependencies were updated
- dependencies
- @helia/interface bumped from ^3.0.1 to ^4.0.0
- dependencies
@helia/ipns-v3.0.1 (2023-12-08)
- fix docs and aegir dep in subpackages (#142) (f66dd71)
- update sibling dependencies (6ab5ddc)
- update sibling dependencies (d0d84f0)
@helia/ipns-v3.0.0 (2023-12-05)
- alters the options object passed to the
ipns
factory function
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)
])
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'),
]
})
@helia/ipns-v2.0.3 (2023-10-26)
@helia/ipns-v2.0.2 (2023-10-24)
@helia/ipns-v2.0.1 (2023-10-07)
@helia/ipns-v2.0.0 (2023-09-22)
- the
IPNSRecord
type returned from thepublish
method has changed
@helia/ipns-v1.1.7 (2023-09-15)
@helia/ipns-v1.1.6 (2023-09-15)
@helia/ipns-v1.1.5 (2023-09-11)
@helia/ipns-v1.1.4 (2023-09-11)
- bump multiformats from 11.0.2 to 12.0.1 (#57) (6f93e51)
- dev: bump aegir from 39.0.13 to 40.0.8 (#65) (174987b)
@helia/ipns-v1.1.3 (2023-05-24)
- update all deps and fix linting (4cdba4f)