An error occurred fetching the project authors.
  1. 28 Jun, 2019 1 commit
  2. 03 Jun, 2019 1 commit
  3. 27 May, 2019 1 commit
  4. 16 May, 2019 1 commit
  5. 14 May, 2019 1 commit
    • John Cai's avatar
      Omit max-count for diverging_commit_counts behind feature flag · f86797b5
      John Cai authored
      We want to optimize the query for the CountDivergingCommits rpc by
      removing the --max-count argument now that we have commit graphs
      enabled for all repositories during housekeeping. However, we want to
      test this first behind a feature flag.
      f86797b5
  6. 09 May, 2019 1 commit
  7. 02 May, 2019 1 commit
    • Luke Duncalfe's avatar
      Add support for two-step Gitaly Rebase RPC · 49cb4b3d
      Luke Duncalfe authored
      The new two-step Gitaly `Rebase` RPC yields the rebase commit SHA to the
      client before proceeding with the rebase.
      
      This avoids an issue where the rebase commit SHA was returned when the
      RPC had fully completed, and in some cases this would be after the Rails
      `post_receive` worker services had already run. In these situations,
      the merge request did not yet have its rebase_commit_sha attribute set
      introducing the possibility for bugs (such as previous approvals being
      reset).
      
      https://gitlab.com/gitlab-org/gitlab-ee/issues/5966
      49cb4b3d
  8. 01 May, 2019 1 commit
    • Sarah Yasonik's avatar
      Update metrics dashboard API to load yml from repo · 552a3d2f
      Sarah Yasonik authored
      Updates the EnvironmentController#metrics_dashboard endpoint
      to support a "dashboard" param, which can be used to specify
      the filepath of a dashboard configuration from a project
      repository. Dashboard configurations are expected to be
      stored in .gitlab/dashboards/.
      
      Updates dashboard post-processing steps to exclude custom
      metrics, which should only display on the system dashboard.
      552a3d2f
  9. 29 Apr, 2019 1 commit
  10. 16 Apr, 2019 1 commit
  11. 11 Apr, 2019 1 commit
  12. 02 Apr, 2019 1 commit
    • Patrick Bajao's avatar
      Download a folder from repository · 6766a0a1
      Patrick Bajao authored
      Add `GetArchiveRequest` to git-archive params.
      
      Modifies `Git::Repository#archive_metadata` to append `path`
      to `ArchivePrefix` so it'll not hit the cache of repository archive
      when it already exists.
      6766a0a1
  13. 26 Mar, 2019 1 commit
    • Bob Van Landuyt's avatar
      Allow multiple repositories per project · d36415b7
      Bob Van Landuyt authored
      This changes the repository type from a binary `wiki?` to a type. So
      we can have more than 2 repository types.
      
      Now everywhere we called `.wiki?` and expected a boolean, we check
      that type.
      d36415b7
  14. 19 Mar, 2019 1 commit
  15. 18 Mar, 2019 1 commit
  16. 13 Mar, 2019 1 commit
  17. 12 Mar, 2019 1 commit
  18. 06 Mar, 2019 1 commit
  19. 25 Feb, 2019 1 commit
    • Oswaldo Ferreira's avatar
      Support merge to ref for merge-commit and squash · 1ad69967
      Oswaldo Ferreira authored
      Adds the ground work for writing into
      the merge ref refs/merge-requests/:iid/merge the
      merge result between source and target branches of
      a MR, without further side-effects such as
      mailing, MR updates and target branch changes.
      1ad69967
  20. 07 Feb, 2019 1 commit
  21. 06 Feb, 2019 2 commits
  22. 04 Feb, 2019 1 commit
  23. 01 Feb, 2019 1 commit
  24. 08 Jan, 2019 1 commit
  25. 08 Dec, 2018 7 commits
  26. 06 Dec, 2018 1 commit
    • Stan Hu's avatar
      Remove unnecessary includes of ShellAdapter · e96fd232
      Stan Hu authored
      Determined by running the script:
      
      ```
      included = `git grep --name-only ShellAdapter`.chomp.split("\n")
      used = `git grep --name-only gitlab_shell`.chomp.split("\n")
      included - used
      ```
      e96fd232
  27. 28 Nov, 2018 1 commit
  28. 26 Nov, 2018 2 commits
  29. 16 Nov, 2018 1 commit
  30. 07 Nov, 2018 1 commit
    • Francisco Javier López's avatar
      Add submodule update API endpoint · 28cbb2ac
      Francisco Javier López authored
      This new endpoint allow users to update a submodule's reference.
      
      The MR involves adding a new operation RPC operation in gitaly-proto
      (see gitlab-org/gitaly-proto!233) and change Gitaly to use this
      new version (see gitlab-org/gitaly!936).
      
      See gitlab-org/gitlab-ce!20949
      28cbb2ac
  31. 06 Nov, 2018 1 commit
  32. 17 Oct, 2018 1 commit
    • Nick Thomas's avatar
      Use cached readme blobs where appropriate · 0669127a
      Nick Thomas authored
      GitLab keeps a cache of the rendered HTML for a repository's README as
      stored in the HEAD branch. However, it was not used in all
      circumstances. In particular, the new blob viewer framework bypassed
      this cache entirely.
      
      This MR ensures a ::ReadmeBlob is returned instead of a ::Blob when
      asking a repository for an individual blob, if the commit and path
      match the readme for HEAD. This makes the cached HTML available to
      consumers, including the blob viewer.
      
      The ReadmeBlob is a simple delegator to the Blob, so should be
      compatible in all cases. Adding the rendered_markdown method is the
      only additional behaviour it contains.
      0669127a