1. 20 8月, 2018 1 次提交
  2. 10 8月, 2018 1 次提交
  3. 17 7月, 2018 1 次提交
  4. 06 7月, 2018 1 次提交
  5. 02 7月, 2018 1 次提交
  6. 19 1月, 2018 1 次提交
  7. 28 12月, 2017 1 次提交
  8. 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
  9. 01 11月, 2017 1 次提交
  10. 31 10月, 2017 1 次提交
  11. 09 10月, 2017 2 次提交
  12. 08 8月, 2017 1 次提交
  13. 20 7月, 2017 1 次提交
  14. 23 6月, 2017 1 次提交
  15. 06 6月, 2017 1 次提交
  16. 25 5月, 2017 1 次提交
    • A
      Implement web hooks logging · 330789c2
      Alexander Randa 提交于
      * implemented logging of project and system web hooks
      * implemented UI for user area (project hooks)
      * implemented UI for admin area (system hooks)
      * implemented retry of logged webhook
      * NOT imeplemented log remover
      330789c2
  17. 11 5月, 2017 1 次提交
  18. 04 5月, 2017 1 次提交
  19. 17 3月, 2017 1 次提交
  20. 15 2月, 2017 1 次提交
  21. 14 2月, 2017 1 次提交
  22. 08 2月, 2017 1 次提交
  23. 04 2月, 2017 1 次提交
  24. 01 12月, 2016 1 次提交
  25. 24 11月, 2016 1 次提交
  26. 12 8月, 2016 1 次提交
  27. 04 8月, 2016 1 次提交
  28. 03 6月, 2016 2 次提交
  29. 31 5月, 2016 2 次提交
  30. 09 5月, 2016 1 次提交
  31. 03 5月, 2016 1 次提交
  32. 19 4月, 2016 1 次提交
  33. 28 3月, 2016 1 次提交
  34. 11 3月, 2016 1 次提交
  35. 10 3月, 2016 1 次提交
  36. 06 3月, 2016 1 次提交
  37. 12 2月, 2016 1 次提交
    • K
      Add new data to project in push, issue, merge-request and note webhooks data · b123171d
      Kirill Zaitsev 提交于
      - Add `avatar_url`, `description`, `git_ssh_url`, `git_http_url`,
        `path_with_namespace` and `default_branch` in `project` in push, issue,
        merge-request and note webhooks data
      - Deprecate the `ssh_url` in favor of `git_ssh_url` and `http_url` in
        favor of `git_http_url` in `project` for push, issue, merge-request and
        note webhooks data
      - Deprecate the `repository` key in push, issue, merge-request and
        note webhooks data, use `project` instead
      b123171d