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-09-25Adding auth to praefectjc-praefect-tlsJohn Cai
2019-09-25Merge branch 'po-dsl-ref-refs' into 'master'John Cai
Replace deprecated command functions in internal/service/ref/refs.go Closes #1979, #1978, #1977, #1976, and #1975 See merge request gitlab-org/gitaly!1511
2019-09-25Replace deprecated command functions in internal/service/ref/refs.goPaul Okstad
2019-09-24Merge branch 'include-file-count-in-commit-language-reponse' into 'master'Zeger-Jan van de Weg
Include file count in CommitLanguage response See merge request gitlab-org/gitaly!1482
2019-09-24File count and bytes in CommitLanguage responseAdam Hegyi
This change extends the CommitLanguage response to include FileCount and Bytes. Getting the FileCount per language requires an additional git-linguist call which might increase the GRPC call execution time. To have control over the FileCount call, a new feature flag ('linguist_file_count_stats') has been introduced that can be turned off when performance issues occur.
2019-09-23Merge branch 'jv-create-bundle-safe' into 'master'Paul Okstad
CreateBundle: use git.SafeCmd Closes #1988 See merge request gitlab-org/gitaly!1512
2019-09-23CreateBundle: use git.SafeCmdJacob Vosmaer
2019-09-23Merge branch 'mk/remove-deprecated-12-2-message-handling' into 'master'Zeger-Jan van de Weg
Remove deprecated code Closes #1875 See merge request gitlab-org/gitaly!1510
2019-09-21Remove deprecated codeMichael Kozono
This commit will go into GitLab 12.4. GitLab 12.2 depended on this deprecated code and was left in 12.3 since Gitaly gets upgraded before the Rails app.
2019-09-21Merge branch 'zj-safecmd-pool-clone' into 'master'Paul Okstad
CloneFromPoolInternal: Use Git SafeBareCmd Closes #1986 See merge request gitlab-org/gitaly!1508
2019-09-20CloneFromPoolInternal: Use Git SafeBareCmdZeger-Jan van de Weg
Closes https://gitlab.com/gitlab-org/gitaly/issues/1986
2019-09-20Merge branch 'jc-safe-command-write-ref' into 'master'Zeger-Jan van de Weg
Use SafeCmd in WriteRef Closes #1998, #1999, #2000, and #2001 See merge request gitlab-org/gitaly!1506
2019-09-20use SafeCmdJohn Cai
Replaces usage of Cmd with SafeCmd in WriteRef, SearchFilesByContent, SearchFilesByName, removeOriginInRepo
2019-09-19Merge branch 'zj-worktree-prune-safedsl' into 'master'John Cai
Cleanup: Use the Git DSL for command exection Closes #1985 See merge request gitlab-org/gitaly!1497
2019-09-19Merge branch 'zj-repo-config-safe-dsl' into 'master'John Cai
DeleteConfig: use git.SafeCmd Closes #1987 See merge request gitlab-org/gitaly!1500
2019-09-19Merge branch 'zj-remove-ruby-getcommitsignatures' into 'master'John Cai
Remove Ruby implementation GetCommitSignatures Closes #1920 See merge request gitlab-org/gitaly!1501
2019-09-19Merge branch 'zj-removal-close-session' into 'master'John Cai
CloseSession: Remove unused proto Closes #1810 See merge request gitlab-org/gitaly!1502
2019-09-19Merge branch 'jv-1995' into 'master'John Cai
GetRawChanges: use git.SafeCmd Closes #1995 See merge request gitlab-org/gitaly!1503
2019-09-19GetRawChanges: use git.SafeCmdJacob Vosmaer
2019-09-19Merge branch 'jv-1994' into 'master'John Cai
FindMergeBase: use git.SafeCmd Closes #1994 See merge request gitlab-org/gitaly!1504
2019-09-19FindMergeBase: use git.SafeCmdJacob Vosmaer
2019-09-19Merge branch 'jv-1990' into 'master'John Cai
Fsck: use git.SafeBareCmd Closes #1990 See merge request gitlab-org/gitaly!1505
2019-09-19Fsck: use git.SafeBareCmdJacob Vosmaer
2019-09-19Cleanup: Use the Git DSL for command exectionZeger-Jan van de Weg
After https://gitlab.com/gitlab-org/gitaly/merge_requests/1476 was merged, this command could be rewritten.
2019-09-19Merge branch 'po-dsl-pos-arg-option' into 'master'Jacob Vosmaer
Nested command for DSL See merge request gitlab-org/gitaly!1498
2019-09-19Nested command for DSLPaul Okstad
2019-09-19Merge branch 'jc-safe-cmd-on-repository' into 'master'Zeger-Jan van de Weg
Use safe command in HasLocalBranches See merge request gitlab-org/gitaly!1499
2019-09-19CloseSession: Remove unused protoZeger-Jan van de Weg
Initially this RPC was supposed to hand off control to a cat-file being closed to a caller. This decision got reverted and now this RPC can be removed. Closes https://gitlab.com/gitlab-org/gitaly/issues/1810
2019-09-19Remove Ruby implementation GetCommitSignaturesZeger-Jan van de Weg
Partially removed in 67af2bf1f3d2b00249932476a5d16e7ef0cfa9a5. Now the Ruby code can be removed too. Closes https://gitlab.com/gitlab-org/gitaly/issues/1920
2019-09-19Merge branch 'jc-explicitly-designate-primary' into 'master'Zeger-Jan van de Weg
Explicitly designate primary and replica nodes in praefect config Closes #1927 See merge request gitlab-org/gitaly!1483
2019-09-19DeleteConfig: use git.SafeCmdZeger-Jan van de Weg
Closes: https://gitlab.com/gitlab-org/gitaly/issues/1987
2019-09-19Use safe command in HasLocalBranchesJohn Cai
2019-09-18Merge branch 'po-fix-cache-invalidator-no-repo' into 'master'Zeger-Jan van de Weg
Fix cache invalidator for Create* RPCs and health checks See merge request gitlab-org/gitaly!1494
2019-09-18Fix cache invalidator for Create* RPCs and health checksPaul Okstad
2019-09-18Merge branch 'zj-safe-git-cmd-checksum' into 'master'John Cai
CalculateChecksum: use git.SafeCmd for the RPC Closes #1984 and #1983 See merge request gitlab-org/gitaly!1496
2019-09-18CalculateChecksum: use git.SafeCmd for the RPCZeger-Jan van de Weg
After the Git DSL is merged, in https://gitlab.com/gitlab-org/gitaly/issues/1847 all Git commands need to be updated to use this change. This is now done for both invocations of the Checksum RPC. Closes https://gitlab.com/gitlab-org/gitaly/issues/1983 Closes https://gitlab.com/gitlab-org/gitaly/issues/1984
2019-09-18Explicitly designate primary and replica nodes in praefect configJohn Cai
2019-09-18Version 1.65.0v1.65.0Jacob Vosmaer
2019-09-18Merge branch 'jv-walker-nil-checks' into 'master'Zeger-Jan van de Weg
Prevent nil panics in housekeeping.Perform See merge request gitlab-org/gitaly!1492
2019-09-18Prevent nil panics in housekeeping.PerformJacob Vosmaer
2019-09-18Merge branch 'sh-upgrade-rouge-3.11.0' into 'master'Paul Okstad
Upgrade Rouge to v3.11.0 See merge request gitlab-org/gitaly!1493
2019-09-18Merge branch 'zj-label-issue-template' into 'master'Paul Okstad
Labels update in the feature flag issue template See merge request gitlab-org/gitaly!1489
2019-09-18Merge branch 'po-git-dsl' into 'master'John Cai
Git command DSL Closes #1996, #1991, and #1847 See merge request gitlab-org/gitaly!1476
2019-09-18Git command DSLPaul Okstad
2019-09-17Upgrade Rouge to v3.11.0Stan Hu
This fixes the JSON parser bug present in v3.8.0+(https://github.com/rouge-ruby/rouge/issues/1330) and adds support for a number of new lexers.
2019-09-17Merge branch 'po-demo-fix-replication' into 'master'Paul Okstad
Replicator fixes from demo See merge request gitlab-org/gitaly!1487
2019-09-17Fix replicator bug due to bad mergePaul Okstad
Add tests as well to give coverage to the processReplJob method
2019-09-17Merge branch 'jv-document-elk-latency' into 'master'Paul Okstad
Add documentation snippet for ELK graphs See merge request gitlab-org/gitaly!1491
2019-09-17Add documentation snippet for ELK graphsJacob Vosmaer
2019-09-16Merge branch 'zj-update-downstreamer' into 'master'John Cai
Update downstream script to single code base See merge request gitlab-org/gitaly!1488