generated from ipfs/ipfs-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 100
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
Migrate go-unixfsnode #25
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This commit was moved from ipfs/go-unixfsnode@05d5109
This commit was moved from ipfs/go-unixfsnode@f2af51a
add builders and utitlities for working with unixfs data protobufs This commit was moved from ipfs/go-unixfsnode@4574e41
Add HAMT Implementation + Shared iterator to use with basic directory This commit was moved from ipfs/go-unixfsnode@cdb32f2
move basic directory to its own package, redo root package based on more flexible refication and more flexible node prototype This commit was moved from ipfs/go-unixfsnode@67a7e38
have reifier add path selection to all protobuf nodes, even ones that are not unixfs This commit was moved from ipfs/go-unixfsnode@d6733f6
respond to PR comments -- make error types, etc This commit was moved from ipfs/go-unixfsnode@1854f92
Use ipld-primes reifier to avoid uncomfortable node prototype stuff This commit was moved from ipfs/go-unixfsnode@de45652
This commit was moved from ipfs/go-unixfsnode@e56e007
Support HAMT This commit was moved from ipfs/go-unixfsnode@5a89cd4
This commit was moved from ipfs/go-unixfsnode@37e399d
The generated code now passes vet and fmt. Three vet warnings remain, but outside generated code. This commit was moved from ipfs/go-unixfsnode@db2fdc8
data: update ipld-prime version to fix codegen issues This commit was moved from ipfs/go-unixfsnode@e588e31
This commit was moved from ipfs/go-unixfsnode@8c33d56
fix staticcheck This commit was moved from ipfs/go-unixfsnode@6e93862
This commit was moved from ipfs/go-unixfsnode@afd1273
sync: update CI config files This commit was moved from ipfs/go-unixfsnode@852c148
* make UnixFSHAMTShard implement the ADL interface * add checks that UnixFSBasicDir and PathedPBNode implement the ADL interface This commit was moved from ipfs/go-unixfsnode@c7f1fe6
* Add builder for unixfs chunked files and directories This commit was moved from ipfs/go-unixfsnode@e0bbe4a
* Add ADL/single-node-view for unixFS files. This commit was moved from ipfs/go-unixfsnode@ef86491
This commit was moved from ipfs/go-unixfsnode@b9b6e9d
fix #16 This commit was moved from ipfs/go-unixfsnode@d21ca04
This commit was moved from ipfs/go-unixfsnode@b2ae22e
This commit was moved from ipfs/go-unixfsnode@c487b3d
Update deps for ADL selectors This commit was moved from ipfs/go-unixfsnode@1a8e71b
This commit was moved from ipfs/go-unixfsnode@981d684
This commit was moved from ipfs/go-unixfsnode@bbf0ec6
This commit was moved from ipfs/go-unixfsnode@d3fccee
* add AsLargeBytes support to unixfs files This commit was moved from ipfs/go-unixfsnode@94986a7
fix the selector for paths, wrapping the last matcher node in an ExploreInterpretAs, since the tail end of a path into a unixfs dir is itself a unixfsnode This commit was moved from ipfs/go-unixfsnode@9214f70
…big for CI This commit was moved from ipfs/go-unixfsnode@05a4b16
test for reader / sizing behavior on large files This commit was moved from ipfs/go-unixfsnode@1fca571
This commit was moved from ipfs/go-unixfsnode@d076d37
This commit was moved from ipfs/go-unixfsnode@c65306a
This commit was moved from ipfs/go-unixfsnode@4afe29f
This commit was moved from ipfs/go-unixfsnode@e95359d
This commit was moved from ipfs/go-unixfsnode@04e6d4d
Co-authored-by: Rod Vagg <rod@vagg.org> This commit was moved from ipfs/go-unixfsnode@79130b4
This commit was moved from ipfs/go-unixfsnode@f9e443f
add an ADL to preload hamt loading This commit was moved from ipfs/go-unixfsnode@475ed65
This commit was moved from ipfs/go-unixfsnode@3771b58
fix a possible `index out of range` crash This commit was moved from ipfs/go-unixfsnode@30b9fb2
hacdias
requested review from
guseggert and
ajnavarro
and removed request for
guseggert
January 12, 2023 11:11
ajnavarro
approved these changes
Jan 12, 2023
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See #26. Moved into the subdirectory
unixfs/node
. My thoguhts is that we could makego-unixfs
go intounixfs
,unixfs/unixfs
orunixfs/impl
.