Skip to content

Commit d269d97

Browse files
authored
Merge branch 'master' into fix/pad-length
2 parents ee82abb + beeb0a7 commit d269d97

File tree

14 files changed

+34
-17
lines changed

14 files changed

+34
-17
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"release": "npm run docs:no-publish && aegir run release && npm run docs"
3737
},
3838
"devDependencies": {
39-
"aegir": "^39.0.6"
39+
"aegir": "^40.0.11"
4040
},
4141
"workspaces": [
4242
"packages/*"

packages/ipfs-unixfs-exporter/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [ipfs-unixfs-exporter-v13.1.7](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-exporter-v13.1.6...ipfs-unixfs-exporter-v13.1.7) (2023-08-24)
2+
3+
4+
### Dependencies
5+
6+
* bump multiformats from 11.0.2 to 12.0.1 ([#337](https://github.com/ipfs/js-ipfs-unixfs/issues/337)) ([b8b17d9](https://github.com/ipfs/js-ipfs-unixfs/commit/b8b17d909579589cd1fc8cac2eb0955f433ff710))
7+
* **dev:** bump @types/readable-stream from 2.3.15 to 4.0.1 ([#352](https://github.com/ipfs/js-ipfs-unixfs/issues/352)) ([61c2db6](https://github.com/ipfs/js-ipfs-unixfs/commit/61c2db62f3c855cecbf3262856fad2ea8ed28f3a))
8+
* **dev:** bump aegir from 39.0.13 to 40.0.11 ([#353](https://github.com/ipfs/js-ipfs-unixfs/issues/353)) ([a61c620](https://github.com/ipfs/js-ipfs-unixfs/commit/a61c620082e2fcff1c2d83fe732a47d00904254c))
9+
110
## [ipfs-unixfs-exporter-v13.1.6](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-exporter-v13.1.5...ipfs-unixfs-exporter-v13.1.6) (2023-06-30)
211

312

packages/ipfs-unixfs-exporter/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-unixfs-exporter",
3-
"version": "13.1.6",
3+
"version": "13.1.7",
44
"description": "JavaScript implementation of the UnixFs exporter used by IPFS",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/ipfs/js-ipfs-unixfs/tree/master/packages/ipfs-unixfs-exporter#readme",
@@ -148,15 +148,15 @@
148148
"it-parallel": "^3.0.0",
149149
"it-pipe": "^3.0.1",
150150
"it-pushable": "^3.1.0",
151-
"multiformats": "^11.0.0",
151+
"multiformats": "^12.0.1",
152152
"p-queue": "^7.3.0",
153153
"progress-events": "^1.0.0",
154154
"uint8arrays": "^4.0.2"
155155
},
156156
"devDependencies": {
157-
"@types/readable-stream": "^2.3.15",
157+
"@types/readable-stream": "^4.0.1",
158158
"@types/sinon": "^10.0.0",
159-
"aegir": "^39.0.6",
159+
"aegir": "^40.0.11",
160160
"blockstore-core": "^4.0.1",
161161
"delay": "^6.0.0",
162162
"ipfs-unixfs-importer": "^15.0.0",

packages/ipfs-unixfs-exporter/src/resolvers/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import * as dagCbor from '@ipld/dag-cbor'
32
import * as dagPb from '@ipld/dag-pb'
43
import errCode from 'err-code'

packages/ipfs-unixfs-exporter/src/utils/extract-data-from-block.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
function extractDataFromBlock (block: Uint8Array, blockStart: bigint, requestedStart: bigint, requestedEnd: bigint): Uint8Array {
32
const blockLength = BigInt(block.length)
43
const blockEnd = BigInt(blockStart + blockLength)

packages/ipfs-unixfs-exporter/src/utils/find-cid-in-shard.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import { decode, type PBLink, type PBNode } from '@ipld/dag-pb'
32
import { murmur3128 } from '@multiformats/murmur3'
43
import { Bucket, type BucketPosition, createHAMT } from 'hamt-sharding'

packages/ipfs-unixfs-exporter/test/helpers/as-async-iterable.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
async function * asAsyncIterable (arr: Uint8Array | Uint8Array[]): AsyncGenerator<Uint8Array, void, undefined> {
32
if (!Array.isArray(arr)) {
43
arr = [arr]

packages/ipfs-unixfs-importer/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [ipfs-unixfs-importer-v15.1.8](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-importer-v15.1.7...ipfs-unixfs-importer-v15.1.8) (2023-08-24)
2+
3+
4+
### Dependencies
5+
6+
* bump multiformats from 11.0.2 to 12.0.1 ([#337](https://github.com/ipfs/js-ipfs-unixfs/issues/337)) ([b8b17d9](https://github.com/ipfs/js-ipfs-unixfs/commit/b8b17d909579589cd1fc8cac2eb0955f433ff710))
7+
* **dev:** bump aegir from 39.0.13 to 40.0.11 ([#353](https://github.com/ipfs/js-ipfs-unixfs/issues/353)) ([a61c620](https://github.com/ipfs/js-ipfs-unixfs/commit/a61c620082e2fcff1c2d83fe732a47d00904254c))
8+
19
## [ipfs-unixfs-importer-v15.1.7](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-importer-v15.1.6...ipfs-unixfs-importer-v15.1.7) (2023-07-14)
210

311

packages/ipfs-unixfs-importer/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-unixfs-importer",
3-
"version": "15.1.7",
3+
"version": "15.1.8",
44
"description": "JavaScript implementation of the UnixFs importer used by IPFS",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/ipfs/js-ipfs-unixfs/tree/master/packages/ipfs-unixfs-importer#readme",
@@ -170,14 +170,14 @@
170170
"it-batch": "^3.0.2",
171171
"it-first": "^3.0.2",
172172
"it-parallel-batch": "^3.0.1",
173-
"multiformats": "^11.0.0",
173+
"multiformats": "^12.0.1",
174174
"progress-events": "^1.0.0",
175175
"rabin-wasm": "^0.1.4",
176176
"uint8arraylist": "^2.4.3",
177177
"uint8arrays": "^4.0.2"
178178
},
179179
"devDependencies": {
180-
"aegir": "^39.0.6",
180+
"aegir": "^40.0.11",
181181
"blockstore-core": "^4.0.1",
182182
"it-last": "^3.0.2",
183183
"wherearewe": "^2.0.1"

packages/ipfs-unixfs-importer/src/chunker/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
export interface Chunker { (source: AsyncIterable<Uint8Array>): AsyncIterable<Uint8Array> }
32

43
export { rabin } from './rabin.js'

packages/ipfs-unixfs-importer/test/helpers/as-async-iterable.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
async function * asAsyncIterable (arr: Uint8Array | Uint8Array[]): AsyncGenerator<Uint8Array, void, undefined> {
32
if (!Array.isArray(arr)) {
43
arr = [arr]

packages/ipfs-unixfs-importer/test/helpers/random-byte-stream.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
async function * randomByteStream (seed: number): AsyncGenerator<Uint8Array> {
32
while (true) {
43
const r = Math.floor(random(seed) * 256)

packages/ipfs-unixfs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [ipfs-unixfs-v11.0.2](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-v11.0.1...ipfs-unixfs-v11.0.2) (2023-08-24)
2+
3+
4+
### Dependencies
5+
6+
* **dev:** bump aegir from 39.0.13 to 40.0.11 ([#353](https://github.com/ipfs/js-ipfs-unixfs/issues/353)) ([a61c620](https://github.com/ipfs/js-ipfs-unixfs/commit/a61c620082e2fcff1c2d83fe732a47d00904254c))
7+
18
## [ipfs-unixfs-v11.0.1](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-v11.0.0...ipfs-unixfs-v11.0.1) (2023-05-11)
29

310

packages/ipfs-unixfs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-unixfs",
3-
"version": "11.0.1",
3+
"version": "11.0.2",
44
"description": "JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/ipfs/js-ipfs-unixfs/tree/master/packages/ipfs-unixfs#readme",
@@ -144,7 +144,7 @@
144144
"uint8arraylist": "^2.4.3"
145145
},
146146
"devDependencies": {
147-
"aegir": "^39.0.6",
147+
"aegir": "^40.0.11",
148148
"protons": "^7.0.2",
149149
"uint8arrays": "^4.0.2"
150150
},

0 commit comments

Comments
 (0)