1. 15 Feb, 2015 6 commits
  2. 12 Feb, 2015 1 commit
  3. 05 Feb, 2015 1 commit
  4. 04 Feb, 2015 4 commits
  5. 03 Feb, 2015 3 commits
  6. 02 Feb, 2015 1 commit
  7. 01 Feb, 2015 1 commit
    • Juan Batiz-Benet's avatar
      bootstrap: use ipfsaddr for boostrap peers · 29bf59dd
      Juan Batiz-Benet authored
       this commit makes your current configs unusable, as the
      default bootstrap peers. You may need to edit your config.
      
      Go from:
      
      ```js
      Bootstrap: [
        {
          "Address": "/ip4/104.131.131.82/tcp/4001",
          "PeerID": "QmaCpDMGvV2BGHeYERUEnRQAwe3N8SzbUtfsmvsqQLuvuJ"
        }
      ]
      ```
      
      To:
      ```js
      Bootstrap: [
        "/ip4/104.131.131.82/tcp/4001/ipfs/QmaCpDMGvV2BGHeYERUEnRQAwe3N8SzbUtfsmvsqQLuvuJ"
      ]
      ```
      29bf59dd
  8. 31 Jan, 2015 2 commits
  9. 29 Jan, 2015 2 commits
  10. 28 Jan, 2015 1 commit
  11. 27 Jan, 2015 1 commit
  12. 24 Jan, 2015 3 commits
  13. 22 Jan, 2015 1 commit
  14. 20 Jan, 2015 1 commit
  15. 18 Jan, 2015 3 commits
  16. 15 Jan, 2015 2 commits
    • Brian Tiger Chow's avatar
      fix(fsrepo/datastore) allow goroutines to share the datastore. · bc76d2e5
      Brian Tiger Chow authored
      doh! I forgot to make sure leveldb is only opened once. thanks for catching this @mappum
      
      * You may be wondering why we don't just share pointers to FSRepos. We
        want to manage the lifecycle of the FSRepo by tracking its `state`.
        Thus each FSRepo/goroutine requires private instance variables. For
        this reason, each `fsrepo.At(p)` caller must get its own goroutine.
      
      * There's a test in `fsrepo` because callers desire the ability to Open
        from multiple goroutines. There's a test in `component` because this
        is where the actual work needs to go in order to provide the desired
        contract. If the `component` package moves, the assurances need to
        move along with it.
      
      cc @whyrusleeping @jbenet
      
      side note: there are a couple packages in FSRepo that it might be
      worthwhile to extract once the dust settles on this feature-set.
      bc76d2e5
    • Brian Tiger Chow's avatar
      refactor(fsrepo/test) extract assert · 440de64d
      Brian Tiger Chow authored
      @jbenet will move in upcoming branch/PR
      440de64d
  17. 14 Jan, 2015 7 commits