1. 15 3月, 2018 1 次提交
  2. 07 3月, 2018 1 次提交
  3. 30 1月, 2018 1 次提交
  4. 29 1月, 2018 2 次提交
  5. 25 1月, 2018 1 次提交
    • N
      Look at notes created just before merge when deciding if an MR can be reverted · b02f9b61
      Nick Thomas 提交于
      On MySQL, at least, `Note#created_at` doesn't seem to store fractional seconds,
      while `MergeRequest::Metrics#merged_at` does. This breaks the optimization
      assumption that we only need to search for notes created *after* the MR has
      been merged.
      
      Unsynchronized system clocks also make this a dangerous assumption to make.
      
      Adding a minute of leeway still optimizes away most notes, but allows both
      cases to be handled more gracefully. If the system clocks are more than a
      minute out, we'll still be broken, of course.
      b02f9b61
  6. 24 1月, 2018 2 次提交
  7. 13 1月, 2018 1 次提交
  8. 12 1月, 2018 1 次提交
    • S
      Only search for MR revert commits on notes after MR was merged · f3cf8cc8
      Sean McGivern 提交于
      If we search for notes before the MR was merged, we have to load every commit
      that was ever part of the MR, or mentioned in a push. In extreme cases, this can
      be tens of thousands of commits to load, but we know they can't revert the merge
      commit, because they are from before the MR was merged.
      
      In the (rare) case that we don't have a `merged_at` value for the MR, we can
      still search all notes.
      f3cf8cc8
  9. 10 1月, 2018 1 次提交
  10. 09 1月, 2018 1 次提交
  11. 05 1月, 2018 1 次提交
    • J
      Backport 'Rebase' feature from EE to CE · 27a75ea1
      Jan Provaznik 提交于
      When a project uses fast-forward merging strategy user has
      to rebase MRs to target branch before it can be merged.
      Now user can do rebase in UI by clicking 'Rebase' button
      instead of doing rebase locally.
      
      This feature was already present in EE, this is only backport
      of the feature to CE. Couple of changes:
      * removed rebase license check
      * renamed migration (changed timestamp)
      
      Closes #40301
      27a75ea1
  12. 03 1月, 2018 1 次提交
  13. 22 12月, 2017 1 次提交
  14. 14 12月, 2017 1 次提交
    • Z
      Clear caches before updating MR diffs · 8ad41255
      Zeger-Jan van de Weg 提交于
      The hook ordering influenced the diffs being generated as these used
      values from before the update due to the memoization still being in
      place. This commit reorders them and tests against this behaviour.
      8ad41255
  15. 13 12月, 2017 1 次提交
  16. 12 12月, 2017 1 次提交
    • Z
      Use memoization for commits on diffs · 3ab026b7
      Zeger-Jan van de Weg 提交于
      The Gitaly CommitService is being hammered by n + 1 calls, mostly when
      finding commits. This leads to this gRPC being turned of on production:
      https://gitlab.com/gitlab-org/gitaly/issues/514#note_48991378
      
      Hunting down where it came from, most of them were due to
      MergeRequest#show. To prove this, I set a script to request the
      MergeRequest#show page 50 times. The GDK was being scraped by
      Prometheus, where we have metrics on controller#action and their Gitaly
      calls performed. On both occations I've restarted the full GDK so all
      caches had to be rebuild.
      
      Current master, 806a68a8, needed 435 requests
      After this commit, 154 requests
      3ab026b7
  17. 07 12月, 2017 1 次提交
  18. 06 12月, 2017 1 次提交
    • Y
      Throttle the number of UPDATEs triggered by touch · 856447cc
      Yorick Peterse 提交于
      This throttles the number of UPDATE queries that can be triggered by
      calling "touch" on a Note, Issue, or MergeRequest. For Note objects we
      also take care of updating the associated "noteable" relation in a
      smarter way than Rails does by default.
      856447cc
  19. 05 12月, 2017 4 次提交
  20. 29 11月, 2017 1 次提交
    • S
      Ensure MRs always use branch refs for comparison · 3c6a4d63
      Sean McGivern 提交于
      If a merge request was created with a branch name that also matched a tag name,
      we'd generate a comparison to or from the tag respectively, rather than the
      branch. Merging would still use the branch, of course.
      
      To avoid this, ensure that when we get the branch heads, we prepend the
      reference prefix for branches, which will ensure that we generate the correct
      comparison.
      3c6a4d63
  21. 23 11月, 2017 1 次提交
    • S
      Use latest_merge_request_diff association · 991bf24e
      Sean McGivern 提交于
      Compared to the merge_request_diff association:
      
      1. It's simpler to query. The query uses a foreign key to the
         merge_request_diffs table, so no ordering is necessary.
      2. It's faster for preloading. The merge_request_diff association has to load
         every diff for the MRs in the set, then discard all but the most recent for
         each. This association means that Rails can just query for N diffs from N
         MRs.
      3. It's more complicated to update. This is a bidirectional foreign key, so we
         need to update two tables when adding a diff record. This also means we need
         to handle this as a special case when importing a GitLab project.
      
      There is some juggling with this association in the merge request model:
      
      * `MergeRequest#latest_merge_request_diff` is _always_ the latest diff.
      * `MergeRequest#merge_request_diff` reuses
        `MergeRequest#latest_merge_request_diff` unless:
          * Arguments are passed. These are typically to force-reload the association.
          * It doesn't exist. That means we might be trying to implicitly create a
            diff. This only seems to happen in specs.
          * The association is already loaded. This is important for the reasons
            explained in the comment, which I'll reiterate here: if we a) load a
            non-latest diff, then b) get its `merge_request`, then c) get that MR's
            `merge_request_diff`, we should get the diff we loaded in c), even though
            that's not the latest diff.
      
      Basically, `MergeRequest#merge_request_diff` is the latest diff in most cases,
      but not quite all.
      991bf24e
  22. 13 11月, 2017 1 次提交
  23. 12 11月, 2017 1 次提交
  24. 06 11月, 2017 1 次提交
  25. 03 11月, 2017 1 次提交
    • M
      removed the #ensure_ref_fetched from all controllers · cd88fa8f
      micael.bergeron 提交于
      also, I refactored the MergeRequest#fetch_ref method to express
      the side-effect that this method has.
      
        MergeRequest#fetch_ref -> MergeRequest#fetch_ref!
        Repository#fetch_source_branch -> Repository#fetch_source_branch!
      cd88fa8f
  26. 28 10月, 2017 1 次提交
  27. 27 10月, 2017 1 次提交
    • Z
      Cache commits on the repository model · 3411fef1
      Zeger-Jan van de Weg 提交于
      Now, when requesting a commit from the Repository model, the results are
      not cached. This means we're fetching the same commit by oid multiple times
      during the same request. To prevent us from doing this, we now cache
      results. Caching is done only based on object id (aka SHA).
      
      Given we cache on the Repository model, results are scoped to the
      associated project, eventhough the change of two repositories having the
      same oids for different commits is small.
      3411fef1
  28. 13 10月, 2017 1 次提交
  29. 12 10月, 2017 1 次提交
  30. 09 10月, 2017 2 次提交
  31. 07 10月, 2017 2 次提交
  32. 04 10月, 2017 1 次提交
  33. 06 9月, 2017 1 次提交