From 408ba5ab2a8191da74509415f89dacc024135fc9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 11:10:59 +0100 Subject: [PATCH] deps(dev): bump aegir from 43.0.3 to 44.1.1 (#384) * 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] * chore: fix linting --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: achingbrain --- package.json | 2 +- src/multiaddr.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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" }, 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