- 14 5月, 2019 2 次提交
-
-
License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于 -
fix setting ulimit
由 Steven Allen 提交于
-
- 13 5月, 2019 5 次提交
-
-
License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于 -
switch to base32 by default for CIDv1
由 Steven Allen 提交于 -
License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于 -
fixes #6220 License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于 -
cmdkit -> cmds
由 Steven Allen 提交于
-
- 11 5月, 2019 2 次提交
-
-
Not sure why CI wasn't failing. License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于 -
License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于
-
- 10 5月, 2019 1 次提交
-
-
raise default fd limit to 8192
由 Steven Allen 提交于
-
- 09 5月, 2019 16 次提交
-
-
pin: don't walk all pinned blocks when removing a non-existent pin
由 Steven Allen 提交于 -
Update to latest go-mfs
由 Steven Allen 提交于 -
dep: update goprocess
由 Steven Allen 提交于 -
Fixes some panics. License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于 -
ping: fix a bunch of issues
由 Steven Allen 提交于 -
fixes https://github.com/ipfs/go-mfs/issues/75 License: MIT Signed-off-by:
Steven Allen <steven@stebalien.com>
由 Erik Ingenito 提交于 -
test(coreapi): use a thread-safe datastore everywhere
由 Steven Allen 提交于 -
fix(Dockerfile): Allow ipfs mount in Docker container
由 Steven Allen 提交于 -
fixes #4329 License: MIT Signed-off-by:hannahhoward <hannah@hannahhoward.net>
由 hannahhoward 提交于 -
License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于 -
License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于 -
(fixes double printing of errors) License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于 -
Use PingResult errors for errors attached to individual pings. This is a (minor) BREAKING CHANGE. License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于 -
(this should always have been done on the client, IMO, but, oh well...) License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于 -
fixes #6298 License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于 -
We do this _just_ to make the error nicer but it's really slow. Additionally, we do it while holding the pin lock, blocking all other pin operations. fixes #6295 License: MIT Signed-off-by:Steven Allen <steven@stebalien.com>
由 Steven Allen 提交于
-
- 08 5月, 2019 3 次提交
-
-
docs: fix Routing section
由 Steven Allen 提交于 -
Updated docs to reflect that Routing is not a child of Discovery Ref. https://github.com/ipfs/go-ipfs-config/blob/664ccd976e969e78364720ec5f1d1544bc99305f/routing.go#L6 License: MIT Signed-off-by:
Marcin Rataj <lidel@lidel.org>
由 Marcin Rataj 提交于 -
由 Erik Ingenito 提交于
-
- 06 5月, 2019 7 次提交
-
-
License update to dual MIT and Apache 2
由 Steven Allen 提交于 -
transitional comments
由 MollyM 提交于 -
moving to copyright file
由 MollyM 提交于 -
described here: https://github.com/ipfs/team-mgmt/issues/849
由 MollyM 提交于 -
由 MollyM 提交于
-
由 MollyM 提交于
-
This series of commits aims to update go-ipfs to follow a dual-licensing best practice based on research into open-source licensing by @ianjdarrow. He recommends a dual MIT and Apache 2.0 license - > This has two major benefits: > - There are concerns in the open source community about whether the MIT license leaves users vulnerable to patent infringement claims. We think the pure legal risk is small, but the way the open source community interacts with our project is really important. It makes sense to pick the license that makes the largest number of people comfortable. - There's now no reason to adopt a separate DCO, since the Apache-2 license grant addresses the same issue. > Why use a dual license, instead of just Apache-2? The Apache-2 license is incompatible with the GPLv2 license, which includes things like the Linux kernel. With a dual license, GPLv2 projects can just use the MIT license instead. Our goal is to make our software available to as many projects as possible, so we'd rather adopt a licensing scheme that doesn't exclude anyone. In addition to these commits, we also need to get an explicit OK from current and past contributors to give their consent to relicensing - which will happen in an issue thread.
由 MollyM 提交于
-
- 03 5月, 2019 1 次提交
-
-
Go test fix
由 Steven Allen 提交于
-
- 02 5月, 2019 3 次提交
-
-
In TestExternalUnmount, the Mount function is called which returns an error which can be nil. The error type is then used in a comparison where Error() is called on it. If the error is nil, this results in a panic. Added a if err != nil {} guard to make sure that Error() is not called if the value is nil On branch go-test-fix Changes to be committed: modified: fuse/node/mount_test.go License: MIT Signed-off-by:Chris Buesser <christopher.buesser@gmail.com>
由 Christopher Buesser 提交于 -
This commit fixes the errors resulting from passing a nil pointer to the core.NewNode function in TestExternalUnmmount and setupIpnsTest. In the previous nil's place a &core.BuildCfg{} is now passed. Both changes follow the same pattern: ```diff - node, err = core.NewNode(context.Background(), nil) + node, err = core.NewNode(context.Background(), &core.BuildCfg{}) ``` On branch go-test-fix Changes to be committed: modified: fuse/ipns/ipns_test.go modified: fuse/node/mount_test.go License: MIT Signed-off-by:Chris Buesser <christopher.buesser@gmail.com>
由 Christopher Buesser 提交于 -
commands(pin update): return resolved CIDs instead of paths
由 Steven Allen 提交于
-