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-10-19Add latest changes from gitlab-org/gitlab@16-5-stable-eev16.5.0-rc42GitLab Bot
2023-07-19Add latest changes from gitlab-org/gitlab@16-2-stable-eev16.2.0-rc42GitLab Bot
2023-05-17Add latest changes from gitlab-org/gitlab@16-0-stable-eev16.0.0-rc42GitLab Bot
2022-09-20Add latest changes from gitlab-org/gitlab@15-4-stable-eev15.4.0-rc42GitLab Bot
2022-02-18Add latest changes from gitlab-org/gitlab@14-8-stable-eev14.8.0-rc42GitLab Bot
2021-10-20Add latest changes from gitlab-org/gitlab@14-4-stable-eev14.4.0-rc42GitLab Bot
2021-07-20Add latest changes from gitlab-org/gitlab@14-1-stable-eev14.1.0-rc42GitLab Bot
2021-01-20Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42Robert Speicher
2018-11-29Fix deprecation: render :text is deprecated because it does not actually ↵Jasper Maes
render a text/plain response
2018-09-19Enable frozen string in app/controllers/**/*.rbgfyoung
Enables frozen string for the following: * app/controllers/*.rb * app/controllers/admin/**/*.rb * app/controllers/boards/**/*.rb * app/controllers/ci/**/*.rb * app/controllers/concerns/**/*.rb Partially addresses #47424.
2018-06-21[Rails5] Force the `protect_from_forgery` callback run firstblackst0ne
Since Rails 5.0 the `protect_from_forgery` callback doesn't run first by default anymore. [1] Instead it gets inserted into callbacks chain where callbacks get called in order. This commit forces the callback to run first. [1]: https://github.com/rails/rails/commit/39794037817703575c35a75f1961b01b83791191
2018-01-11Adds Rubocop rule for line break around conditionals🙈 jacopo beschi 🙉
2017-09-26Make Prometheus metrics endpoint return empty response when metrics are disabledPawel Chojnacki
2017-07-05Remove the need to use health check tokenPawel Chojnacki
in favor of whitelist that will be used to control the access to monitoring resources
2017-06-02Move Prometheus presentation logic to PrometheusTextPawel Chojnacki
+ Use NullMetrics to mock metrics when unused + Use method_missing in NullMetrics mocking + Update prometheus gem to version that correctly uses transitive dependencies + Ensure correct folders are used in Multiprocess prometheus client tests. + rename Sessions controller's metric
2017-06-02Make login_counter instance variable instead of class one.Pawel Chojnacki
+ remove unecessarey require + fix small formatiing issues
2017-06-02Move most of MetricsController logic to MetricsServicePawel Chojnacki
2017-06-02Use interpolation instead of concatenationPawel Chojnacki
2017-06-02move check if metrics are enabled to before actionPawel Chojnacki
2017-06-02Correctly handle temporary folder for testing multiproces metricsPawel Chojnacki
2017-06-02Use only ENV for metrics folder locationPawel Chojnacki
2017-06-02Bring back the tokenPawel Chojnacki
2017-06-02Split metrics from health controller into metrics controllerPawel Chojnacki