1. 04 9月, 2020 1 次提交
  2. 28 8月, 2020 1 次提交
  3. 17 8月, 2020 1 次提交
  4. 19 6月, 2020 1 次提交
  5. 28 5月, 2020 1 次提交
  6. 11 5月, 2020 1 次提交
  7. 28 3月, 2020 1 次提交
  8. 26 3月, 2020 1 次提交
  9. 23 3月, 2020 1 次提交
  10. 18 2月, 2020 1 次提交
  11. 14 2月, 2020 1 次提交
  12. 29 1月, 2020 1 次提交
  13. 19 12月, 2019 1 次提交
  14. 11 12月, 2019 1 次提交
  15. 06 12月, 2019 1 次提交
  16. 11 11月, 2019 1 次提交
  17. 17 10月, 2019 1 次提交
  18. 10 10月, 2019 3 次提交
  19. 13 9月, 2019 1 次提交
  20. 06 3月, 2019 1 次提交
  21. 18 2月, 2019 1 次提交
    • R
      Fix Projects::MergeRequests::DiffsController specs · 45ce5ff7
      Rémy Coutable 提交于
      These specs were flaky and only passing after a retry due to how
      rspec-retry works.
      
      1. The test with paths that don't exist was returning 200 on the first
        try, then 404 on the second, not because the paths don't exist, but
        because the MR IID didn't change, thus the MR couldn't be found.
        I decided to remove the test entirely since we don't seem to return
        404 for paths that don't exist.
      2. The test with a user that cannot view the merge request was failing
        the first time because the project owner wasn't removed with
        `project.team.truncate`.
        Changing the `let(:user)` to `create(:user)` and calling
        `project.add_maintainer(user)` in the `before` block fix the test.
      Signed-off-by: NRémy Coutable <remy@rymai.me>
      45ce5ff7
  22. 04 12月, 2018 1 次提交
  23. 10 11月, 2018 1 次提交
  24. 08 11月, 2018 1 次提交
  25. 07 11月, 2018 1 次提交
  26. 04 10月, 2018 1 次提交
  27. 26 9月, 2018 2 次提交
  28. 11 9月, 2018 1 次提交
  29. 07 9月, 2018 1 次提交
  30. 21 6月, 2018 1 次提交
  31. 07 12月, 2017 4 次提交
  32. 29 11月, 2017 1 次提交
    • S
      Remove serialised diff and commit columns · 4ebbfe5d
      Sean McGivern 提交于
      The st_commits and st_diffs columns on merge_request_diffs historically held the
      YAML-serialised data for a merge request diff, in a variety of formats.
      
      Since 9.5, these have been migrated in the background to two new tables:
      merge_request_diff_commits and merge_request_diff_files. That has the advantage
      that we can actually query the data (for instance, to find out how many commits
      we've stored), and that it can't be in a variety of formats, but must match the
      new schema.
      
      This is the final step of that journey, where we drop those columns and remove
      all references to them. This is a breaking change to the importer, because we
      can no longer import diffs created in the old format, and we cannot guarantee
      the export will be in the new format unless it was generated after this commit.
      4ebbfe5d
  33. 21 11月, 2017 1 次提交
  34. 19 9月, 2017 1 次提交