Skip to content
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 ipfs v0.7.0 to v0.8.0 #112

Merged
merged 14 commits into from
Dec 8, 2020
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
fs-repo-migrations
ipfs-0-to-1/ipfs-0-to-1
ipfs-1-to-2/ipfs-1-to-2
ipfs-10-to-11/ipfs-10-to-11
sharness/bin/*
*~
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ os:
language: go

go:
- 1.13.x
- 1.14.x

env:
- TEST_VERBOSE=1
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test: test_go sharness

test_go:
go build -mod=vendor
go test -mod=vendor ./...
go test -mod=vendor $(shell go list ./... | grep -v /gx/)

sharness:
make -C sharness
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/ipfs/fs-repo-migrations

go 1.13
go 1.14

require golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa
9 changes: 9 additions & 0 deletions ipfs-10-to-11/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
OUTPUT ?= ./

.PHONY: all clean

all:
go build -o $(OUTPUT)

clean:
rm -f ipfs-10-to-11
2 changes: 2 additions & 0 deletions ipfs-10-to-11/_vendor/bazil.org/fuse/.gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions ipfs-10-to-11/_vendor/bazil.org/fuse/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

93 changes: 93 additions & 0 deletions ipfs-10-to-11/_vendor/bazil.org/fuse/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions ipfs-10-to-11/_vendor/bazil.org/fuse/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 35 additions & 0 deletions ipfs-10-to-11/_vendor/bazil.org/fuse/buffer.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions ipfs-10-to-11/_vendor/bazil.org/fuse/debug.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions ipfs-10-to-11/_vendor/bazil.org/fuse/error_darwin.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions ipfs-10-to-11/_vendor/bazil.org/fuse/error_freebsd.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions ipfs-10-to-11/_vendor/bazil.org/fuse/error_linux.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions ipfs-10-to-11/_vendor/bazil.org/fuse/error_std.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading