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
2018-11-07Graceful restart PROOF-of-CONCEPTgraceful-restartAndrew Newdigate
2018-11-06Merge branch 'quiet-go-test-grpc-log' into 'master'Zeger-Jan van de Weg
Quiet down grpc logs during go tests See merge request gitlab-org/gitaly!961
2018-11-05Quiet down grpc logs during go testsJacob Vosmaer
2018-11-05Merge branch 'remove-obsolete-templates' into 'master'Tommy Morgan
Remove migration issue templates See merge request gitlab-org/gitaly!960
2018-11-05Remove migration issue templatesJacob Vosmaer
2018-11-05Merge branch 'more-specs' into 'master'Zeger-Jan van de Weg
More specs See merge request gitlab-org/gitaly!953
2018-11-01Merge branch 'bjk/vendor_update_incremental' into 'master'Jacob Vosmaer
Update vendoring See merge request gitlab-org/gitaly!954
2018-11-01Add changelog entry.Ben Kochie
2018-11-01Update vendor google.golang.org/genproto/googleapis/rpc/status@masterBen Kochie
2018-11-01Update vendor golang.org/x/...Ben Kochie
2018-11-01Update vendor github.com/grpc-ecosystem/go-grpc-middleware/...@v1Ben Kochie
2018-11-01Update vendor github.com/grpc-ecosystem/go-grpc-prometheus@v1Ben Kochie
2018-10-31Update vendor github.com/pmezard/go-difflib/difflib@v1Ben Kochie
2018-10-31Update vendor github.com/kelseyhightower/envconfig@v1Ben Kochie
2018-10-31Update vendor github.com/stretchr/testify/...@v1Ben Kochie
2018-10-31Update vendor github.com/matttproud/golang_protobuf_extensions/pbutil@v1Ben Kochie
2018-10-31Update vendor github.com/sirupsen/logrus@v1Ben Kochie
2018-10-31Update vendor github.com/prometheus/...@masterBen Kochie
2018-10-31Update vendor github.com/golang/protobuf/...@v1Ben Kochie
2018-10-31Update vendor github.com/getsentry/raven-go@v0Ben Kochie
2018-10-31Update vendor github.com/davecgh/go-spew/spew@v1Ben Kochie
2018-10-30Update vendor github.com/certifi/gocertifi@2018.01.18Ben Kochie
2018-10-30Update vendor github.com/beorn7/perks/quantile@masterBen Kochie
2018-10-30Update vendor github.com/BurntSushi/toml@v0Ben Kochie
2018-10-30Merge branch 'fix-user-delete-tag-encoding' into 'master'Alejandro Rodríguez
Fix encoding bug in User{Create,Delete}Tag Closes #1361 See merge request gitlab-org/gitaly!952
2018-10-30Fix encoding bug in User{Create,Delete}TagJacob Vosmaer
2018-10-30Add LfsChanges and RawDiff spec examplesAlejandro Rodríguez
2018-10-30Add user spec examples and remove unused codeAlejandro Rodríguez
2018-10-30Add tag spec examples and remove unused codeAlejandro Rodríguez
2018-10-30Merge branch 'repository-spec' into 'master'Alejandro Rodríguez
Expand Gitlab::Git::Repository unit specs with examples from rails See merge request gitlab-org/gitaly!945
2018-10-30Expand Gitlab::Git::Repository unit specs with examples from railsAlejandro Rodríguez
2018-10-30Merge branch 'doc-gitaly-clients' into 'master'Tommy Morgan
Document which components are gitaly clients See merge request gitlab-org/gitaly!950
2018-10-30Version 0.128.0v0.128.0Jacob Vosmaer
2018-10-30Merge branch 'bvl-validate-committer-on-apply-patch' into 'master'Jacob Vosmaer
Fix incorrect committer when committing patches Closes #1379 See merge request gitlab-org/gitaly!947
2018-10-30Set the correct env when committing patchesBob Van Landuyt
We need to make sure the committer is set correctly when applying a patch. The author is set from the patch, the committer is set from the user.
2018-10-30Document which components are gitaly clientsJacob Vosmaer
2018-10-30Merge branch 'fix/protocol-constant' into 'master'Jacob Vosmaer
Use constant in protocol check See merge request gitlab-org/gitaly!949
2018-10-30Update protocol.goJames Lopez
2018-10-26Merge branch 'fix-find-vendor' into 'master'Alejandro Rodríguez
Fix makefile 'find ruby/vendor' bug See merge request gitlab-org/gitaly!946
2018-10-26Fix makefile 'find ruby/vendor' bugJacob Vosmaer
2018-10-26Version 0.127.0v0.127.0Jacob Vosmaer
2018-10-26Fix failing hook specJacob Vosmaer
I don't know why but this fixes local spec failures for me.
2018-10-26Merge branch 'bvl-apply-patch-rpc' into 'master'Jacob Vosmaer
Add an endpoint to apply patches to a branch See merge request gitlab-org/gitaly!926
2018-10-26Add RPC for applying patches to a branchBob Van Landuyt
This adds an RPC that takes a branch and a stream of patches generated using `git format-patch`, the patches are applied to the branch using `git am`. When the specified branch does not exist, it will be created from HEAD, if it existed, the patches will be applied to that branch. If the patches could not be applied, a gRPC `FailedPrecondition` is raised. To apply the patches, a random new temporary branch is created from either the specified branch or HEAD. That branch is checked out in a worktree and we attempt to apply the patches. If it succeeds, then we update the specified branch to the new revision. After the attempt, we remove the temporary branch. The response of the RPC is a `BranchUpdate` response containing whether or not a new branch was created, and the new tip of the branch.
2018-10-26Merge branch 'sh-bump-rouge-3.3.0' into 'master'Zeger-Jan van de Weg
Bump Rouge gem to 3.3.0 See merge request gitlab-org/gitaly!943
2018-10-25Merge branch 'sh-bump-ruby-2-4-5' into 'master'Jacob Vosmaer
Upgrade Ruby version to 2.4.5 See merge request gitlab-org/gitaly!944
2018-10-25Merge branch 'remote-repository-specs' into 'master'Jacob Vosmaer
Add Gitlab::Git::RemoteRepository unit specs See merge request gitlab-org/gitaly!940
2018-10-25Merge branch 'zj-self-healing-hooks' into 'master'Alejandro Rodríguez
Make git hooks self healing See merge request gitlab-org/gitaly!886
2018-10-25Bump Rouge gem to 3.3.0Stan Hu
This is to be consistent with CE.
2018-10-25Upgrade Ruby version to 2.4.5Stan Hu