Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit f729536

Browse files
committed
chore: remove gh urls
1 parent e02ec1b commit f729536

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

examples/traverse-ipld-graphs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"cids": "^1.1.5",
1717
"ipfs": "^0.54.2",
1818
"ipld-block": "^0.11.0",
19-
"ipld-dag-pb": "ipld/js-ipld-dag-pb#feat/add-types",
19+
"ipld-dag-pb": "^0.21.0",
2020
"ipld-git": "^0.6.1",
2121
"ipld-ethereum": "^5.0.1",
2222
"multihashing-async": "^2.0.1"

packages/interface-ipfs-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
"delay": "^4.4.0",
4040
"dirty-chai": "^2.0.1",
4141
"err-code": "^2.0.3",
42-
"ipfs-unixfs": "https://gitpkg.now.sh/ipfs/js-ipfs-unixfs/packages/ipfs-unixfs?feat/add-types",
43-
"ipfs-unixfs-importer": "https://gitpkg.now.sh/ipfs/js-ipfs-unixfs/packages/ipfs-unixfs-importer?feat/add-types",
42+
"ipfs-unixfs": "^3.0.0",
43+
"ipfs-unixfs-importer": "^6.0.0",
4444
"ipfs-utils": "^6.0.1",
4545
"ipld-block": "^0.11.0",
4646
"ipld-dag-cbor": "^0.17.0",
47-
"ipld-dag-pb": "ipld/js-ipld-dag-pb#feat/add-types",
47+
"ipld-dag-pb": "^0.21.0",
4848
"ipns": "^0.8.0",
4949
"is-ipfs": "^2.0.0",
5050
"iso-random-stream": "^1.1.1",

packages/ipfs-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"ipfs-repo": "^8.0.0",
4444
"ipfs-utils": "^6.0.1",
4545
"ipld-dag-cbor": "^0.17.0",
46-
"ipld-dag-pb": "ipld/js-ipld-dag-pb#feat/add-types",
46+
"ipld-dag-pb": "^0.21.0",
4747
"it-all": "^1.0.4",
4848
"it-concat": "^1.0.1",
4949
"it-first": "^1.0.4",

packages/ipfs-core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,22 +65,22 @@
6565
"debug": "^4.1.1",
6666
"dlv": "^1.1.3",
6767
"err-code": "^2.0.3",
68-
"hamt-sharding": "ipfs-shipyard/js-hamt-sharding#feat/add-types",
68+
"hamt-sharding": "^2.0.0",
6969
"hashlru": "^2.3.0",
7070
"interface-datastore": "^3.0.3",
7171
"ipfs-bitswap": "^4.0.2",
7272
"ipfs-block-service": "^0.18.0",
7373
"ipfs-core-types": "^0.3.0",
7474
"ipfs-core-utils": "^0.7.1",
7575
"ipfs-repo": "^8.0.0",
76-
"ipfs-unixfs": "https://gitpkg.now.sh/ipfs/js-ipfs-unixfs/packages/ipfs-unixfs?feat/add-types",
77-
"ipfs-unixfs-exporter": "https://gitpkg.now.sh/ipfs/js-ipfs-unixfs/packages/ipfs-unixfs-exporter?feat/add-types",
78-
"ipfs-unixfs-importer": "https://gitpkg.now.sh/ipfs/js-ipfs-unixfs/packages/ipfs-unixfs-importer?feat/add-types",
76+
"ipfs-unixfs": "^3.0.0",
77+
"ipfs-unixfs-exporter": "^4.0.0",
78+
"ipfs-unixfs-importer": "^6.0.0",
7979
"ipfs-utils": "^6.0.1",
8080
"ipld": "^0.28.0",
8181
"ipld-block": "^0.11.0",
8282
"ipld-dag-cbor": "^0.17.0",
83-
"ipld-dag-pb": "ipld/js-ipld-dag-pb#feat/add-types",
83+
"ipld-dag-pb": "^0.21.0",
8484
"ipld-raw": "^6.0.0",
8585
"ipns": "^0.8.0",
8686
"is-domain-name": "^1.0.1",

packages/ipfs-core/src/components/files/utils/add-link.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ const addToShardedDirectory = async (context, options) => {
125125
shard, path
126126
} = await addFileToShardedDirectory(context, options)
127127

128-
const result = await last(shard.flush('', context.block))
128+
const result = await last(shard.flush(context.block))
129129
const node = await context.ipld.get(result.cid)
130130

131131
// we have written out the shard, but only one sub-shard will have been written so replace it in the original shard

packages/ipfs-core/src/components/files/utils/hamt-utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ const createShard = async (context, contents, options) => {
216216
})
217217
}
218218

219-
return last(shard.flush('', context.block))
219+
return last(shard.flush(context.block))
220220
}
221221

222222
module.exports = {

packages/ipfs-http-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"ipfs-utils": "^6.0.1",
6363
"ipld-block": "^0.11.0",
6464
"ipld-dag-cbor": "^0.17.0",
65-
"ipld-dag-pb": "ipld/js-ipld-dag-pb#feat/add-types",
65+
"ipld-dag-pb": "^0.21.0",
6666
"ipld-raw": "^6.0.0",
6767
"it-last": "^1.0.4",
6868
"it-map": "^1.0.4",

packages/ipfs-http-server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
"hapi-pino": "^8.3.0",
4040
"ipfs-core-utils": "^0.7.1",
4141
"ipfs-http-gateway": "^0.3.1",
42-
"ipfs-unixfs": "https://gitpkg.now.sh/ipfs/js-ipfs-unixfs/packages/ipfs-unixfs?feat/add-types",
43-
"ipld-dag-pb": "ipld/js-ipld-dag-pb#feat/add-types",
42+
"ipfs-unixfs": "^3.0.0",
43+
"ipld-dag-pb": "^0.21.0",
4444
"it-all": "^1.0.4",
4545
"it-drain": "^1.0.3",
4646
"it-first": "^1.0.4",

0 commit comments

Comments
 (0)