Skip to content

Commit 5d3f4bd

Browse files
committed
chore: publish
- ipfs-unixfs-exporter@3.0.0 - ipfs-unixfs-importer@3.0.0 - ipfs-unixfs@2.0.0
1 parent 692b367 commit 5d3f4bd

File tree

6 files changed

+74
-7
lines changed

6 files changed

+74
-7
lines changed

packages/ipfs-unixfs-exporter/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.0.0](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-exporter@2.0.1...ipfs-unixfs-exporter@3.0.0) (2020-07-28)
7+
8+
9+
### Bug Fixes
10+
11+
* ignore high mode bits passed to constructor ([#53](https://github.com/ipfs/js-ipfs-unixfs/issues/53)) ([8e8d83d](https://github.com/ipfs/js-ipfs-unixfs/commit/8e8d83d757276be7e1cb2581abd4b562cb8209e2))
12+
13+
14+
### chore
15+
16+
* remove node buffers from runtime code ([#66](https://github.com/ipfs/js-ipfs-unixfs/issues/66)) ([db60a42](https://github.com/ipfs/js-ipfs-unixfs/commit/db60a4232e600e73227e6ab8964be083eada389a))
17+
* upgrade to dag-pb that supports Uint8Array ([#65](https://github.com/ipfs/js-ipfs-unixfs/issues/65)) ([b8b2ee3](https://github.com/ipfs/js-ipfs-unixfs/commit/b8b2ee324f17c4bb8a7931761aee02d1635b6ca2))
18+
19+
20+
### BREAKING CHANGES
21+
22+
* does not convert input to node Buffers any more, uses Uint8Arrays instead
23+
* dag-pb Links property now returns DAGLink objects
24+
25+
26+
27+
28+
629
## [2.0.1](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-exporter@2.0.0...ipfs-unixfs-exporter@2.0.1) (2020-04-24)
730

831

packages/ipfs-unixfs-exporter/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-unixfs-exporter",
3-
"version": "2.0.1",
3+
"version": "3.0.0",
44
"description": "JavaScript implementation of the UnixFs exporter used by IPFS",
55
"leadMaintainer": "Alex Potsides <alex.potsides@protocol.ai>",
66
"main": "src/index.js",
@@ -42,7 +42,7 @@
4242
"chai-as-promised": "^7.1.1",
4343
"detect-node": "^2.0.4",
4444
"dirty-chai": "^2.0.1",
45-
"ipfs-unixfs-importer": "^2.0.1",
45+
"ipfs-unixfs-importer": "^3.0.0",
4646
"ipld": "^0.26.1",
4747
"ipld-dag-pb": "^0.19.0",
4848
"ipld-in-memory": "^5.0.0",
@@ -57,7 +57,7 @@
5757
"cids": "^0.8.0",
5858
"err-code": "^2.0.0",
5959
"hamt-sharding": "^1.0.0",
60-
"ipfs-unixfs": "^1.0.2",
60+
"ipfs-unixfs": "^2.0.0",
6161
"ipfs-utils": "^2.3.1",
6262
"it-last": "^1.0.1",
6363
"multihashing-async": "^1.0.0"

packages/ipfs-unixfs-importer/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.0.0](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-importer@2.0.1...ipfs-unixfs-importer@3.0.0) (2020-07-28)
7+
8+
9+
### Bug Fixes
10+
11+
* ignore high mode bits passed to constructor ([#53](https://github.com/ipfs/js-ipfs-unixfs/issues/53)) ([8e8d83d](https://github.com/ipfs/js-ipfs-unixfs/commit/8e8d83d757276be7e1cb2581abd4b562cb8209e2))
12+
13+
14+
### chore
15+
16+
* remove node buffers from runtime code ([#66](https://github.com/ipfs/js-ipfs-unixfs/issues/66)) ([db60a42](https://github.com/ipfs/js-ipfs-unixfs/commit/db60a4232e600e73227e6ab8964be083eada389a))
17+
* upgrade to dag-pb that supports Uint8Array ([#65](https://github.com/ipfs/js-ipfs-unixfs/issues/65)) ([b8b2ee3](https://github.com/ipfs/js-ipfs-unixfs/commit/b8b2ee324f17c4bb8a7931761aee02d1635b6ca2))
18+
19+
20+
### BREAKING CHANGES
21+
22+
* does not convert input to node Buffers any more, uses Uint8Arrays instead
23+
* dag-pb Links property now returns DAGLink objects
24+
25+
26+
27+
28+
629
## [2.0.1](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-importer@2.0.0...ipfs-unixfs-importer@2.0.1) (2020-04-24)
730

831

packages/ipfs-unixfs-importer/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-unixfs-importer",
3-
"version": "2.0.1",
3+
"version": "3.0.0",
44
"description": "JavaScript implementation of the UnixFs importer used by IPFS",
55
"leadMaintainer": "Alex Potsides <alex.potsides@protocol.ai>",
66
"main": "src/index.js",
@@ -41,7 +41,7 @@
4141
"cids": "^0.8.0",
4242
"detect-node": "^2.0.4",
4343
"dirty-chai": "^2.0.1",
44-
"ipfs-unixfs-exporter": "^2.0.1",
44+
"ipfs-unixfs-exporter": "^3.0.0",
4545
"ipld": "^0.26.1",
4646
"ipld-in-memory": "^5.0.0",
4747
"it-buffer-stream": "^1.0.2",
@@ -55,7 +55,7 @@
5555
"bl": "^4.0.0",
5656
"err-code": "^2.0.0",
5757
"hamt-sharding": "^1.0.0",
58-
"ipfs-unixfs": "^1.0.2",
58+
"ipfs-unixfs": "^2.0.0",
5959
"ipfs-utils": "^2.3.1",
6060
"ipld-dag-pb": "^0.19.0",
6161
"it-all": "^1.0.1",

packages/ipfs-unixfs/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs@1.0.2...ipfs-unixfs@2.0.0) (2020-07-28)
7+
8+
9+
### Bug Fixes
10+
11+
* ignore high mode bits passed to constructor ([#53](https://github.com/ipfs/js-ipfs-unixfs/issues/53)) ([8e8d83d](https://github.com/ipfs/js-ipfs-unixfs/commit/8e8d83d757276be7e1cb2581abd4b562cb8209e2))
12+
13+
14+
### chore
15+
16+
* remove node buffers from runtime code ([#66](https://github.com/ipfs/js-ipfs-unixfs/issues/66)) ([db60a42](https://github.com/ipfs/js-ipfs-unixfs/commit/db60a4232e600e73227e6ab8964be083eada389a))
17+
18+
19+
### BREAKING CHANGES
20+
21+
* does not convert input to node Buffers any more, uses Uint8Arrays instead
22+
23+
24+
25+
26+
627
## [1.0.2](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs@1.0.1...ipfs-unixfs@1.0.2) (2020-04-24)
728

829

packages/ipfs-unixfs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-unixfs",
3-
"version": "1.0.2",
3+
"version": "2.0.0",
44
"description": "JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)",
55
"leadMaintainer": "Alex Potsides <alex.potsides@protocol.ai>",
66
"main": "src/index.js",

0 commit comments

Comments
 (0)