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

Releases: ipfs/helia-ipns

@helia/ipns-v4.0.0

08 Jan 08:36
Compare
Choose a tag to compare

@helia/ipns-v4.0.0 (2024-01-08)

⚠ BREAKING CHANGES

  • uses multiformats v13 and helia v3, renames dht routing to libp2p

Features

  • update helia to v3 and multiformats to v13 (#167) (a0381b9)

Bug Fixes

@helia/ipns-v3.0.1

08 Dec 00:52
Compare
Choose a tag to compare

@helia/ipns-v3.0.1 (2023-12-08)

Trivial Changes

  • fix docs and aegir dep in subpackages (#142) (f66dd71)
  • update sibling dependencies (6ab5ddc)
  • update sibling dependencies (d0d84f0)

Documentation

@helia/ipns-v3.0.0

05 Dec 23:25
Compare
Choose a tag to compare

@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

  • support DNS over HTTPS and DNS-JSON over HTTPS (#55) (2ac0e8b)

@helia/ipns-v2.0.3

26 Oct 14:52
Compare
Choose a tag to compare

@helia/ipns-v2.0.3 (2023-10-26)

Bug Fixes

@helia/ipns-v2.0.2

24 Oct 16:35
Compare
Choose a tag to compare

@helia/ipns-v2.0.2 (2023-10-24)

Dependencies

  • dev: bump sinon from 16.1.3 to 17.0.0 (#108) (530aeff)

@helia/ipns-v2.0.1

07 Oct 10:13
Compare
Choose a tag to compare

@helia/ipns-v2.0.1 (2023-10-07)

Dependencies

  • dev: bump aegir from 40.0.13 to 41.0.0 (#107) (5402d30)

@helia/ipns-v2.0.0

22 Sep 12:42
Compare
Choose a tag to compare

@helia/ipns-v2.0.0 (2023-09-22)

⚠ BREAKING CHANGES

  • the IPNSRecord type returned from the publish method has changed

Dependencies

@helia/ipns-v1.1.7

15 Sep 17:09
Compare
Choose a tag to compare

@helia/ipns-v1.1.7 (2023-09-15)

Dependencies

  • dev: bump sinon from 15.2.0 to 16.0.0 (#105) (231ebbd)

@helia/ipns-v1.1.6

15 Sep 16:31
Compare
Choose a tag to compare

@helia/ipns-v1.1.6 (2023-09-15)

Dependencies

  • dev: bump libp2p from 0.45.9 to 0.46.6 (#92) (efe02e5)

@helia/ipns-v1.1.5

11 Sep 09:18
Compare
Choose a tag to compare

@helia/ipns-v1.1.5 (2023-09-11)

Dependencies

  • bump @libp2p/logger from 2.1.1 to 3.0.2 (#87) (b2886b9)