- 20 Jan, 2020 1 commit
-
-
Steven Allen authored
doc(release): move WebUI from manual tests to automated tests section
-
- 18 Jan, 2020 1 commit
-
-
Steven Allen authored
We no longer need to manually test the webui on release.
-
- 17 Jan, 2020 8 commits
-
-
Steven Allen authored
fix: use pre-defined relays for autorelay
-
Steven Allen authored
test(sharness): fix typo
-
Steven Allen authored
test: E2E tests against ipfs-webui HEAD
-
Steven Allen authored
-
Steven Allen authored
Co-Authored-By: Hugo Dias <hugomrdias@gmail.com>
-
Marcin Rataj authored
This adds interop/regression tests against ipfs-webui repo. License: MIT Signed-off-by: Marcin Rataj <lidel@lidel.org>
-
Steven Allen authored
Unfortunately, we don't currently have any way to pick out good relays from bad. That means we keep searching, trying bad relays, searching some more, trying _the same relays_, etc. until we randomly find 3 good stable relays. In practice, this means we just keep searching forever and keep thrashing the DHT. see https://github.com/libp2p/go-libp2p/issues/694
-
Steven Allen authored
mkreleaslog: improve edge-cases
-
- 16 Jan, 2020 10 commits
-
-
Steven Allen authored
We might as well generate as much of the changelog as we can.
-
Steven Allen authored
That is vX.Y.Z-0.DATE-HASH.
-
Steven Allen authored
fix: dont fail to collect profiles if no ipfs bin
-
Steven Allen authored
update dockerfile and use openssl
-
Oli Evans authored
License: MIT Signed-off-by: Oli Evans <oli@tableflip.io>
-
Oli Evans authored
Due to the bash args used, collect-profiles.sh would fail if which ipfs failed to find an ipfs binary on the path, like when running ipfs in docker. Fixes that by using a check for the command that wont error if it's not found. Also - adds a commment to explains when to use the script and what it does. - be less chatty. Simpify the output so it's clearer what it's doing. Experts can read the script or set the -x flag themselves. License: MIT Signed-off-by: Oli Evans <oli@tableflip.io>
-
Steven Allen authored
Otherwise, we inherit the permissions from the host machine. These depend on the host machine's umask.
-
Steven Allen authored
-
Steven Allen authored
-
Steven Allen authored
-
- 15 Jan, 2020 2 commits
-
-
Steven Allen authored
docs: define Gateway.PathPrefixes
-
Oli Evans authored
adds docs for Gateway.PathPrefixes. Taken from great commit notes by @lgierth (thank you!) https://github.com/ipfs/go-ipfs/commit/09937f84b64212896e1d80147f828d86ebc19d68
-
- 13 Jan, 2020 2 commits
-
-
Steven Allen authored
chore: remove github auto assign
-
Steven Allen authored
This was supposed to auto-assign reviewers to new PRs. However, it's really not all that helpful in practice.
-
- 10 Jan, 2020 4 commits
-
-
Steven Allen authored
fix(badgerds): turn off sync writes by default
-
Steven Allen authored
gateway cleanups
-
Steven Allen authored
License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
-
Steven Allen authored
License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
-
- 09 Jan, 2020 1 commit
-
-
Steven Allen authored
We already do this in the datastore _profile_, but we should do this in the plugin as well. I'm pretty sure this makes absolutely no difference.
-
- 08 Jan, 2020 3 commits
-
-
Steven Allen authored
make it possible to change the codec with the `ipfs cid` subcommand
-
Steven Allen authored
This will be useful when testing `refs local, `repo gc`, and `repo verify` commands once we store blocks by multihash instead of by CID. At that point, these commands will return raw v1 CIDs as the blockstore won't actually remember the codec used to store the block. Flags choice: * Ideally, we'd use the `-f, --format` flags like every other command but we're already using `-f` (format) for the format string. * Alternatively, I'd like to use `-c`. However, we're using _that_ for a global `--config` flag (bit of a waste given that it doesn't work...). `--codec` will have to do for now.
-
Steven Allen authored
-
- 06 Jan, 2020 8 commits
-
-
Steven Allen authored
improve gateway symlink handling
-
Steven Allen authored
-
Steven Allen authored
-
Steven Allen authored
-
Steven Allen authored
-
Steven Allen authored
We should be _resolving_ symlinks (sometimes, still need to figure out when to do this WRT IPNS). However, that's a larger feature.
-
Steven Allen authored
1. Require files to have known sizes. We can add support for unknown sizes _later_ but we can't use ServeContent for those files. 2. Replace the `sizeReadSeeker` with a `lazySeeker`. This one makes no assumptions about how it's used so we're less likely to run into weird bugs.
-
Steven Allen authored
-