1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-26 07:28:20 +08:00

5006 Commits

Author SHA1 Message Date
4022d8b8bd Merge pull request #1885 from ipfs/fix/ndjson
put newlines between streaming json output objects
2015-10-27 06:24:02 -04:00
49684ea4aa Merge pull request #1890 from ipfs/fix/bitswapLogging
bitswap: clean log printf and humanize dup data count
2015-10-27 05:56:49 -04:00
fff95d6fff Merge pull request #1856 from ipfs/fix/id-self
allow ipfs id to work on self
2015-10-27 04:52:07 -04:00
2963d2e169 Merge pull request #1871 from ipfs/test-commands-flags
t0010: add tests for 'ipfs commands --flags'
2015-10-27 04:47:46 -04:00
356c353e1d Merge pull request #1882 from ipfs/fix/streaming-output
fix streaming output to flush per write
2015-10-27 01:33:29 -04:00
f130869b45 put newlines between streaming json output objects
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
2015-10-25 22:38:38 -07:00
9094345875 make swarm connect return an error when it fails
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
2015-10-25 13:15:14 -07:00
d5da16faf6 test/Makefile: add coverage target
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 12:34:40 +02:00
891b4c569e coverage_helper: better group long and short options
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 11:22:53 +02:00
c321f0626a coverage_helper: use 'ipfs commands --flags'
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 09:15:15 +02:00
e1ef4d6f54 coverage_helper: log found commands
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 06:49:33 +02:00
292ef427d0 coverage_helper: refactor matching commands
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 06:49:33 +02:00
46394ce452 coverage_helper: exclude variables definitions
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 06:49:33 +02:00
6291662b89 coverage_helper: output a result
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 06:49:33 +02:00
06c3a21c94 coverage_helper: match commands from both sources
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 06:49:33 +02:00
33c6df6827 coverage_helper: get commands from 'ipfs commands'
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 06:49:33 +02:00
5e3d3895f5 coverage_helper: refactor egreps
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 06:49:33 +02:00
106b841398 coverage_helper: remove grep commands
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 06:49:33 +02:00
5abf294cf7 coverage_helper: remove .ipfs
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 06:49:33 +02:00
741c0e5e50 coverage_helper: remove more cruft
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 06:49:33 +02:00
97a80e93ae Add first version of sharness_test_coverage_helper.sh
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-24 06:49:33 +02:00
aeeed0c72b bitswap: clean log printf and humanize dup data count
License: MIT
Signed-off-by: Henry <cryptix@riseup.net>
2015-10-23 08:33:50 +02:00
5dc2c7e010 add sharness test for streaming output from daemon
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
2015-10-21 15:01:51 -07:00
4470826fe2 fix streaming output to flush per write
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
2015-10-21 14:51:03 -07:00
0a0470d136 update gobuilder.yml to not break gobuilder
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
2015-10-21 10:24:58 -07:00
ad0792959e purposely fail builds pre1.5
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
2015-10-21 10:19:02 -07:00
795e24228c Merge pull request #1867 from ipfs/fix/mocknet-race
fix a few race conditions in mocknet
2015-10-20 12:48:13 -07:00
27eece3e81 Merge pull request #1835 from miolini/master
fix races in http cors
2015-10-20 12:47:06 -07:00
ded9b46045 Merge pull request #1869 from ipfs/fix-fuse-ipns
ipns_test: fix namesys.NewNameSystem() call
2015-10-20 12:25:04 -07:00
a79a9e7759 Merge pull request #1868 from ipfs/t0060-alternative-nc-fix
t0060: fail if no nc
2015-10-20 12:24:39 -07:00
8a3bf95365 t0010: add tests for 'ipfs commands --flags'
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-20 14:57:54 +02:00
9555ff110e ipns_test: fix namesys.NewNameSystem() call
There is the following erreor otherwise:

```
$ go test github.com/ipfs/go-ipfs/fuse/ipns
../../fuse/ipns/ipns_test.go:116: not enough arguments in call to namesys.NewNameSystem
FAIL    github.com/ipfs/go-ipfs/fuse/ipns [build failed]
```

License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-20 10:52:00 +02:00
c424b4d5ad t0060: fail if no nc
License: MIT
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
2015-10-20 10:00:56 +02:00
71288160b1 add small test to ensure ipfs id <self> works
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
2015-10-19 22:07:39 -07:00
289e74ce95 Merge pull request #1859 from rht/flag-order
Fix cli flag orders (long, short)
2015-10-19 21:12:20 -07:00
def4697852 fix a few race conditions in mocknet
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
2015-10-19 17:20:33 -07:00
dbeebe87a8 Merge pull request #1865 from ipfs/fix/makefile-sha
fix makefile failing when not in a git repo
2015-10-19 15:56:37 -07:00
6976ca7480 fix makefile failing when not in a git repo
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
2015-10-19 15:39:25 -07:00
057f0e281f Merge pull request #1748 from ipfs/bootstrap-pluto
config: update pluto's peerID
2015-10-19 14:46:57 -07:00
2af55452a6 Merge pull request #1862 from ipfs/feature/go-contrib-guidelines-link
Fix broken link
2015-10-19 12:47:44 -07:00
a872199714 config: update pluto's peerID
We lost its private key a while ago...

License: MIT
Signed-off-by: Lars Gierth <larsg@systemli.org>
2015-10-19 21:04:42 +02:00
e912612e1e config: update bootstrap list hostname
License: MIT
Signed-off-by: Lars Gierth <larsg@systemli.org>
2015-10-19 21:04:42 +02:00
7dcf92e0ce Fix broken link
License: MIT
Signed-off-by: Richard Littauer <richard.littauer@gmail.com>
2015-10-19 14:19:05 -04:00
c06479d703 Merge pull request #1861 from ipfs/feature/go-contrib-guidelines-link
Pared down contribute to link to new go guidelines
2015-10-19 11:11:47 -07:00
d90f2fd8fa Pared down contribute to link to new go guidelines
License: MIT
Signed-off-by: Richard Littauer <richard.littauer@gmail.com>
2015-10-19 10:54:11 -04:00
rht
916ae8d8df Add short flag for ipfs ls --headers (v for verbose)
License: MIT
Signed-off-by: rht <rhtbot@gmail.com>
2015-10-19 16:43:50 +07:00
rht
c091cf5abe Fix cli flag orders (long, short)
License: MIT
Signed-off-by: rht <rhtbot@gmail.com>
2015-10-19 12:53:23 +07:00
2afe4a4d23 ipfs version 0.3.8 changelog and version bump
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
v0.3.8
2015-10-18 19:51:53 -07:00
1cef170243 add small sharness test to make sure output happens
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
2015-10-18 19:50:15 -07:00
11104d401e system diagnostics command
License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
2015-10-18 19:50:15 -07:00