- 25 Mar, 2020 6 commits
-
-
Steven Allen authored
This isn't a real autonat test, but it's a regression test to make sure we don't blatantly break this.
-
Steven Allen authored
Specifically, fix an autonat issue where the service wouldn't actually start.
-
Steven Allen authored
chore(deps): bump github.com/ipfs/go-log from 1.0.2 to 1.0.3
-
Steven Allen authored
Forgotten go-fmt
-
Peter Rabbitson authored
Not sure why CI didn't catch this
-
dependabot-preview[bot] authored
Bumps [github.com/ipfs/go-log](https://github.com/ipfs/go-log) from 1.0.2 to 1.0.3. - [Release notes](https://github.com/ipfs/go-log/releases) - [Commits](https://github.com/ipfs/go-log/compare/v1.0.2...v1.0.3) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
- 24 Mar, 2020 11 commits
-
-
Steven Allen authored
feat: update go-libp2p & go-bitswap
-
Steven Allen authored
Uses the new libp2p AutoNAT option.
-
Steven Allen authored
chore(deps): bump github.com/ipfs/go-blockservice from 0.1.2 to 0.1.3
-
Steven Allen authored
Merge pull request #7026 from ipfs/dependabot/go_modules/github.com/libp2p/go-libp2p-peerstore-0.2.1 chore(deps): bump github.com/libp2p/go-libp2p-peerstore from 0.2.0 to 0.2.1
-
dependabot-preview[bot] authored
Bumps [github.com/libp2p/go-libp2p-peerstore](https://github.com/libp2p/go-libp2p-peerstore) from 0.2.0 to 0.2.1. - [Release notes](https://github.com/libp2p/go-libp2p-peerstore/releases) - [Commits](https://github.com/libp2p/go-libp2p-peerstore/compare/v0.2.0...v0.2.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [github.com/ipfs/go-blockservice](https://github.com/ipfs/go-blockservice) from 0.1.2 to 0.1.3. - [Release notes](https://github.com/ipfs/go-blockservice/releases) - [Commits](https://github.com/ipfs/go-blockservice/compare/v0.1.2...v0.1.3) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
Steven Allen authored
Introducing EncodedFSKeystore with base32 encoding (#5947)
-
Steven Allen authored
-
Hector Sanjuan authored
* Use Go's base32 library * Set repo to version 9 * Resolve linting problems and docs. * Merge EncodedFSKeystore into FSKeystore * Remove name limitations and adjust tests
-
Adam Uhlir authored
Encoding the key's filename with base32 introduces coherent behaviour across different platforms and their case-sensitive/case-insensitive file-systems. Moreover it allows wider character set to be used for the name of the keys as the original restriction for special FS's characters (e.g. '/', '.') will not apply. License: MIT Signed-off-by: Adam Uhlir <uhlir.a@gmail.com>
-
Steven Allen authored
chore: update hard-coded dist URL for repo migrations
-
- 23 Mar, 2020 3 commits
-
-
Steven Allen authored
feat: improve key lookup
-
Steven Allen authored
-
Steven Allen authored
* Support peer IDs encoded as CIDs. * Support looking up the identity key by peer ID.
-
- 20 Mar, 2020 2 commits
-
-
Steven Allen authored
feat(file-ignore): add ignore opts to add cmd
-
Cornelius Toole authored
- add the `gitignore` or `ignore options to the add command
-
- 19 Mar, 2020 4 commits
-
-
Steven Allen authored
chore(deps): bump github.com/ipfs/go-bitswap from 0.2.4 to 0.2.5
-
dependabot-preview[bot] authored
Bumps [github.com/ipfs/go-bitswap](https://github.com/ipfs/go-bitswap) from 0.2.4 to 0.2.5. - [Release notes](https://github.com/ipfs/go-bitswap/releases) - [Commits](https://github.com/ipfs/go-bitswap/compare/v0.2.4...v0.2.5) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
Steven Allen authored
chore(deps): bump github.com/libp2p/go-libp2p from 0.6.0 to 0.6.1
-
dependabot-preview[bot] authored
Bumps [github.com/libp2p/go-libp2p](https://github.com/libp2p/go-libp2p) from 0.6.0 to 0.6.1. - [Release notes](https://github.com/libp2p/go-libp2p/releases) - [Changelog](https://github.com/libp2p/go-libp2p/blob/master/NEWS.md) - [Commits](https://github.com/libp2p/go-libp2p/compare/v0.6.0...v0.6.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
- 18 Mar, 2020 9 commits
-
-
Steven Allen authored
chore: update dependencies
-
Steven Allen authored
-
Steven Allen authored
feat: gateway subdomains + http proxy mode
-
Steven Allen authored
-
Marcin Rataj authored
When request is sent to http://localhost:8080/ipfs/$cid response has HTTP 301 status code and "Location" header with redirect destination at $cid.ipfs.localhost:8080 Redirect is followed by browsersi, but not by commandline tools. Status 301 is ignored by curl in default mode: it will print response and won't follow redirect, user needs to add -L for that. To fix curl, we return correct payload in body of HTTP 301 response, but set Clear-Site-Data header to ensure Origin sandbox can't be abused. This requires a surgical workaround: If Location header is present in ResponseWriter's Header map, we ensure http.ServeContent() returns HTTP 301 Context: https://github.com/ipfs/go-ipfs/pull/6982 License: MIT Signed-off-by: Marcin Rataj <lidel@lidel.org>
-
Marcin Rataj authored
License: MIT Signed-off-by: Marcin Rataj <lidel@lidel.org>
-
Marcin Rataj authored
Allows static DNSLink mappings with IPFS_NS_MAP. License: MIT Signed-off-by: Marcin Rataj <lidel@lidel.org>
-
Steven Allen authored
Instead of adding a new fake header (that could be spoofed by the client...), just read the original request URI from the request object. This also removes support for suborigins. They have never been implemented in browsers and it looks like efforts have stalled. We can add support back if we need it but, well, maintaining support was going to be more trouble than it was worth. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
-
Steven Allen authored
(we're implementing an _actual_ proxy) License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
-
- 17 Mar, 2020 3 commits
-
-
Steven Allen authored
Chore/sharness fixes 2019 03 16
-
Steven Allen authored
Support pipes when named on the cli explicitly
-
Peter Rabbitson authored
Still throws an error when a pipe is encountered during directory recursion
-
- 16 Mar, 2020 2 commits
-
-
Steven Allen authored
chore(dep): update bitswap
-
Steven Allen authored
* better logging * `ipfs bitswap wantlist` now returns both want-haves and want-blocks.
-