BigW Consortium Gitlab

  1. 06 Jul, 2017 1 commit
    • Add table for merge request commits · aff5c9f3
      Sean McGivern authored
      This is an ID-less table with just three columns: an association to the merge
      request diff the commit belongs to, the relative order of the commit within the
      merge request diff, and the commit SHA itself.
      
      Previously we stored much more information about the commits, so that we could
      display them even when they were deleted from the repo. Since 8.0, we ensure
      that those commits are kept around for as long as the target repo itself is, so
      we don't need to duplicate that data in the database.
  2. 16 Jun, 2017 1 commit
    • Add table for files in merge request diffs · 9a73b634
      Sean McGivern authored
      This adds an ID-less table containing one row per file, per merge request
      diff. It has a column for each attribute on Gitlab::Git::Diff that is serialised
      currently, with the advantage that we can easily query the attributes of this
      new table.
      
      It does not migrate existing data, so we have fallback code when the legacy
      st_diffs column is present instead. For a merge request diff to be valid, it
      should have at most one of:
      
      * Rows in this new table, with the correct merge_request_diff_id.
      * A non-NULL st_diffs column.
      
      It may have neither, if the diff is empty.
  3. 14 Jun, 2017 1 commit
  4. 06 Jun, 2017 1 commit
  5. 23 Feb, 2017 5 commits
  6. 12 Jan, 2017 1 commit
  7. 01 Dec, 2016 1 commit
  8. 12 Oct, 2016 2 commits
  9. 11 Oct, 2016 2 commits
  10. 10 Oct, 2016 1 commit
    • Fix Error 500 when viewing old merge requests with bad diff data · d4fab17d
      Stan Hu authored
      Customers running old versions of GitLab may have MergeRequestDiffs with
      the text ["--broken diff"] due to text generated by gitlab_git 1.0.3.
      To avoid the Error 500, verify that each element is a type that gitlab_git
      will accept before attempting to create a DiffCollection.
      
      Closes #20776
  11. 22 Sep, 2016 1 commit
  12. 25 Aug, 2016 1 commit
  13. 03 Aug, 2016 1 commit
  14. 02 Aug, 2016 3 commits
  15. 11 Jul, 2016 1 commit
  16. 08 Jul, 2016 1 commit
    • Collapse large diffs by default · b6b26692
      Sean McGivern authored
      When rendering a list of diff files, skip those where the diff is over
      10 KB and provide an endpoint to render individually instead.