Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-01-23Version 1.7.2v1.7.21-7-stableJacob Vosmaer
2019-01-23Merge branch '2780-disable-git-v2-1-7' into '1-7-stable'Jacob Vosmaer
[Gitaly v1.7] Disable git protocol v2 temporarily See merge request gitlab/gitaly!13
2019-01-23Disable git protocol v2 temporarilyNick Thomas
2019-01-23Move scratch data into testdata/scratchNick Thomas
2019-01-23Fix megacheck offenseJacob Vosmaer
2019-01-23Fix tests failing due to test-repo changeJacob Vosmaer
2018-12-10Version 1.7.1v1.7.1Jacob Vosmaer
2018-12-10Log correlation_id field in structured logging outputAndrew Newdigate
2018-12-06Version 1.7.0v1.7.0Jacob Vosmaer
2018-12-06Merge branch 'ce-19376-apply-bfg-rpc' into 'master'Jacob Vosmaer
Clean up a repository by applying a BFG object map to it See merge request gitlab-org/gitaly!990
2018-12-06Implement the ApplyBfgObjectMap RPCNick Thomas
2018-12-06Add a wrapper around git update-ref --stdinNick Thomas
2018-12-06Allow commands to be written to via their stdinNick Thomas
2018-12-06Version 1.6.0v1.6.0Jacob Vosmaer
2018-12-06Merge branch 'bvl-cleanup-invalid-keeparounds' into 'master'Jacob Vosmaer
Clean up invalid keep-around refs when performing housekeeping See merge request gitlab-org/gitaly!992
2018-12-06Clean up invalid keep-around refsBob Van Landuyt
We used to corrupt `keep-around` refs when creating them using rugged. This ensures we clean up any refs git won't understand repairing them if possible. When the ref contents is blank, invalid or a "blank"-sha, we remove the ref and recreate it based on it's filename if the filename was a valid SHA. This is run as part of the `GarbageCollect` RPC
2018-12-05Version 1.5.0v1.5.0Jacob Vosmaer
2018-12-05Merge branch 'try-fix-macos-auth-test' into 'master'Zeger-Jan van de Weg
Fix TLS client code on macOS See merge request gitlab-org/gitaly!994
2018-12-05Fix TLS client code on macOSJacob Vosmaer
2018-12-04Merge branch 'gitaly-tls' into 'master'Jacob Vosmaer
Add tls configuration to gitaly golang server See merge request gitlab-org/gitaly!932
2018-12-04Add tls configuration to gitaly golang serverAhmad Hassan
2018-12-04Merge branch 'update-goimports' into 'master'Zeger-Jan van de Weg
Update to latest goimports formatting See merge request gitlab-org/gitaly!993
2018-12-04Update to latest goimports formattingJacob Vosmaer
2018-11-30Version 1.4.0v1.4.0Zeger-Jan van de Weg
2018-11-30Merge branch 'zj-objectpool-linking' into 'master'Jacob Vosmaer
Link and Unlink RPCs Closes #1345 and #1349 See merge request gitlab-org/gitaly!986
2018-11-30Link and Unlink RPCsZeger-Jan van de Weg
To use an object pool, each repository needs to be able to link and unlink itself. This is done through writing the alternates file manually. To the best of my knowledge there's no command on git to perform this.
2018-11-29Fix blank line breaking deployZeger-Jan van de Weg
2018-11-29Version 1.3.0v1.3.0Zeger-Jan van de Weg
2018-11-29Merge branch 'doc-process-versioning' into 'master'Zeger-Jan van de Weg
Simplify versioning process See merge request gitlab-org/gitaly!989
2018-11-29Simplify versioning processJacob Vosmaer
2018-11-29Merge branch 'update-gitaly-proto-1-3-0' into 'master'Zeger-Jan van de Weg
Update gitaly-proto to v1.3.0 See merge request gitlab-org/gitaly!991
2018-11-28Implement CleanupServiceServer and stubsNick Thomas
2018-11-28Update gitaly-proto to v1.3.0Nick Thomas
2018-11-28Merge branch 'remove-bridge-exceptions' into 'master'Zeger-Jan van de Weg
Remove unused bridge_exceptions method Closes #698 and #608 See merge request gitlab-org/gitaly!987
2018-11-28Remove unused bridge_exceptions methodJacob Vosmaer
2018-11-28Merge branch 'zj-update-readme' into 'master'Jacob Vosmaer
Update version requirements for Gitaly in the Readme Closes #1407 See merge request gitlab-org/gitaly!988
2018-11-28Update version requirements for GitalyZeger-Jan van de Weg
Closes gitlab-org/gitaly#1407
2018-11-27Merge branch 'zj-objectpool-structure' into 'master'Jacob Vosmaer
Create and Remove object pools Closes #1344 See merge request gitlab-org/gitaly!966
2018-11-27Merge branch 'cleanup-process-docs' into 'master'Zeger-Jan van de Weg
Clean up process documentation See merge request gitlab-org/gitaly!984
2018-11-27Clean up process documentationJacob Vosmaer
2018-11-27Introduce Create, and Delete ObjectPool RPCZeger-Jan van de Weg
For object pools the creation and removal will be dictated by gitlab-rails, which will do so by making requesting a RPC. Create will clone a repository to the object pools path, and remove the origin remote. Also, the local refs are deleted. This does not remove the objects, which can be reused when linking the repository in a later RPC reqeust. The deletion is done by removing the git repository. This might leave empty parent directories behind. Solving this requires locking or other mechanisms to prevent race conditions. Closes https://gitlab.com/gitlab-org/gitaly/issues/1344
2018-11-27Version 1.2.0v1.2.0Zeger-Jan van de Weg
2018-11-27Introduce a security func to scrub error messagesZeger-Jan van de Weg
This helper was around already, so this is a duplication but now its tested. Later we could move all other occurances to leverage this helper.
2018-11-27Allow git.Command to receive an GitRepo interfaceZeger-Jan van de Weg
For other types of repositories, which do use the git binary, it might be convenient if the git.Command function accepts an interface type, not an concrete type. This is useful when ObjectPools would like to leverage the infrastructure which is tried and tested. Object Pools: - https://gitlab.com/groups/gitlab-org/-/epics/189
2018-11-27Merge branch 'zj-update-proto' into 'master'Jacob Vosmaer
Upgrade proto to v1.2 See merge request gitlab-org/gitaly!985
2018-11-27Upgrade proto to v1.2Zeger-Jan van de Weg
2018-11-27Merge branch '51083-fix-move-operation' into 'master'Zeger-Jan van de Weg
Allow file moves to infer their content from the source path See merge request gitlab-org/gitaly!980
2018-11-26Allow moved files to infer their content based on the sourceNick Thomas
2018-11-26Update go/gitaly-proto to v0.124.0Nick Thomas
2018-11-26Merge branch 'test-authentication' into 'master'Jacob Vosmaer
Add connectivity tests See merge request gitlab-org/gitaly!968