From 1927be05d00a57b74db966aaf6a7b0512cee5703 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 10:39:28 +0000 Subject: [PATCH 1/2] deps(dev): bump @helia/ipns from 5.0.0 to 6.0.0 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] --- packages/interop/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", From 8d66d3e7eeb617e0eda6a630e62f678a9abededb Mon Sep 17 00:00:00 2001 From: achingbrain Date: Thu, 1 Feb 2024 14:58:49 +0100 Subject: [PATCH 2/2] chore: fix linting and tests --- .github/workflows/js-test-and-release.yml | 1 + packages/interop/test/index.spec.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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/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()) }) })