From c4d9c8f906150dbe1157e95cc31545524e17ca82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 15:06:53 +0100 Subject: [PATCH] deps(dev): bump @helia/ipns from 5.0.0 to 6.0.0 (#107) Bumps [@helia/ipns](https://github.com/ipfs/helia) from 5.0.0 to 6.0.0. - [Release notes](https://github.com/ipfs/helia/releases) - [Changelog](https://github.com/ipfs/helia/blob/main/CHANGELOG.md) - [Commits](https://github.com/ipfs/helia/compare/ipns-v5.0.0...ipns-v6.0.0) --- updated-dependencies: - dependency-name: "@helia/ipns" dependency-type: direct:development update-type: version-update:semver-major ... --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: achingbrain --- .github/workflows/js-test-and-release.yml | 1 + packages/interop/package.json | 2 +- packages/interop/test/index.spec.ts | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/js-test-and-release.yml b/.github/workflows/js-test-and-release.yml index 35d87d1..c03cdd5 100644 --- a/.github/workflows/js-test-and-release.yml +++ b/.github/workflows/js-test-and-release.yml @@ -9,6 +9,7 @@ on: permissions: contents: write + id-token: write packages: write concurrency: diff --git a/packages/interop/package.json b/packages/interop/package.json index 9099c7f..f85043f 100644 --- a/packages/interop/package.json +++ b/packages/interop/package.json @@ -40,7 +40,7 @@ "devDependencies": { "@helia/delegated-routing-v1-http-api-client": "^3.0.0", "@helia/delegated-routing-v1-http-api-server": "^3.0.0", - "@helia/ipns": "^5.0.0", + "@helia/ipns": "^6.0.0", "@libp2p/identify": "^1.0.10", "@libp2p/interface": "^1.1.1", "@libp2p/kad-dht": "^12.0.3", diff --git a/packages/interop/test/index.spec.ts b/packages/interop/test/index.spec.ts index b58bb6d..dfe452c 100644 --- a/packages/interop/test/index.spec.ts +++ b/packages/interop/test/index.spec.ts @@ -110,6 +110,6 @@ describe('delegated-routing-v1-http-api interop', () => { // resolve the record using a remote host const i = ipns(network[8]) const result = await i.resolve(peerId) - expect(result.toString()).to.equal(cid.toString()) + expect(result.cid.toString()).to.equal(cid.toString()) }) })