1. 01 May, 2015 1 commit
  2. 28 Apr, 2015 1 commit
  3. 27 Apr, 2015 1 commit
  4. 20 Apr, 2015 14 commits
  5. 31 Mar, 2015 1 commit
  6. 14 Mar, 2015 10 commits
  7. 11 Mar, 2015 6 commits
  8. 09 Mar, 2015 1 commit
  9. 12 Feb, 2015 1 commit
  10. 04 Feb, 2015 2 commits
    • Brian Tiger Chow's avatar
      bbcbf46c
    • Brian Tiger Chow's avatar
      fix(repo/config) validate against struct before writing to disk · d1da1d40
      Brian Tiger Chow authored
      When setting config keys, the program doesn't know whether the
      key-to-be-modified exists on the Config struct. (Perhaps, with
      reflection, it is possible to find the field). To allow callers to write
      non-existent keys, the program would...
      
      Before:
      1) converts the in-memory *Config to a map
      2) sets the key on the map, and
      3) writes this map to disk.
      4) Then, it converts this map back into an in-memory struct.
      
      This commit swaps 3 and 4 so the map can be validated against the struct
      before being written to disk. This prevents the bug identified in #740.
      d1da1d40
  11. 03 Feb, 2015 1 commit
  12. 02 Feb, 2015 1 commit