BigW Consortium Gitlab

  1. 07 Sep, 2017 1 commit
  2. 05 Sep, 2017 1 commit
    • Re-use issue/MR counts for the pagination system · 42062a45
      Yorick Peterse authored
      This changes the issue and MR index pages so the pagination system
      re-uses the output of the COUNT(*) query used to calculate the number of
      rows per state (opened, closed, etc). This removes the need for an
      additional COUNT(*) on both pages.
  3. 28 Aug, 2017 1 commit
  4. 19 Jul, 2017 1 commit
    • Fix issuable state caching · b3a588bc
      Sean McGivern authored
      We were including controller params in the cache key, so the key for the header
      didn't match the one for the list itself!
  5. 09 Jul, 2017 1 commit
  6. 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.
  7. 08 May, 2017 1 commit
  8. 04 May, 2017 1 commit
  9. 04 Apr, 2017 1 commit
  10. 21 Feb, 2017 1 commit
  11. 16 Feb, 2017 3 commits
  12. 09 Feb, 2017 1 commit
  13. 18 Nov, 2016 1 commit
  14. 22 Sep, 2016 1 commit
  15. 20 Sep, 2016 1 commit
  16. 18 Aug, 2016 1 commit
    • Handle legacy sort order values · d3acded4
      Sean McGivern authored
      The sort orders used to be id_asc / id_desc, and are now created_asc /
      created_desc. Users can still have cookies containing the old sort
      orders, or bookmarks to links specifying them, so convert these to the
      new versions quietly.
  17. 01 Aug, 2016 1 commit
    • State specific default sort order for issuables · 84a3225b
      zs authored
      Provide more sensible default sort order for issues and merge requests
      based on the following table:
      
      | type           | state  | default sort order |
      |----------------|--------|--------------------|
      | issues         | open   | last created       |
      | issues         | closed | last updated       |
      | issues         | all    | last created       |
      | merge requests | open   | last created       |
      | merge requests | merged | last updated       |
      | merge requests | closed | last updated       |
      | merge requests | all    | last created       |