Skip to content

Commit f94d1ad

Browse files
deps(dev): bump aegir from 42.2.11 to 44.1.1 (#412)
* deps(dev): bump aegir from 42.2.11 to 44.1.1 Bumps [aegir](https://github.com/ipfs/aegir) from 42.2.11 to 44.1.1. - [Release notes](https://github.com/ipfs/aegir/releases) - [Changelog](https://github.com/ipfs/aegir/blob/master/CHANGELOG.md) - [Commits](ipfs/aegir@v42.2.11...v44.1.1) --- updated-dependencies: - dependency-name: aegir dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore: update project --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: achingbrain <[email protected]>
1 parent 3490930 commit f94d1ad

File tree

11 files changed

+317
-144
lines changed

11 files changed

+317
-144
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77

88
> JS implementation of the IPFS UnixFS
99
10-
The UnixFS spec can be found at [ipfs/specs/UNIXFS.md](https://github.com/ipfs/specs/blob/master/UNIXFS.md)
11-
1210
# Packages
1311

14-
- [`/packages/ipfs-unixfs`](./packages/ipfs-unixfs) JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)
15-
- [`/packages/ipfs-unixfs-exporter`](./packages/ipfs-unixfs-exporter) JavaScript implementation of the UnixFs exporter used by IPFS
16-
- [`/packages/ipfs-unixfs-importer`](./packages/ipfs-unixfs-importer) JavaScript implementation of the UnixFs importer used by IPFS
12+
- [`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)
13+
- [`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
14+
- [`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
15+
16+
The UnixFS spec can be found at [ipfs/specs/UNIXFS.md](https://github.com/ipfs/specs/blob/master/UNIXFS.md)
1717

1818
# API Docs
1919

@@ -23,8 +23,8 @@ The UnixFS spec can be found at [ipfs/specs/UNIXFS.md](https://github.com/ipfs/s
2323

2424
Licensed under either of
2525

26-
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
27-
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
26+
- Apache 2.0, ([LICENSE-APACHE](https://github.com/ipfs/js-ipfs-unixfs/blob/main/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
27+
- MIT ([LICENSE-MIT](https://github.com/ipfs/js-ipfs-unixfs/blob/main/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
2828

2929
# Contribute
3030

package.json

+2-87
Original file line numberDiff line numberDiff line change
@@ -12,91 +12,6 @@
1212
"url": "https://github.com/ipfs/js-ipfs-unixfs/issues"
1313
},
1414
"private": true,
15-
"release": {
16-
"branches": [
17-
"main"
18-
],
19-
"plugins": [
20-
[
21-
"@semantic-release/commit-analyzer",
22-
{
23-
"preset": "conventionalcommits",
24-
"releaseRules": [
25-
{
26-
"breaking": true,
27-
"release": "major"
28-
},
29-
{
30-
"revert": true,
31-
"release": "patch"
32-
},
33-
{
34-
"type": "feat",
35-
"release": "minor"
36-
},
37-
{
38-
"type": "fix",
39-
"release": "patch"
40-
},
41-
{
42-
"type": "docs",
43-
"release": "patch"
44-
},
45-
{
46-
"type": "test",
47-
"release": "patch"
48-
},
49-
{
50-
"type": "deps",
51-
"release": "patch"
52-
},
53-
{
54-
"scope": "no-release",
55-
"release": false
56-
}
57-
]
58-
}
59-
],
60-
[
61-
"@semantic-release/release-notes-generator",
62-
{
63-
"preset": "conventionalcommits",
64-
"presetConfig": {
65-
"types": [
66-
{
67-
"type": "feat",
68-
"section": "Features"
69-
},
70-
{
71-
"type": "fix",
72-
"section": "Bug Fixes"
73-
},
74-
{
75-
"type": "chore",
76-
"section": "Trivial Changes"
77-
},
78-
{
79-
"type": "docs",
80-
"section": "Documentation"
81-
},
82-
{
83-
"type": "deps",
84-
"section": "Dependencies"
85-
},
86-
{
87-
"type": "test",
88-
"section": "Tests"
89-
}
90-
]
91-
}
92-
}
93-
],
94-
"@semantic-release/changelog",
95-
"@semantic-release/npm",
96-
"@semantic-release/github",
97-
"@semantic-release/git"
98-
]
99-
},
10015
"scripts": {
10116
"reset": "aegir run clean && aegir clean **/node_modules **/package-lock.json",
10217
"test": "aegir run test",
@@ -113,12 +28,12 @@
11328
"lint": "aegir run lint",
11429
"dep-check": "aegir run dep-check",
11530
"release": "run-s build docs:no-publish npm:release docs",
116-
"npm:release": "aegir release",
31+
"npm:release": "aegir run release --concurrency 1",
11732
"docs": "aegir docs",
11833
"docs:no-publish": "aegir docs --publish false"
11934
},
12035
"devDependencies": {
121-
"aegir": "^42.2.2",
36+
"aegir": "^44.1.1",
12237
"npm-run-all": "^4.1.5"
12338
},
12439
"workspaces": [

packages/ipfs-unixfs-exporter/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ $ npm i ipfs-unixfs-exporter
7575

7676
## Browser `<script>` tag
7777

78-
Loading this module through a script tag will make it's exports available as `IpfsUnixfsExporter` in the global namespace.
78+
Loading this module through a script tag will make its exports available as `IpfsUnixfsExporter` in the global namespace.
7979

8080
```html
8181
<script src="https://unpkg.com/ipfs-unixfs-exporter/dist/index.min.js"></script>
@@ -89,8 +89,8 @@ Loading this module through a script tag will make it's exports available as `Ip
8989

9090
Licensed under either of
9191

92-
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
93-
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
92+
- Apache 2.0, ([LICENSE-APACHE](https://github.com/ipfs/js-ipfs-unixfs/blob/main/packages/ipfs-unixfs-exporter/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
93+
- MIT ([LICENSE-MIT](https://github.com/ipfs/js-ipfs-unixfs/blob/main/packages/ipfs-unixfs-exporter/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
9494

9595
# Contribute
9696

packages/ipfs-unixfs-exporter/package.json

+106-20
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,91 @@
3939
"sourceType": "module"
4040
}
4141
},
42+
"release": {
43+
"branches": [
44+
"main"
45+
],
46+
"plugins": [
47+
[
48+
"@semantic-release/commit-analyzer",
49+
{
50+
"preset": "conventionalcommits",
51+
"releaseRules": [
52+
{
53+
"breaking": true,
54+
"release": "major"
55+
},
56+
{
57+
"revert": true,
58+
"release": "patch"
59+
},
60+
{
61+
"type": "feat",
62+
"release": "minor"
63+
},
64+
{
65+
"type": "fix",
66+
"release": "patch"
67+
},
68+
{
69+
"type": "docs",
70+
"release": "patch"
71+
},
72+
{
73+
"type": "test",
74+
"release": "patch"
75+
},
76+
{
77+
"type": "deps",
78+
"release": "patch"
79+
},
80+
{
81+
"scope": "no-release",
82+
"release": false
83+
}
84+
]
85+
}
86+
],
87+
[
88+
"@semantic-release/release-notes-generator",
89+
{
90+
"preset": "conventionalcommits",
91+
"presetConfig": {
92+
"types": [
93+
{
94+
"type": "feat",
95+
"section": "Features"
96+
},
97+
{
98+
"type": "fix",
99+
"section": "Bug Fixes"
100+
},
101+
{
102+
"type": "chore",
103+
"section": "Trivial Changes"
104+
},
105+
{
106+
"type": "docs",
107+
"section": "Documentation"
108+
},
109+
{
110+
"type": "deps",
111+
"section": "Dependencies"
112+
},
113+
{
114+
"type": "test",
115+
"section": "Tests"
116+
}
117+
]
118+
}
119+
}
120+
],
121+
"@semantic-release/changelog",
122+
"@semantic-release/npm",
123+
"@semantic-release/github",
124+
"@semantic-release/git"
125+
]
126+
},
42127
"scripts": {
43128
"test": "aegir test",
44129
"test:node": "aegir test -t node --cov",
@@ -47,44 +132,45 @@
47132
"build": "aegir build",
48133
"clean": "aegir clean",
49134
"lint": "aegir lint",
50-
"dep-check": "aegir dep-check"
135+
"dep-check": "aegir dep-check",
136+
"release": "aegir release"
51137
},
52138
"dependencies": {
53-
"@ipld/dag-cbor": "^9.2.0",
54-
"@ipld/dag-json": "^10.2.0",
55-
"@ipld/dag-pb": "^4.1.0",
139+
"@ipld/dag-cbor": "^9.2.1",
140+
"@ipld/dag-json": "^10.2.2",
141+
"@ipld/dag-pb": "^4.1.2",
56142
"@multiformats/murmur3": "^2.1.8",
57143
"err-code": "^3.0.1",
58144
"hamt-sharding": "^3.0.6",
59-
"interface-blockstore": "^5.2.10",
145+
"interface-blockstore": "^5.3.0",
60146
"ipfs-unixfs": "^11.0.0",
61-
"it-filter": "^3.0.4",
62-
"it-last": "^3.0.4",
63-
"it-map": "^3.0.5",
64-
"it-parallel": "^3.0.6",
147+
"it-filter": "^3.1.1",
148+
"it-last": "^3.0.6",
149+
"it-map": "^3.1.1",
150+
"it-parallel": "^3.0.8",
65151
"it-pipe": "^3.0.1",
66152
"it-pushable": "^3.2.3",
67-
"multiformats": "^13.1.0",
153+
"multiformats": "^13.2.3",
68154
"p-queue": "^8.0.1",
69-
"progress-events": "^1.0.0"
155+
"progress-events": "^1.0.1"
70156
},
71157
"devDependencies": {
72-
"@types/readable-stream": "^4.0.11",
158+
"@types/readable-stream": "^4.0.15",
73159
"@types/sinon": "^17.0.3",
74-
"aegir": "^42.2.5",
75-
"blockstore-core": "^4.4.0",
160+
"aegir": "^44.1.1",
161+
"blockstore-core": "^4.4.1",
76162
"delay": "^6.0.0",
77163
"ipfs-unixfs-importer": "^15.0.0",
78164
"iso-random-stream": "^2.0.2",
79-
"it-all": "^3.0.4",
80-
"it-buffer-stream": "^3.0.6",
81-
"it-drain": "^3.0.5",
82-
"it-first": "^3.0.4",
83-
"it-to-buffer": "^4.0.5",
165+
"it-all": "^3.0.6",
166+
"it-buffer-stream": "^3.0.8",
167+
"it-drain": "^3.0.7",
168+
"it-first": "^3.0.6",
169+
"it-to-buffer": "^4.0.7",
84170
"merge-options": "^3.0.4",
85171
"readable-stream": "^4.5.2",
86172
"sinon": "^17.0.1",
87-
"uint8arrays": "^5.0.3",
173+
"uint8arrays": "^5.1.0",
88174
"wherearewe": "^2.0.1"
89175
},
90176
"browser": {

packages/ipfs-unixfs-importer/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ $ npm i ipfs-unixfs-importer
9292

9393
## Browser `<script>` tag
9494

95-
Loading this module through a script tag will make it's exports available as `IpfsUnixfsImporter` in the global namespace.
95+
Loading this module through a script tag will make its exports available as `IpfsUnixfsImporter` in the global namespace.
9696

9797
```html
9898
<script src="https://unpkg.com/ipfs-unixfs-importer/dist/index.min.js"></script>
@@ -106,8 +106,8 @@ Loading this module through a script tag will make it's exports available as `Ip
106106

107107
Licensed under either of
108108

109-
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
110-
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
109+
- Apache 2.0, ([LICENSE-APACHE](https://github.com/ipfs/js-ipfs-unixfs/blob/main/packages/ipfs-unixfs-importer/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
110+
- MIT ([LICENSE-MIT](https://github.com/ipfs/js-ipfs-unixfs/blob/main/packages/ipfs-unixfs-importer/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
111111

112112
# Contribute
113113

0 commit comments

Comments
 (0)