1. 31 Oct, 2017 14 commits
  2. 30 Oct, 2017 21 commits
  3. 28 Oct, 2017 2 commits
  4. 27 Oct, 2017 3 commits
    • Marcia Ramos's avatar
      Merge branch 'docs/update-create-mr' into 'master' · 1aae91cf
      Marcia Ramos authored
      Update docs on creating MRs
      
      See merge request gitlab-org/gitlab-ce!14982
      1aae91cf
    • Rémy Coutable's avatar
      Merge branch 'use-git-branch-merged-ee' into 'master' · 43371992
      Rémy Coutable authored
      EE: Fetch the merged branches at once
      
      See merge request gitlab-org/gitlab-ee!3204
      43371992
    • Rémy Coutable's avatar
      Merge branch 'use-git-branch-merged' into 'master' · dfd6c3f8
      Rémy Coutable authored
      Fetch the merged branches at once.
      
      Checking it one by one in the view. We don't cache this yet
      because this would already much improve the performance.
      
      A naive test against a particularly large repository:
      
      ``` ruby
      begin
        now = Time.now
        branches.map{ |b| r.merged_to_root_ref?(b.name) }
        Time.now - now
      end # 8.265830782
      ```
      
      Around 10 times faster:
      
      ``` ruby
      begin
        now = Time.now
        r.merged_branches(branches.map(&:name))
        Time.now - now
      end # 0.807405397
      ```
      
      This should make the branches page usable.
      
      See merge request gitlab-org/gitlab-ce!14729
      dfd6c3f8