File tree Expand file tree Collapse file tree 8 files changed +14
-13
lines changed
interface-blockstore-tests
interface-datastore-tests Expand file tree Collapse file tree 8 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 30
30
},
31
31
"homepage" : " https://github.com/ipfs/js-ipfs-interfaces/tree/master/packages/interface-blockstore-tests#readme" ,
32
32
"dependencies" : {
33
- "aegir" : " ^33.1.2 " ,
33
+ "aegir" : " ^35.0.0 " ,
34
34
"interface-blockstore" : " ^0.2.1" ,
35
35
"it-all" : " ^1.0.2" ,
36
36
"it-drain" : " ^1.0.1" ,
37
37
"it-length" : " ^1.0.2" ,
38
38
"multiformats" : " ^9.1.0" ,
39
- "uint8arrays" : " ^2.1.5 "
39
+ "uint8arrays" : " ^3.0.0 "
40
40
},
41
41
"eslintConfig" : {
42
42
"extends" : " ipfs"
Original file line number Diff line number Diff line change 4
4
const { expect } = require ( 'aegir/utils/chai' )
5
5
const all = require ( 'it-all' )
6
6
const drain = require ( 'it-drain' )
7
- const uint8ArrayFromString = require ( 'uint8arrays/from-string' )
7
+ const { fromString : uint8ArrayFromString } = require ( 'uint8arrays/from-string' )
8
8
const { CID } = require ( 'multiformats/cid' )
9
9
const { sha256 } = require ( 'multiformats/hashes/sha2' )
10
10
const raw = require ( 'multiformats/codecs/raw' )
Original file line number Diff line number Diff line change 26
26
"multiformats" : " ^9.0.4"
27
27
},
28
28
"devDependencies" : {
29
- "aegir" : " ^33.1.2 "
29
+ "aegir" : " ^35.0.0 "
30
30
}
31
31
}
Original file line number Diff line number Diff line change 30
30
},
31
31
"homepage" : " https://github.com/ipfs/js-ipfs-interfaces/tree/master/packages/interface-datastore-tests#readme" ,
32
32
"dependencies" : {
33
- "aegir" : " ^33.1.2 " ,
33
+ "aegir" : " ^35.0.0 " ,
34
34
"interface-datastore" : " ^5.1.1" ,
35
35
"iso-random-stream" : " ^2.0.0" ,
36
36
"it-all" : " ^1.0.2" ,
37
37
"it-drain" : " ^1.0.1" ,
38
- "uint8arrays" : " ^2.1.5 "
38
+ "uint8arrays" : " ^3.0.0 "
39
39
},
40
40
"eslintConfig" : {
41
41
"extends" : " ipfs"
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const { randomBytes } = require('iso-random-stream')
5
5
const { expect } = require ( 'aegir/utils/chai' )
6
6
const all = require ( 'it-all' )
7
7
const drain = require ( 'it-drain' )
8
- const uint8ArrayFromString = require ( 'uint8arrays/from-string' )
8
+ const { fromString : uint8ArrayFromString } = require ( 'uint8arrays/from-string' )
9
9
const { Key } = require ( 'interface-datastore' )
10
10
11
11
/**
Original file line number Diff line number Diff line change 31
31
},
32
32
"homepage" : " https://github.com/ipfs/js-ipfs-interfaces/tree/master/packages/interface-datastore#readme" ,
33
33
"devDependencies" : {
34
- "aegir" : " ^33.1.2" ,
35
- "it-map" : " ^1.0.5"
34
+ "aegir" : " ^35.0.0" ,
35
+ "it-map" : " ^1.0.5" ,
36
+ "util" : " ^0.12.4"
36
37
},
37
38
"dependencies" : {
38
39
"err-code" : " ^3.0.1" ,
43
44
"it-filter" : " ^1.0.2" ,
44
45
"it-take" : " ^1.0.1" ,
45
46
"nanoid" : " ^3.0.2" ,
46
- "uint8arrays" : " ^2.1.5 "
47
+ "uint8arrays" : " ^3.0.0 "
47
48
},
48
49
"eslintConfig" : {
49
50
"extends" : " ipfs"
Original file line number Diff line number Diff line change 2
2
3
3
const { nanoid } = require ( 'nanoid' )
4
4
5
- const uint8ArrayToString = require ( 'uint8arrays/to-string' )
6
- const uint8ArrayFromString = require ( 'uint8arrays/from-string' )
5
+ const { toString : uint8ArrayToString } = require ( 'uint8arrays/to-string' )
6
+ const { fromString : uint8ArrayFromString } = require ( 'uint8arrays/from-string' )
7
7
8
8
const pathSepS = '/'
9
9
const pathSepB = new TextEncoder ( ) . encode ( pathSepS )
Original file line number Diff line number Diff line change 17
17
"url" : " git+https://github.com/ipfs/js-ipfs-interfaces.git"
18
18
},
19
19
"devDependencies" : {
20
- "aegir" : " ^33.1.2 "
20
+ "aegir" : " ^35.0.0 "
21
21
}
22
22
}
You can’t perform that action at this time.
0 commit comments