Skip to content

Commit a61c620

Browse files
deps(dev): bump aegir from 39.0.13 to 40.0.11 (#353)
* deps(dev): bump aegir from 39.0.13 to 40.0.11 Bumps [aegir](https://github.com/ipfs/aegir) from 39.0.13 to 40.0.11. - [Release notes](https://github.com/ipfs/aegir/releases) - [Changelog](https://github.com/ipfs/aegir/blob/master/CHANGELOG.md) - [Commits](ipfs/aegir@v39.0.13...v40.0.11) --- updated-dependencies: - dependency-name: aegir dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: fix linting --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: achingbrain <alex@achingbrain.net>
1 parent 61c2db6 commit a61c620

File tree

11 files changed

+4
-11
lines changed

11 files changed

+4
-11
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/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
"devDependencies": {
157157
"@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/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
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/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)