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
2021-11-18Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42GitLab Bot
2021-04-21Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2018-11-27Remove `options` assignment from ExtractsPathRobert Speicher
This assignment is only used by the Projects::NetworkController, so we're needlessly assigning this very generically-named instance variable on every controller which includes `ExtractsPath`, which is quite a few. Further, the way we were passing this hash to `HashWithIndifferentAccess` caused the following deprecation warning after upgrading to Rails 5: DEPRECATION WARNING: #to_hash unexpectedly ignores parameter filtering, and will change to enforce it in Rails 5.1. Enable `raise_on_unfiltered_parameters` to respect parameter filtering, which is the default in new applications. For the existing deprecated behaviour, call #to_unsafe_h instead. (called from new at lib/extracts_path.rb:116)
2018-09-26Enable even more frozen string in app/controllersgfyoung
Enables frozen string for some vestigial files as well as the following: * app/controllers/projects/**/*.rb * app/controllers/sherlock/**/*.rb * app/controllers/snippets/**/*.rb * app/controllers/users/**/*.rb Partially addresses #47424.
2018-03-06Fix Gitaly n+1 in NetworkController#showAndrew Newdigate
2018-02-01Track and act upon the number of executed queriesYorick Peterse
This ensures that we have more visibility in the number of SQL queries that are executed in web requests. The current threshold is hardcoded to 100 as we will rarely (maybe once or twice) change it. In production and development we use Sentry if enabled, in the test environment we raise an error. This feature is also only enabled in production/staging when running on GitLab.com as it's not very useful to other users.
2017-09-19Detect n+1 issues involving GitalyAndrew Newdigate
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2016-11-07Refactor method nameHiroyuki Sato
2016-11-07Fix bug of json request urlHiroyuki Sato
2016-11-06Remove 'extended_sha1' option from ExtractsPath moduleHiroyuki Sato
2016-11-06Separete a very long lineHiroyuki Sato
2016-11-06Network page appear with an error message when entering nonexistent git revisionHiroyuki Sato
2016-07-01Enable Style/EmptyLines cop, remove redundant onesGrzegorz Bizon
2015-07-30Fix network graph when branch name has single quotesStan Hu
Closes https://github.com/gitlabhq/gitlabhq/issues/9500
2015-04-20Fixed the Rails/ActionFilter copJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2015-02-20Move 'require_non_empty_project' filter to front so 'assign_ref_vars' ↵Douwe Maan
doesn't 404.
2015-01-27Explicitly set before_filter for ref-related controllersDmitriy Zaporozhets
2014-11-05remove auth duplicationValery Sizov
2014-10-13Factor authorize_push! and authorize_code_access!Ciro Santilli
with existing method_missing. Pattern already used extensively, so let's be consistent and use it everywhere.
2013-08-21Render not found when failing to look for a commitHiroyuki Sato
2013-06-23Move projects controllers/views in Projects moduleDmitriy Zaporozhets