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
2017-07-27Remove superfluous lib: true, type: redis, service: true, models: true, ↵Rémy Coutable
services: true, no_db: true, api: true Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-24Support both internal and external issue trackersJarka Kadlecova
2017-07-07Merge branch 'fix-mrs-merged-immediately' into 'master'Robert Speicher
Don't mark empty MRs as merged on push to the target branch Closes #32800 See merge request !12711
2017-07-07Native group milestonesFelipe Artur
2017-07-07Don't mark empty MRs as merged on push to the target branchSean McGivern
When we push to an MR's target branch, we check if the MR's HEAD commit is contained in the push. This lets us mark MRs as merged if they were merged manually. However, we also added a feature where you can create an empty MR from an issue. If that MR is created around the time of a merge to the default branch, we would process the push after creating the MR, and consider it to be a manual merge. To fix that, we exclude empty MRs from this process. If they are empty, they were empty before the push we're processing, so we shouldn't touch them!
2017-07-04Prevent accidental deletion of protected MR source branch by repeating ↵Douwe Maan
checks before actual deletion
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-15Rename "Slash commands" to "Quick actions"Eric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/27070 Deprecate "chat commands" in favor of "slash commands" We looked for things like: - `slash commmand` - `slash_command` - `slash-command` - `SlashCommand`
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-06-12Only add a description change note when no tasks are updatedJared Deckard
2017-06-08Move diffable? method from Repository to Diff::FileDouwe Maan
2017-06-01Keep trailing newline when picking conflict sectionsSean McGivern
If our side of the conflict file has a trailing newline, and we are picking sections, not editing the whole content, then add a trailing newline back.
2017-05-30Merge branch 'issue_32225_2' into 'master'Kamil Trzciński
Set head pipeline when creating merge requests See merge request !11669
2017-05-29Set head pipeline when creating merge requestsFelipe Artur
2017-05-26Fix counters cache invalidation for Issues and Merge RequestsValery Sizov
2017-05-22Add transient head_pipeline_of to pipeline factoriesFelipe Artur
2017-05-18Stop MR conflict code from blowing up when branches are missingDouwe Maan
2017-05-15[Spec optimization] Joining one-line 'it' blocksValery Sizov
2017-05-12Merge branch 'fix-conflict-resolution-with-corrupt-repos' into 'master' Douwe Maan
Fix conflict resolution from corrupted upstream Closes gitlab-ee#2128 See merge request !11298
2017-05-12Fix conflict resolution from corrupted upstreamSean McGivern
I don't know why this happens exactly, but given an upstream and fork repository from a customer, both of which required GC, resolving conflicts would corrupt the fork so badly that it couldn't be cloned. This isn't a perfect fix for that case, because the MR may still need to be merged manually, but it does ensure that the repository is at least usable. My best guess is that when we generate the index for the conflict resolution (which we previously did in the target project), we obtain a reference to an OID that doesn't exist in the source, even though we already fetch the refs from the target into the source. Explicitly setting the source project as the place to get the merge index from seems to prevent repository corruption in this way.
2017-05-12Move update_assignee_cache_counts to the serviceValery Sizov
2017-05-10Enable the Style/TrailingCommaInLiteral copRémy Coutable
Use the EnforcedStyleForMultiline: no_comma option. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-08Fix specs 2Felipe Artur
2017-05-08Fix SpecsFelipe Artur
2017-05-06Merge branch 'blackst0ne/gitlab-ce-add_system_note_for_editing_issuable'Sean McGivern
2017-05-05Updated specsblackst0ne
2017-05-04Backport of multiple_assignees_feature [ci skip]Valery Sizov
2017-05-04Allow to create new branch and empty WIP merge request from issue pageAlfredo Sumaran
2017-05-03Merge branch 'rs-described_class-cop-2' into 'master' Douwe Maan
Enable `RSpec/DescribedClass` cop and correct violations See merge request !10930
2017-05-02Merge branch '26488-target-disabled-mr' into 'master' Sean McGivern
Fix 404 when upstream disabled merge requests Closes #26488 See merge request !10427
2017-05-01Auto-correct `RSpec/DescribedClass` violationsRobert Speicher
2017-04-27Fix 404 when upstream has disabled merge requestsmhasbini
2017-04-26Enable RSpec/FilePath copSean McGivern
- Ignore JS fixtures - Ignore qa directory - Rewrite concern specs to put concern name first
2017-04-06Merge branch '30291-reopen-mr' into 'master'Sean McGivern
Search for opened MRs - include reopened MRs Closes #30291 See merge request !10407
2017-04-06Search for opened MRs - include reopened MRsJarka Kadlecova
2017-04-06Merge branch '29364-private-projects-mr-fix'Sean McGivern
Don’t show source project name when user does not have access See merge request !2081
2017-03-29Create todos only for new mentionsJarka Kadlecova
2017-03-28Use `:empty_project` where possible in service specsRobert Speicher
2017-03-17Allow creating merge request even if target branch is not specified in query ↵Adam Niedzielski
params Closes #28890
2017-03-17Add ability to disable Merge Request URL on pushAlex Sanford
2017-03-08Speed up MergeRequest::RefreshService spec by combining examplesStan Hu
2017-03-01Update occurrences of MWBS to MWPSJames Lopez
Rename column in the database Rename fields related to import/export feature Rename API endpoints Rename documentation links Rename the rest of occurrences in the code Replace the images that contain the words "build succeeds" and docs referencing to them Make sure pipeline is green and nothing is missing. updated doc images renamed only_allow_merge_if_build_succeeds in projects and fixed references more updates fix some spec failures fix rubocop offences fix v3 api spec fix MR specs fixed issues with partials fix MR spec fix alignment add missing v3 to v4 doc wip - refactor v3 endpoints fix specs fix a few typos fix project specs copy entities fully to V3 fix entity error more fixes fix failing specs fixed missing entities in V3 API remove comment updated code based on feedback typo fix spec
2017-02-28Merge branch 'only-create-unmergeable-todo-once' into 'master' Kamil Trzciński
Only create unmergeable todos once Closes #28555 See merge request !9513
2017-02-24Only create unmergeable todos onceSean McGivern
Previously, we created an unmergeable todo when a merge request: 1. Had merge when pipeline succeeds set. 2. Became unmergeable. However, when merge when pipeline succeeds fails due to unmergeability, the flag isn't actually removed. And a merge request can become unmergeable multiple times, as every time the target branch is updated we need to re-check the mergeable status. This means that if the todo was marked done, and the MR was checked again, a new todo would be created for the same event. Instead of checking this, we should create the todo from the service responsible for merging when the pipeline succeeds. That way the todo is guaranteed to only be created when we care about it.
2017-02-24Rename commit_file, commit_dir and remove_file and update specsDouwe Maan
2017-02-23Revert "Enable Style/DotPosition"Douwe Maan
This reverts commit e00fb2bdc2090e9cabeb1eb35a2672a882cc96e9. # Conflicts: # .rubocop.yml # .rubocop_todo.yml # lib/gitlab/ci/config/entry/global.rb # lib/gitlab/ci/config/entry/jobs.rb # spec/lib/gitlab/ci/config/entry/factory_spec.rb # spec/lib/gitlab/ci/config/entry/global_spec.rb # spec/lib/gitlab/ci/config/entry/job_spec.rb # spec/lib/gitlab/ci/status/build/factory_spec.rb # spec/lib/gitlab/incoming_email_spec.rb
2017-02-23Revert "Prefer leading style for Style/DotPosition"Douwe Maan
This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b.
2017-02-23Fix new offensesDouwe Maan
2017-02-23Enable Style/WordArrayDouwe Maan
2017-02-23Prefer leading style for Style/DotPositionDouwe Maan