An error occurred fetching the project authors.
- 27 Jun, 2018 1 commit
-
-
Jacob Vosmaer authored
-
- 26 Jun, 2018 1 commit
-
-
Jacob Vosmaer authored
-
- 22 Jun, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
Closes https://gitlab.com/gitlab-org/gitaly/issues/222
-
- 06 Jun, 2018 2 commits
-
-
Jacob Vosmaer authored
-
Zeger-Jan van de Weg authored
Gitaly itself hold very little state, other than the data on disk. This limits the interfaces to set feature flags. Gitaly now has the ability to interpret the request metadata to check for feature flags. https://gitlab.com/gitlab-org/gitaly/merge_requests/704 This allows clients control on the Gitaly server, and given that Rails has an internal chatops interface to set these values this was chosen as solution. Known limitation right now, is that this package doesn't support the opt out that other Gitaly features do.
-
- 18 May, 2018 1 commit
-
-
Ahmad Sherif authored
-
- 16 May, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
Prior to this change, this was done through unicorn. In theory this could time out. Workhorse has been sending these raw patches and diffs for a long time and is stable in doing so. Added bonus is the fact that `Commit#to_patch` can be removed. `Commit#to_diff` too, which closes https://gitlab.com/gitlab-org/gitaly/issues/324 Closes https://gitlab.com/gitlab-org/gitaly/issues/1196
-
- 17 Apr, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
The execution path wasn't clear from the error, but either way this is a fix. Closes gitlab-org/gitaly#1115
-
- 04 Apr, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
Acceptence testing was successfull in [#844](https://gitlab.com/gitlab-org/gitaly/issues/844) Part of gitlab-org/gitaly#670
-
- 07 Mar, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
Part of gitlab-org/gitaly#324
-
- 01 Mar, 2018 1 commit
-
-
Ahmad Sherif authored
Closes gitaly#1046
-
- 19 Feb, 2018 1 commit
-
-
Sean McGivern authored
The tracking issue if this causes problems is https://gitlab.com/gitlab-org/gitaly/issues/1028
-
- 16 Feb, 2018 2 commits
-
-
Micaël Bergeron authored
# modified: lib/gitlab/git/commit.rb
-
Micaël Bergeron authored
-
- 07 Feb, 2018 1 commit
-
-
Zeger-Jan van de Weg authored
The refs hash is used to determine what branches and tags have a commit as head in the network graph. The previous implementation depended on Rugged#references. The problem with this implementation was that it depended on rugged, but also that it iterated over all references and thus loading more data than needed if for example the project uses CI/CD environments, Pipelines, or Merge Requests. Given only refs are checked the network cares about the GraphHelper#refs method has no need to reject those, simplifying the method. Closes gitlab-org/gitaly#880
-
- 18 Jan, 2018 1 commit
-
-
Jacob Vosmaer (GitLab) authored
-
- 15 Jan, 2018 1 commit
-
-
Ahmad Sherif authored
Closes gitaly#915
-
- 04 Jan, 2018 1 commit
-
-
Jacob Vosmaer authored
-
- 19 Dec, 2017 1 commit
-
-
Zeger-Jan van de Weg authored
Uses `list_commits_by_oid` on the CommitService, to request the needed commits for pipelines. These commits are needed to display the user that created the commit and the commit title. This includes fixes for tests failing that depended on the commit being `nil`. However, now these are batch loaded, this doesn't happen anymore and the commits are an instance of BatchLoader.
-
- 07 Dec, 2017 1 commit
-
-
micael.bergeron authored
-
- 05 Dec, 2017 1 commit
-
-
Kim "BKC" Carlbäcker authored
- Added tests for Git::Commit.shas_with_signatures
-
- 04 Dec, 2017 1 commit
-
-
Ahmad Sherif authored
Closes gitaly#737
-
- 31 Oct, 2017 1 commit
-
-
Alejandro Rodríguez authored
-
- 27 Oct, 2017 1 commit
-
-
Zeger-Jan van de Weg authored
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.
-
- 19 Sep, 2017 1 commit
-
-
Jacob Vosmaer (GitLab) authored
-
- 11 Sep, 2017 1 commit
-
-
Kim "BKC" Carlbäcker authored
-
- 22 Aug, 2017 1 commit
-
-
Alejandro Rodríguez authored
-
- 16 Aug, 2017 1 commit
-
-
Douwe Maan authored
-
- 08 Aug, 2017 4 commits
-
-
Brian Neel authored
-
Alejandro Rodríguez authored
-
Alejandro Rodríguez authored
This helps keep the abstraction layers simpler, and also keep the interface of those methods consistent, in case of implementation changes.
-
Alejandro Rodríguez authored
-
- 03 Aug, 2017 1 commit
-
-
Jacob Vosmaer authored
-
- 27 Jul, 2017 3 commits
-
-
Alexis Reigel authored
the rugged versions up to 0.26.0b3 had a bug concerning the signature extraction. The extracted signature was not always the same, probably due to a buffer (overflow) issue in libgit. see https://github.com/libgit2/rugged/issues/608
-
Alexis Reigel authored
-
Kevin O'Connor authored
-
- 20 Jul, 2017 1 commit
-
-
Ahmad Sherif authored
Closes gitaly#396
-
- 18 Jul, 2017 2 commits
-
-
Alejandro Rodríguez authored
-
Alejandro Rodríguez authored
-
- 13 Jul, 2017 1 commit
-
-
Jacob Vosmaer authored
-