From 6d601791b87692f01e1d0209b4e30b560c41ae65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 10:32:36 +0000 Subject: [PATCH 1/2] deps(dev): bump aegir from 43.0.3 to 44.1.1 Bumps [aegir](https://github.com/ipfs/aegir) from 43.0.3 to 44.1.1. - [Release notes](https://github.com/ipfs/aegir/releases) - [Changelog](https://github.com/ipfs/aegir/blob/master/CHANGELOG.md) - [Commits](https://github.com/ipfs/aegir/compare/v43.0.3...v44.1.1) --- updated-dependencies: - dependency-name: aegir dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ae246d89..2309d93c 100644 --- a/package.json +++ b/package.json @@ -176,7 +176,7 @@ }, "devDependencies": { "@types/sinon": "^17.0.2", - "aegir": "^43.0.1", + "aegir": "^44.1.1", "sinon": "^18.0.0", "sinon-ts": "^2.0.0" }, From 1593ff8a92032de73603efc75e6bb855cd3073b7 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Mon, 9 Sep 2024 10:50:03 +0100 Subject: [PATCH 2/2] chore: fix linting --- src/multiaddr.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/multiaddr.ts b/src/multiaddr.ts index 95348b16..531d6100 100644 --- a/src/multiaddr.ts +++ b/src/multiaddr.ts @@ -37,10 +37,10 @@ const DNS_CODES = [ */ export class Multiaddr implements MultiaddrInterface { public bytes: Uint8Array - #string: string - #tuples: Tuple[] - #stringTuples: StringTuple[] - #path: string | null + readonly #string: string + readonly #tuples: Tuple[] + readonly #stringTuples: StringTuple[] + readonly #path: string | null [symbol]: boolean = true