Skip to content

deps(dev): bump aegir from 45.2.1 to 47.0.16 #431

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

Merged
merged 5 commits into from
Jun 18, 2025
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
23 changes: 21 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,30 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
directories:
- "/"
schedule:
interval: daily
time: "10:00"
open-pull-requests-limit: 20
commit-message:
prefix: "deps"
prefix-development: "deps(dev)"
prefix-development: "chore"
groups:
interplanetary-deps: # Helia/libp2p deps
patterns:
- "*helia*"
- "*libp2p*"
- "*multiformats*"
- "*blockstore*"
- "*datastore*"
kubo-deps: # kubo deps
patterns:
- "*kubo*"
- "ipfsd-ctl"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: chore
2 changes: 1 addition & 1 deletion .github/workflows/semantic-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ on:

jobs:
main:
uses: pl-strflt/.github/.github/workflows/reusable-semantic-pull-request.yml@v0.3
uses: ipdxco/unified-github-workflows/.github/workflows/reusable-semantic-pull-request.yml@v1
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Close Stale Issues
name: Close and mark stale issue

on:
schedule:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ node_modules
package-lock.json
yarn.lock
.vscode
.tmp-compiled-docs
tsconfig-doc-check.aegir.json
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@

> JS implementation of the IPFS UnixFS

The UnixFS spec can be found at [ipfs/specs/UNIXFS.md](https://github.com/ipfs/specs/blob/master/UNIXFS.md)

# Packages

- [`benchmarks/import`](https://github.com/ipfs/js-ipfs-unixfs/tree/main/benchmarks/import) Import benchmarks for ipfs-unixfs-importer
- [`benchmarks/memory`](https://github.com/ipfs/js-ipfs-unixfs/tree/main/benchmarks/memory) Memory benchmarks for ipfs-unixfs-importer
- [`packages/ipfs-unixfs`](https://github.com/ipfs/js-ipfs-unixfs/tree/main/packages/ipfs-unixfs) JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)
- [`packages/ipfs-unixfs-exporter`](https://github.com/ipfs/js-ipfs-unixfs/tree/main/packages/ipfs-unixfs-exporter) JavaScript implementation of the UnixFs exporter used by IPFS
- [`packages/ipfs-unixfs-importer`](https://github.com/ipfs/js-ipfs-unixfs/tree/main/packages/ipfs-unixfs-importer) JavaScript implementation of the UnixFs importer used by IPFS

The UnixFS spec can be found at [ipfs/specs/UNIXFS.md](https://github.com/ipfs/specs/blob/master/UNIXFS.md)

# API Docs

- <https://ipfs.github.io/js-ipfs-unixfs>
Expand Down
38 changes: 9 additions & 29 deletions benchmarks/import/package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,9 @@
{
"name": "ipfs-unixfs-memory-benchmark",
"name": "ipfs-unixfs-import-benchmark",
"version": "0.0.0",
"description": "Memory benchmarks for ipfs-unixfs-importer",
"description": "Import benchmarks for ipfs-unixfs-importer",
"license": "Apache-2.0 OR MIT",
"private": true,
"type": "module",
"types": "./dist/src/index.d.ts",
"files": [
"src",
"dist",
"!dist/test",
"!**/*.tsbuildinfo"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"scripts": {
"build": "aegir build --bundle false",
"clean": "aegir clean",
Expand All @@ -32,11 +12,11 @@
"start": "npm run build && node --expose-gc ./dist/test/index.spec.js"
},
"devDependencies": {
"aegir": "^42.2.2",
"blockstore-core": "^4.0.1",
"blockstore-fs": "^1.0.0",
"ipfs-unixfs-importer": "../../packages/ipfs-unixfs-importer",
"it-buffer-stream": "^3.0.1",
"it-drain": "^3.0.5"
}
"aegir": "^47.0.16",
"blockstore-core": "^5.0.4",
"ipfs-unixfs-importer": "^15.0.0",
"it-buffer-stream": "^3.0.11",
"it-drain": "^3.0.10"
},
"private": true
}
5 changes: 3 additions & 2 deletions benchmarks/import/test/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
/* eslint-env mocha */

import { importer, ImporterOptions } from 'ipfs-unixfs-importer'
import bufferStream from 'it-buffer-stream'
import { MemoryBlockstore } from 'blockstore-core'
import { importer } from 'ipfs-unixfs-importer'
import bufferStream from 'it-buffer-stream'
import drain from 'it-drain'
import type { ImporterOptions } from 'ipfs-unixfs-importer'

const REPEATS = 10
const FILE_SIZE = Math.pow(2, 20) * 500 // 500MB
Expand Down
5 changes: 5 additions & 0 deletions benchmarks/import/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,10 @@
"include": [
"src",
"test"
],
"references": [
{
"path": "../../packages/ipfs-unixfs-importer"
}
]
}
31 changes: 6 additions & 25 deletions benchmarks/memory/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,7 @@
"version": "0.0.0",
"description": "Memory benchmarks for ipfs-unixfs-importer",
"license": "Apache-2.0 OR MIT",
"private": true,
"type": "module",
"types": "./dist/src/index.d.ts",
"files": [
"src",
"dist",
"!dist/test",
"!**/*.tsbuildinfo"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"scripts": {
"build": "aegir build --bundle false",
"clean": "aegir clean",
Expand All @@ -32,9 +12,10 @@
"start": "npm run build && node --expose-gc ./dist/test/index.spec.js"
},
"devDependencies": {
"aegir": "^42.2.2",
"blockstore-fs": "^1.0.0",
"ipfs-unixfs-importer": "../../packages/ipfs-unixfs-importer",
"it-drain": "^3.0.5"
}
"aegir": "^47.0.16",
"blockstore-fs": "^2.0.4",
"ipfs-unixfs-importer": "^15.0.0",
"it-drain": "^3.0.10"
},
"private": true
}
10 changes: 5 additions & 5 deletions benchmarks/memory/test/index.spec.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* eslint-disable no-console */

import { importer } from 'ipfs-unixfs-importer'
import path from 'node:path'
import os from 'node:os'
import fs from 'node:fs'
import drain from 'it-drain'
import os from 'node:os'
import path from 'node:path'
import { FsBlockstore } from 'blockstore-fs'
import { importer } from 'ipfs-unixfs-importer'
import drain from 'it-drain'

const ONE_MEG = 1024 * 1024

Expand Down Expand Up @@ -43,6 +43,6 @@ async function main (): Promise<void> {
}

main().catch(err => {
console.error(err) // eslint-disable-line no-console
console.error(err)
process.exit(1)
})
5 changes: 5 additions & 0 deletions benchmarks/memory/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,10 @@
"include": [
"src",
"test"
],
"references": [
{
"path": "../../packages/ipfs-unixfs-importer"
}
]
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@
"docs:no-publish": "aegir docs --publish false"
},
"devDependencies": {
"aegir": "^45.0.8",
"aegir": "^47.0.16",
"npm-run-all": "^4.1.5"
},
"workspaces": [
"benchmarks/*",
"packages/*"
]
}
3 changes: 3 additions & 0 deletions packages/ipfs-unixfs-exporter/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Contributor Code of Conduct

This project follows the [`IPFS Community Code of Conduct`](https://github.com/ipfs/community/blob/master/code-of-conduct.md)
4 changes: 0 additions & 4 deletions packages/ipfs-unixfs-exporter/LICENSE

This file was deleted.

Loading