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-04-11Fix bundle read ordergitaly-pack-objectsJacob Vosmaer
2019-04-11simplify mainJacob Vosmaer
2019-04-11Restructure pack-objects hookJacob Vosmaer
2019-04-10Remove testcase layerJacob Vosmaer
2019-04-10Remove old fileJacob Vosmaer
2019-04-10Add unit tests for packfile read/writeJacob Vosmaer
2019-04-04Clean up a littlejv-test-pack-concatJacob Vosmaer
2019-04-04Add working example using bundle filesJacob Vosmaer
2019-03-07count in helperJacob Vosmaer
2019-03-05Use variableJacob Vosmaer
2019-03-05CommentsJacob Vosmaer
2019-03-04Use reader instead of writerJacob Vosmaer
2019-03-04Create executable that glues packsJacob Vosmaer
2019-02-28Merge branch 'zj-test-go-1.12' into 'master'John Cai
Test against Go 1.12 Closes #1513 See merge request gitlab-org/gitaly!1104
2019-02-28Merge branch 'zj-danger-label-apply' into 'master'John Cai
Use danger to apply labels to MRs See merge request gitlab-org/gitaly!1105
2019-02-28Merge branch 'jc-remove-ruby-find-commits' into 'master'Paul Okstad
Remove ruby implementation of find commits Closes #1448 See merge request gitlab-org/gitaly!1099
2019-02-28remove ruby implementation of find commitsJohn Cai
2019-02-28Merge branch 'sh-bump-rugged-0.28.0' into 'master'Paul Okstad
Bump Rugged to 0.28.0 See merge request gitlab-org/gitaly!1107
2019-02-28Merge branch 'jc-remove-ruby-write-ref' into 'master'Paul Okstad
removing deprecated ruby write-ref Closes #1449 See merge request gitlab-org/gitaly!1098
2019-02-28Merge branch 'user-commit-files-test-helper' into 'master'Paul Okstad
Reduce number of arguments in UserCommitFiles test helper See merge request gitlab-org/gitaly!1097
2019-02-28Reduce number of arguments in UserCommitFiles test helperJacob Vosmaer
2019-02-28Merge branch 'zj-remove-dead-get-commit-messages-ruby' into 'master'Paul Okstad
Remove Ruby implemenation of get_commit_messages Closes #1450 See merge request gitlab-org/gitaly!1093
2019-02-28Merge branch 'zj-remove-dead-commmit-stats-ruby' into 'master'Paul Okstad
Remove unused Ruby implementation for CommitStats Closes #1471 See merge request gitlab-org/gitaly!1092
2019-02-28Merge branch 'zj-upgrade-protobuf-go-1.2' into 'master'Paul Okstad
Use code generated by protobuf go compiler 1.2 See merge request gitlab-org/gitaly!1084
2019-02-28Have GitalyBot apply labels throught DangerZeger-Jan van de Weg
Using Danger a small rule book, @GitalyBot will apply labels and have a few more rules on the changelog.
2019-02-28Merge branch 'jv-flaky-balancer-test' into 'master'Zeger-Jan van de Weg
Try to resolve flaky TestRemoval balancer test Closes #1510 See merge request gitlab-org/gitaly!1094
2019-02-28Try to resolve flaky TestRemoval balancer testJacob Vosmaer
2019-02-28Merge branch 'allow-developers-to-debug-ruby-with-pry' into 'master'Zeger-Jan van de Weg
Allow debugging ruby tests with pry See merge request gitlab-org/gitaly!1102
2019-02-28Allow debugging ruby tests with pryLuke Duncalfe
2019-02-28Merge branch 'zj-praefect' into 'master'John Cai
Create Praefect binary for proxy server execution Closes #1483 See merge request gitlab-org/gitaly!1068
2019-02-28Bump Rugged to 0.28.0Stan Hu
libgit2 0.28.0 has significant bug fixes and improvements: https://github.com/libgit2/libgit2/releases/tag/v0.28.0
2019-02-27Make logging configurableZeger-Jan van de Weg
Futher a few style improvements were added, and logging is now configurable in the same way Gitaly is.
2019-02-27Test against Go 1.12Zeger-Jan van de Weg
Go 1.12 was released this week, and this commit adds it to the CI matrix. By pushing it can be established if it succeeds out of the box, else it will be set to `allowed_to_fail`. Part of: https://gitlab.com/gitlab-org/gitaly/issues/1513
2019-02-27Update Gitaly-Proto with protobuf go compiler 1.2Zeger-Jan van de Weg
The protobuf for this branch was compiled with a newer version, v1.2. This had some changes on the the struct fields. A few got added, which broke tests that performed deep equal tests. For example an XXX_sizecache field was added to the messages, which sometimes is set but is not set when settting up a test. By depending on equals the XXX_sizecache fields were compared, where the response would set them. By using proto.Equal() as suggested: https://groups.google.com/d/msg/protobuf/N-elvFu4dFM/6fGxs1v1AgAJ this problem is fixed. Struct literal assignments were updated so tests would run again too. Related to: https://gitlab.com/gitlab-org/gitaly-proto/merge_requests/266
2019-02-27Version 1.22.0v1.22.0Zeger-Jan van de Weg
2019-02-27Merge branch 'update-hook-env' into 'master'Paul Okstad
Pass GL_PROTOCOL and GL_REPOSITORY to update hook Closes gitlab-ce#43739 See merge request gitlab-org/gitaly!1082
2019-02-26removing deprecated ruby write-refJohn Cai
2019-02-26Merge branch 're-implement-findbranch' into 'master'John Cai
Removing find_branch ruby implementation Closes #1293 See merge request gitlab-org/gitaly!1096
2019-02-26Adding changelogMichael Leopard
2019-02-26Removing find_branch ruby implementationMichael Leopard
2019-02-26Remove unused Ruby implementation for CommitStatsZeger-Jan van de Weg
Commit stats are new served by Go, and the implementation can be removed from the Ruby sidecar. MR of the Go port: https://gitlab.com/gitlab-org/gitaly/merge_requests/1048 Closes https://gitlab.com/gitlab-org/gitaly/issues/1471
2019-02-26Only one storage location per praefectZeger-Jan van de Weg
Before the storage location was hard coded to "default" or "test". Now this is dynamic, based on the configuration. Each proxy server only serves one replica group until the moment we can map from repository_storage to a group of backend nodes.
2019-02-26Merge branch 'an-spawn-span-propagation' into 'master'Paul Okstad
Support distributed tracing in child processes See merge request gitlab-org/gitaly!1085
2019-02-26Merge branch 'docs-training-video-1' into 'master'Paul Okstad
Add link to training video from 2019-02-21 See merge request gitlab-org/gitaly!1091
2019-02-26Add link to training video from 2019-02-21Jacob Vosmaer
2019-02-25Remove Ruby implemenation of get_commit_messagesZeger-Jan van de Weg
This RPC was served by the Ruby sidecar, but since https://gitlab.com/gitlab-org/gitaly/merge_requests/1012 the implemenation is in Go. One release later the code can be removed, which is now. Closes: https://gitlab.com/gitlab-org/gitaly/issues/1450
2019-02-25Version 1.21.0v1.21.0Jacob Vosmaer
2019-02-22Merge branch 'zj-define-praefect-alpha' into 'master'Jacob Vosmaer
Define Praefect Beta See merge request gitlab-org/gitaly!1080
2019-02-22Merge branch 'po_ha_rpc_terms' into 'master'Jacob Vosmaer
Add new RPC terminology See merge request gitlab-org/gitaly!1089
2019-02-22Add new RPC terminologyPaul Okstad