BigW Consortium Gitlab

  1. 30 Jan, 2018 4 commits
  2. 25 Jan, 2018 1 commit
  3. 24 Jan, 2018 2 commits
  4. 22 Jan, 2018 1 commit
  5. 18 Jan, 2018 1 commit
  6. 16 Jan, 2018 2 commits
  7. 15 Jan, 2018 4 commits
  8. 12 Jan, 2018 1 commit
  9. 11 Jan, 2018 2 commits
  10. 10 Jan, 2018 1 commit
  11. 09 Jan, 2018 1 commit
  12. 05 Jan, 2018 3 commits
  13. 22 Dec, 2017 1 commit
  14. 20 Dec, 2017 1 commit
  15. 19 Dec, 2017 1 commit
    • Load commit in batches for pipelines#index · c6edae38
      Zeger-Jan van de Weg authored
      Uses `list_commits_by_oid` on the CommitService, to request the needed
      commits for pipelines. These commits are needed to display the user that
      created the commit and the commit title.
      
      This includes fixes for tests failing that depended on the commit
      being `nil`. However, now these are batch loaded, this doesn't happen
      anymore and the commits are an instance of BatchLoader.
  16. 14 Dec, 2017 1 commit
  17. 13 Dec, 2017 2 commits
  18. 12 Dec, 2017 2 commits
  19. 07 Dec, 2017 1 commit
  20. 06 Dec, 2017 1 commit
  21. 01 Dec, 2017 1 commit
  22. 23 Nov, 2017 3 commits
  23. 21 Nov, 2017 2 commits
  24. 17 Nov, 2017 1 commit
    • Fix conflict highlighting · 64a9e53b
      Sean McGivern authored
      Conflicts used to take a `Repository` and pass that to
      `Gitlab::Highlight.highlight`, which would call `#gitattribute` on the
      repository. Now they use a `Gitlab::Git::Repository`, which didn't have that
      method defined - but defining it on `Gitlab::Git::Repository` does make it
      available on `Repository` through `method_missing`, so we can do that and both
      cases will work.