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
2022-04-20Add latest changes from gitlab-org/gitlab@14-10-stable-eev14.10.0-rc42GitLab Bot
2022-02-18Add latest changes from gitlab-org/gitlab@14-8-stable-eev14.8.0-rc42GitLab Bot
2021-11-18Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42GitLab Bot
2021-10-20Add latest changes from gitlab-org/gitlab@14-4-stable-eev14.4.0-rc42GitLab Bot
2021-06-16Add latest changes from gitlab-org/gitlab@14-0-stable-eev14.0.0-rc42GitLab Bot
2021-04-27Add latest changes from gitlab-org/security/gitlab@13-11-stable-eeGitLab Bot
2021-04-21Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot
2021-02-18Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot
2020-12-17Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot
2020-11-19Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2019-12-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-06Fix Ruby 2.5 compatibility for diverging counts of branchesDaniel Gerhardt
!31480 does not fully restore compatibility because another Ruby 2.6 feature besides `Enumerable#filter` was used in commit ca5cd7b7. The use of `Enumerable#to_h`'s block is now replaced by an explicit `Enumerable#map` call. Error message: TypeError (wrong element type Gitlab::Git::Branch at 0 (expected array)): app/controllers/projects/branches_controller.rb:53:in `to_h' See https://bugs.ruby-lang.org/issues/15143. Fixes #64143.
2019-07-05Create private merge requests in forksPhil Hughes
https://gitlab.com/gitlab-org/gitlab-ce/issues/58583
2019-07-01Merge branch '58583-confidential-mr-branch-backend' into 'master'Rémy Coutable
Support creating an MR/branch on a fork from an issue See merge request gitlab-org/gitlab-ce!29831
2019-07-01Check if user can `update_issue` on projectPatrick Bajao
If user can update an issue under the specified confidential issue project, should be able to find the project.
2019-06-28Fix issues when creating system notesPatrick Bajao
When `confidential_issue_project_id` is set and the issue is under that project, create the a note about branch creation in that project. If not, do nothing. When creating `new_merge_request` system note, set the project where the MR will be referenced from so it'll be linked to when the MR is created in another project.
2019-06-28Support branch creation from confidential issuePatrick Bajao
Accept a `confidential_issue_project_id` param which will be used for the system note target. This also includes some refactoring on the spec to use shared examples.
2019-06-28Add endpoint for fetching diverging commit countsIgor Drozdov
Extract diverging_commit_counts into a service class
2019-04-22Introduce ServiceResponse to wrap around responseLin Jen-Shin
See https://gitlab.com/gitlab-org/gitlab-ce/issues/60730
2019-04-12Remove rails-deprecated_sanitizer dependencyDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2019-04-09Update comments about N + 1 Gitaly callsZeger-Jan van de Weg
To make sure all known issues are linked to the correct epic, I've gone through the code base, and updated the comments where required.
2019-03-27Externalize strings in projects controllersMartin Wortschack
- concerns - dashboard - groups - import
2019-02-11Adapt that diverging commits could be just one barLin Jen-Shin
refactors the ui for diverging commits so that it's only a single bar instead of two separate bars
2018-12-05Rename project's pipelines relationFrancisco Javier López
2018-11-23render :nothing option is deprecated, Use head method to respond with empty ↵Jasper Maes
response body.
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-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-07-09Updates from `rubocop -a`Lin Jen-Shin
2018-06-19Counting commits is done by GitalyZeger-Jan van de Weg
Closes https://gitlab.com/gitlab-org/gitaly/issues/382
2018-04-03Re-enable allowing n+1 Gitaly calls for cold cacheLin Jen-Shin
Whenever cache is enabled and cold, branches index still makes n+1 calls. Make sure we catch this.
2018-03-28Reuse root_ref_hash for performance on BranchesTakuya Noguchi
2018-03-06Add overview of branches and a filter for active/stale branchesTakuya Noguchi
2017-12-27Refactor success status in branch controllerMateusz Bajorski
2017-12-26Fix when branch creation fails don't post system noteMateusz Bajorski
Closes #24347
2017-11-28Replce kubernetes_service and deployment_service to deployment_platformShinya Maeda
2017-10-27Fetch the merged branches at onceLin Jen-Shin (godfat)
2017-09-25Fix the default branches sorting to actually be 'Last updated'Rémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-09-19Detect n+1 issues involving GitalyAndrew Newdigate
2017-07-28Merge branch '26890-sort-branches' into 'master'Rémy Coutable
This makes the default sort order for branches 'recently updated' rather than by name. Closes #26890 See merge request !8666
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-09Revert 'New file from interface on existing branch'Douwe Maan
2017-05-09Merge request widget redesignFatih Acet
2017-05-08Add confirm delete protected branch modalSam Rose