Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: update to latest deps #42

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,18 +158,18 @@
"release": "aegir release"
},
"dependencies": {
"@libp2p/logger": "^4.0.1",
"@multiformats/multiaddr": "^12.1.11",
"@multiformats/multiaddr-matcher": "^1.1.0",
"multiformats": "^12.1.3",
"p-retry": "^6.1.0"
"@libp2p/logger": "^4.0.6",
"@multiformats/multiaddr": "^12.1.14",
"@multiformats/multiaddr-matcher": "^1.1.2",
"multiformats": "^13.0.1",
"p-retry": "^6.2.0"
},
"devDependencies": {
"@helia/interface": "^2.1.0",
"@helia/unixfs": "^1.4.3",
"@helia/interface": "^4.0.0",
"@helia/unixfs": "^3.0.0",
"@ipfs-shipyard/pinning-service-client": "^1.0.3",
"@types/express": "^4.17.17",
"aegir": "^41.1.14",
"@types/express": "^4.17.21",
"aegir": "^42.2.3",
"get-port": "^7.0.0",
"mock-ipfs-pinning-service": "^0.4.2",
"nyc": "^15.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/heliaRemotePinner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { logger } from '@libp2p/logger'
import { multiaddr } from '@multiformats/multiaddr'
import { P2P } from '@multiformats/multiaddr-matcher'
import pRetry, { type Options as pRetryOptions } from 'p-retry'
import type { Helia } from '@helia/interface'
import type { Helia } from 'helia'
import type { CID } from 'multiformats/cid'

const log = logger('helia:remote-pinning')
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HeliaRemotePinner, type HeliaRemotePinnerConfig } from './heliaRemotePinner.js'
import type { Helia } from '@helia/interface'
import type { RemotePinningServiceClient } from '@ipfs-shipyard/pinning-service-client'
import type { Helia } from 'helia'

export type { HeliaRemotePinner, HeliaRemotePinnerConfig } from './heliaRemotePinner.js'

Expand Down
3 changes: 1 addition & 2 deletions test/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { unixfs, type UnixFS } from '@helia/unixfs'
import { Configuration, RemotePinningServiceClient, Status } from '@ipfs-shipyard/pinning-service-client'
import { expect } from 'aegir/chai'
import { createHelia } from 'helia'
import { createHelia, type Helia } from 'helia'
import sinon, { type SinonSandbox, type SinonStub } from 'sinon'
import { type HeliaRemotePinner, createRemotePinner } from '../src/index.js'
import type { Helia } from '@helia/interface'

const encoder = new TextEncoder()

Expand Down
Loading