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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-02-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-09-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-08-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-05-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-03-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-10-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-10-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-10-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-09-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-04Avoid calling freeze on already frozen strings in lib/gitlabdineshpanda
2019-07-29Further remove code branches by database typeAndreas Brandl
We dropped MySQL support and a lot of mysql specific code has been removed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/29608. This comes in from the other direction and removes any `if postgresql?` branches.
2019-07-10Add a rubocop for Rails.loggerMayra Cabrera
Suggests to use a JSON structured log instead Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/54102
2019-05-05Run rubocop -a on CE filesStan Hu
2018-11-13Enable even more frozen string in lib/gitlabgfyoung
Enables frozen string for the following: * lib/gitlab/fogbugz_import/**/*.rb * lib/gitlab/gfm/**/*.rb * lib/gitlab/git/**/*.rb * lib/gitlab/gitaly_client/**/*.rb * lib/gitlab/gitlab_import/**/*.rb * lib/gitlab/google_code_import/**/*.rb * lib/gitlab/gpg/**/*.rb * lib/gitlab/grape_logging/**/*.rb * lib/gitlab/graphql/**/*.rb * lib/gitlab/graphs/**/*.rb * lib/gitlab/hashed_storage/**/*.rb * lib/gitlab/health_checks/**/*.rb Partially address gitlab-org/gitlab-ce#47424.
2018-09-11Disable existing offenses for the CodeReuse copsYorick Peterse
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
2018-06-27Gitaly metrics check for read/writeabilityZeger-Jan van de Weg
Prior to this change, health checks checked for writeability of the NFS shards. Given we're moving away from that, this patch extends the checks for Gitaly to check for read and writeability. Potentially some dashboards will break, as over time these metrics will no longer appear as Prometheus doesn't get the data anymore. Observability in the circuit breaker will be reduced, but its not expected to be turned on and the circuit breaker is being removed soon too. Closes https://gitlab.com/gitlab-org/gitaly/issues/1218
2018-06-20More gitaly disk access blocksJacob Vosmaer (GitLab)
2018-06-15Rails5 fix connection execute return integer instead of stringJasper Maes
2018-06-01Add "deny disk access" Gitaly feature (tripswitch)Jacob Vosmaer (GitLab)
2018-03-21Route path lookups through legacy_disk_pathJacob Vosmaer
2018-03-08[CE] Add Naming/FileName rule checking expected class/module per filenameGabriel Mazetto
2018-01-25Add a gRPC health check to ensure Gitaly is upStan Hu
This will enable Geo to skip shards that not operational. Relates to gitlab-org/gitlab-ee#4329
2017-09-22Allow the git circuit breaker to correctly handle missing repository storagesNick Thomas
2017-09-21Don't memoize storage configuration on `FsShardsCheck`Bob Van Landuyt
These values are already coming from memory, so we don't need to memoize. If we do memoize these, than the would not be stubbed when calling `stub_storage_settings` in specs
2017-09-19Fix the filesystem shard health check to check all configured shardsNick Thomas
2017-08-29replace `is_successful?` with `successful?`Maxim Rydkin
2017-08-04Add a Circuitbreaker for storage pathsBob Van Landuyt
2017-07-27add comment explaining use of shell commands and file operations in the same ↵Pawel Chojnacki
methods