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-12-11Add /bin to gitignorejv-ignore-binJacob Vosmaer
2019-12-10Merge branch 'jc-change-stream-director' into 'master'John Cai
StreamDirector returns StreamParams See merge request gitlab-org/gitaly!1679
2019-12-10Merge branch 'jv-praefect-sql-config' into 'master'Jacob Vosmaer
Add Postgres config support to Praefect See merge request gitlab-org/gitaly!1662
2019-12-10Add Postgres config support to PraefectJacob Vosmaer
2019-12-10Merge branch 'jc-change-hook-methods-to-streaming' into 'master'Jacob Vosmaer
Change hook rpcs to streaming See merge request gitlab-org/gitaly!1680
2019-12-10Merge branch 'po-tls-custom-ca' into 'master'Jacob Vosmaer
Fix forking with custom CA in RPC CreateFork Closes #1567 See merge request gitlab-org/gitaly!1658
2019-12-10Fix forking with custom CA in RPC CreateForkPaul Okstad
2019-12-10Merge branch 'jc-replicate-repository-impl' into 'master'Zeger-Jan van de Weg
ReplicateRepository RPC Closes #2016 See merge request gitlab-org/gitaly!1605
2019-12-10StreamDirector returns StreamParamsJohn Cai
The stream director has too many return values that makes it hard to read. We want to add more values the stream director can return, so it's cleaner to have it return something that encapsulates those other return values.
2019-12-09Merge branch 'jc-fix-server-info' into 'master'Jacob Vosmaer
Log instead of returning error if praefect's server info fails to connect to a node Closes #2202 See merge request gitlab-org/gitaly!1651
2019-12-09Merge branch 'ps-filter-shas-with-signatures' into 'master'Pavlo Strokov
Filter collection of SHAs which has signatures and return those SHAs Closes #2157 See merge request gitlab-org/gitaly!1672
2019-12-09Filter collection of SHAs which has signatures and return those SHAsPavlo Strokov
- feature flag added - go implementation - test with enabled feature Closes: https://gitlab.com/gitlab-org/gitaly/issues/2157
2019-12-08Change hook rpcs to streamingJohn Cai
2019-12-06Merge branch 'sh-update-loofah-gem' into 'master'John Cai
Update loofah gem to v2.3.1 See merge request gitlab-org/gitaly!1678
2019-12-06Merge branch 'sh-update-msgpack-1.3.1' into 'master'John Cai
Update msgpack-ruby to v1.3.1 See merge request gitlab-org/gitaly!1677
2019-12-06Merge branch 'zj-remove-pre-fetch' into 'master'John Cai
PreFetch: remove unused RPC Closes #2163 See merge request gitlab-org/gitaly!1675
2019-12-06PreFetch: remove unused RPCZeger-Jan van de Weg
This RPC has never been used in production as it contained a bug and there were better ways to handle their intent. Closes: https://gitlab.com/gitlab-org/gitaly/issues/2163
2019-12-06ReplicateRepository RPCJohn Cai
2019-12-06Merge branch 'jv-ignore-toml' into 'master'Paul Okstad
Ignore all .toml files in Git See merge request gitlab-org/gitaly!1673
2019-12-06Merge branch 'jc-configure-prometheus-histogram-buckets' into 'master'Paul Okstad
Move prometheus config to its own package See merge request gitlab-org/gitaly!1676
2019-12-06Merge branch 'jc-change-praefect-boostrap-env-vars' into 'master'Jacob Vosmaer
Move bootstrap env vars into bootstrap constructor See merge request gitlab-org/gitaly!1670
2019-12-06Merge branch 'jc-docs-gitaly-wrapper' into 'master'Jacob Vosmaer
Add README.md for gitaly-wrapper See merge request gitlab-org/gitaly!1671
2019-12-06Update msgpack-ruby to v1.3.1Stan Hu
This keeps the version consistent with CE/EE, saving a little disk space and build times. Fixes a minor bug: https://github.com/msgpack/msgpack-ruby/compare/v1.3.0..v1.3.1
2019-12-06Update loofah gem to v2.3.1Stan Hu
This keeps the version consistent with CE/EE, saving a little disk space and build times. This update addresses a CVE: https://github.com/flavorjones/loofah/blob/master/CHANGELOG.md
2019-12-05Move prometheus config to its own packageJohn Cai
Praefect and Gitaly both need the prometheus config, so move it to internal/config/prometheus so Praefect doesn't have to import the gitaly config.
2019-12-05Log an error if praefect's server info fails to connect to a nodeJohn Cai
If an error occurs when praefect is trying to reach a gitaly node for its server info, we don't to fail the entire rpc. We log an error and move on, and the caller of the RPC can decide what to do when it sees missing server info
2019-12-04Merge branch 'ps-tree-entires-max-deep' into 'master'Jacob Vosmaer
Add maximum depth for FlatPath Closes #1931 See merge request gitlab-org/gitaly!1648
2019-12-04Add maximum depth for FlatPathPavlo Strokov
- limit recursion to deep 10 Closes: https://gitlab.com/gitlab-org/gitaly/issues/1931
2019-12-04Move bootstrap env vars into bootstrap constructorjramsay
Both Gitaly and Praefect use the bootstrap package and need to play well with gitaly-wrapper. This changes praefect to use the same env vars as gitaly. It also moves the env var retrieval inside the bootstrap constructor.
2019-12-04Merge branch 'jv-count-flag-checks' into 'master'Jacob Vosmaer
Add sanity check counter for feature flags See merge request gitlab-org/gitaly!1660
2019-12-04Add sanity check counter for feature flagsJacob Vosmaer
2019-12-04Ignore all .toml files in GitJacob Vosmaer
2019-12-04Add README.md for gitaly-wrapperJohn Cai
2019-12-03Merge branch 'revert-e2148d83' into 'master'Zeger-Jan van de Weg
Revert "Merge branch 'jc-fix-unstructured-startup-logging' into 'master'" See merge request gitlab-org/gitaly!1669
2019-12-03Revert "Merge branch 'jc-fix-unstructured-startup-logging' into 'master'"Jacob Vosmaer
This reverts merge request !1666
2019-12-03Merge branch 'docs/signature-type' into 'master'John Cai
docs: add changelog for MR 1635 See merge request gitlab-org/gitaly!1667
2019-12-03docs: add changelog for MR 1635Roger Meier
2019-12-02Merge branch 'feat/signature-type' into 'master'John Cai
feat: add signature type to GitCommit See merge request gitlab-org/gitaly!1635
2019-12-02feat: add signature type to GitCommitRoger Meier
2019-12-02Merge branch 'zj-remove-repo-conflict-header' into 'master'John Cai
Remove repository from ConflictFileHeader Closes #2106 See merge request gitlab-org/gitaly!1636
2019-12-02Merge branch 'jv-remove-duplicate-env-var' into 'master'John Cai
Remove duplicate GITLAB_SHELL_DIR env var See merge request gitlab-org/gitaly!1656
2019-12-02Version 1.75.0v1.75.01-75-stablejramsay
2019-12-02Merge branch 'fix_keep_around_ref' into 'master'Zeger-Jan van de Weg
Allow internal fetches to see all hidden references See merge request gitlab-org/gitaly!1640
2019-12-02Allow internal fetches to see all hidden referencesValery Sizov
2019-12-02Merge branch 'jc-fix-unstructured-startup-logging' into 'master'Zeger-Jan van de Weg
Configure logging as early as possible Closes #2185 See merge request gitlab-org/gitaly!1666
2019-12-02Merge branch 'jv-fix-ssh-timeout-test' into 'master'Pavlo Strokov
SSHUpload{Pack,Archive}: fix timeout tests Closes #2222 See merge request gitlab-org/gitaly!1664
2019-12-02SSHUpload{Pack,Archive}: fix timeout testsJacob Vosmaer
2019-12-01Configure logging as early as possiblejramsay
2019-11-29Merge branch 'jc-fix-race-test' into 'master'Jacob Vosmaer
Fix upload pack request racy test Closes #2217 See merge request gitlab-org/gitaly!1661
2019-11-29Merge branch 'ps-feature-flag-name-convertion' into 'master'Zeger-Jan van de Weg
Gitaly feature flags are broken: convert underscores to dashes Closes #2216 See merge request gitlab-org/gitaly!1659