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
2019-12-16Add latest changes from gitlab-org/gitlab@masterogolowinski-master-patch-80898GitLab Bot
2019-12-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-30Merge branch 'security-hide_merge_request_ids_on_emails' into 'master'GitLab Release Tools Bot
Prevent disclosure of merge request id via email See merge request gitlab/gitlabhq!3313
2019-08-19Prevent disclosure of merge request id via emailFelipe Artur
Do not disclosure merge request id via email for unauthorized users when closing issues.
2019-08-18Improve system notes for Zoom linksJacopo
changes: @user a Zoom call was added to this issue into: @user added a Zoom call to this issue Same concept appleis for "removed"
2019-07-30Merge branch ↵Robert Speicher
'63547-add-system-notes-for-when-a-zoom-call-was-added-removed-from-an-issue' into 'master' Resolve "Add system notes for when a zoom call was added/removed from an issue" Closes #63547 See merge request gitlab-org/gitlab-ce!30857
2019-07-29Add system notes for when a zoom call was added/removed from an issueJacopo
Add a zoom link added / removed system note when a zoom link is being added / removed to the issue description.
2019-07-25Remove code related to object hierarchy in MySQLHeinrich Lee Yu
These are not required because MySQL is not supported anymore
2019-07-24Prefer `flat_map` over `map` + `flatten` in specsPeter Leitzen
Although `flat_map` is equivalent to `map` + `flatten(1)` (note the level 1) we can apply this same refactoring to all cases.
2019-07-09Skip spam check for task list updatesFelipe Artur
Task list updates should not mark users action as spam on akismet.
2019-06-21Add reorder action to Project IssuesControllerBrett Walker
to support manual sorting on the frontend
2019-05-16Include MR information if possible when emailing notification of closing an ↵Michał Zając
issue
2019-04-12Add frozen_string_literal to spec/servicesThong Kuah
Probably useful as we often move these files to "new" files.
2019-04-05Fenced blockquotes to not change source line posBrett Walker
Replaces blockquote fences with \n, keeping the line numbering intact.
2019-04-01add a uniq constraints on issues and mrs labelsAntoine Huret
2019-02-14Check issue milestone availabilityJarka Košanová
Add project when creating milestone in specs We validate milestone is from the same project/parent group as issuable -> we need to set project in specs correctly Improve methods names and specs organization
2019-02-07Enable fast task lists for merge requestsBrett Walker
Allow single tasks to be updated quickly
2019-01-31Added changelog and danger fixesBrett Walker
2019-01-31Specs for Issue::UpdateServiceBrett Walker
2019-01-24Enable the Layout/ExtraSpacing copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-07Remove caching of CSV fileHeinrich Lee Yu
Load whole file in memory to simplify code
2019-01-07Improve email messagesHeinrich Lee Yu
Also refactored cleanup view to use the same localized string
2019-01-07Import CSV BackendHeinrich Lee Yu
Process CSV uploads async using a worker then email results
2018-12-14Delete confidential issue todos for guestsFelipe Artur
Fix leaking information of confidential issues on TODOs when user is downgraded to guest access.
2018-11-12Extract code from Issues::MoveServiceJarka Košanová
Extract code to make it easier reusable - introduce AttributesRewriter and ContentRewriter - support group entites when rewriting content - make Uploader copy_to working for Namespaces
2018-11-02Add email for milestone changeChantal Rollison
2018-10-04Move issue related_branches to serviceFelipe Artur
Moves the related_branches method from Issue model to RelatedBranchesService
2018-09-07Use ResourceLabelEvent for tracking label changesJan Provaznik
2018-08-21Only load issue notes once when getting related MRsSean McGivern
As we always call both methods from the controller - and elsewhere we call the more general method - and one uses all notes and the other uses system notes, then we should just load the notes and their authors once, and filter on the Ruby side.
2018-08-21Fix CI pipelines N+1 in Issues::ReferencedMergeRequestsServiceSean McGivern
Whether the preloading belongs in the service or the controller is arguable, here. As the service is only used for one controller action, it seems reasonable to put it in the service, but that is not a definitive answer. Adding the preloads for MR project routes here doesn't seem to work, perhaps because of https://github.com/rails/rails/issues/32140.
2018-08-21Fix routes N+1 in Issues::ReferencedMergeRequestsService#executeSean McGivern
Sorting here needs the project routes to be loaded, including the namespace routes.
2018-08-21Fix authors N+1 in Issues::ReferencedMergeRequestsServiceSean McGivern
`#referenced_merge_requests` preloaded too many associations. Award emoji, for instance, are completely unnecessary here. `#closed_by_merge_requests` had the opposite problem: `#all_references` needs each item's author, and these weren't preloaded.
2018-08-21Move Issue#{referenced,closed_by}_merge_requests to serviceSean McGivern
These methods don't really need to be on the Issue model. Issue#related_branches can also be moved to a service, but we can do that in a separate commit. This commit does not change any behaviour; it just moves code around, renames the service, and refactors the specs.
2018-08-06Merge branch 'issue_44821' into 'master'Sean McGivern
Retrieve merge request closing issues from database cache Closes #44821 See merge request gitlab-org/gitlab-ce!20911
2018-08-06Retrieve merge request closing issues from database cacheFelipe Artur
2018-07-30Delete todos when users loses target read permissionsJarka Kadlecová
2018-07-11Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao