Skip to content

Commit a965c44

Browse files
chore: bump aegir from 41.3.5 to 42.2.0 (#417)
* chore: bump aegir from 41.3.5 to 42.2.0 Bumps [aegir](https://github.com/ipfs/aegir) from 41.3.5 to 42.2.0. - [Release notes](https://github.com/ipfs/aegir/releases) - [Changelog](https://github.com/ipfs/aegir/blob/master/CHANGELOG.md) - [Commits](ipfs/aegir@v41.3.5...v42.2.0) --- updated-dependencies: - dependency-name: aegir dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore: update imports and deps --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alex Potsides <[email protected]>
1 parent 9ebbfc5 commit a965c44

File tree

7 files changed

+8
-10
lines changed

7 files changed

+8
-10
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
"@noble/ciphers": "^0.4.0",
7676
"@noble/curves": "^1.1.0",
7777
"@noble/hashes": "^1.3.1",
78-
"it-byte-stream": "^1.0.0",
7978
"it-length-prefixed": "^9.0.1",
8079
"it-length-prefixed-stream": "^1.0.0",
8180
"it-pair": "^2.0.6",
@@ -97,11 +96,12 @@
9796
"@libp2p/tcp": "^9.0.0",
9897
"@multiformats/multiaddr": "^12.1.0",
9998
"@types/sinon": "^17.0.1",
100-
"aegir": "^41.1.10",
99+
"aegir": "^42.2.0",
101100
"benchmark": "^2.1.4",
102101
"execa": "^8.0.1",
103102
"go-libp2p": "^1.0.3",
104103
"iso-random-stream": "^2.0.2",
104+
"it-byte-stream": "^1.0.0",
105105
"libp2p": "^1.0.8",
106106
"mkdirp": "^3.0.0",
107107
"p-defer": "^4.0.0",

test/fixtures/peer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { createEd25519PeerId, createFromJSON } from '@libp2p/peer-id-factory'
2-
import type { PeerId } from '@libp2p/interface/peer-id'
2+
import type { PeerId } from '@libp2p/interface'
33

44
// ed25519 keys
55
const peers = [{

test/index.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string'
77
import { noise } from '../src/index.js'
88
import { Noise } from '../src/noise.js'
99
import { createPeerIdsFromFixtures } from './fixtures/peer.js'
10-
import type { Metrics } from '@libp2p/interface/metrics'
10+
import type { Metrics } from '@libp2p/interface'
1111
import type { Uint8ArrayList } from 'uint8arraylist'
1212

1313
function createCounterSpy (): ReturnType<typeof sinon.spy> {

test/interop.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { path as p2pd } from 'go-libp2p'
1313
import { createLibp2p, type Libp2pOptions } from 'libp2p'
1414
import pDefer from 'p-defer'
1515
import { noise } from '../src/index.js'
16-
import type { PeerId } from '@libp2p/interface/peer-id'
16+
import type { PeerId } from '@libp2p/interface'
1717
import type { SpawnOptions, Daemon, DaemonFactory } from '@libp2p/interop'
1818

1919
async function createGoPeer (options: SpawnOptions): Promise<Daemon> {

test/noise.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { toString as uint8ArrayToString } from 'uint8arrays/to-string'
1111
import { pureJsCrypto } from '../src/crypto/js.js'
1212
import { Noise } from '../src/noise.js'
1313
import { createPeerIdsFromFixtures } from './fixtures/peer.js'
14-
import type { PeerId } from '@libp2p/interface/peer-id'
14+
import type { PeerId } from '@libp2p/interface'
1515
import type { Uint8ArrayList } from 'uint8arraylist'
1616

1717
describe('Noise', () => {

test/performHandshake.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import { defaultCrypto } from '../src/crypto/index.js'
1010
import { wrapCrypto } from '../src/crypto.js'
1111
import { performHandshakeInitiator, performHandshakeResponder } from '../src/performHandshake.js'
1212
import { createPeerIdsFromFixtures } from './fixtures/peer.js'
13-
import type { PrivateKey } from '@libp2p/interface'
14-
import type { PeerId } from '@libp2p/interface/peer-id'
13+
import type { PrivateKey, PeerId } from '@libp2p/interface'
1514

1615
describe('performHandshake', () => {
1716
let peerA: PeerId, peerB: PeerId, fakePeer: PeerId

test/utils.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { keys } from '@libp2p/crypto'
22
import type { KeyPair } from '../src/types.js'
3-
import type { PrivateKey } from '@libp2p/interface/keys'
4-
import type { PeerId } from '@libp2p/interface/peer-id'
3+
import type { PrivateKey, PeerId } from '@libp2p/interface'
54

65
export async function generateEd25519Keys (): Promise<PrivateKey> {
76
return keys.generateKeyPair('Ed25519', 32)

0 commit comments

Comments
 (0)