1. 29 Jan, 2020 4 commits
  2. 28 Jan, 2020 1 commit
  3. 22 Jan, 2020 2 commits
  4. 21 Jan, 2020 2 commits
  5. 20 Jan, 2020 1 commit
  6. 18 Jan, 2020 1 commit
  7. 17 Jan, 2020 8 commits
  8. 16 Jan, 2020 10 commits
  9. 15 Jan, 2020 2 commits
  10. 13 Jan, 2020 2 commits
  11. 10 Jan, 2020 4 commits
  12. 09 Jan, 2020 1 commit
  13. 08 Jan, 2020 2 commits
    • Steven Allen's avatar
      Merge pull request #6817 from ipfs/feat/cid-codec-convert · 7d2f39b3
      Steven Allen authored
      make it possible to change the codec with the `ipfs cid` subcommand
      7d2f39b3
    • Steven Allen's avatar
      feat(commands/cid): add a flag for setting the codec · e58a32ab
      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.
      e58a32ab