-
- Downloads
Merge Request on forked projects
The good: - You can do a merge request for a forked commit and it will merge properly (i.e. it does work). - Push events take into account merge requests on forked projects - Tests around merge_actions now present, spinach, and other rspec tests - Satellites now clean themselves up rather then recreate The questionable: - Events only know about target projects - Project's merge requests only hold on to MR's where they are the target - All operations performed in the satellite The bad: - Duplication between project's repositories and satellites (e.g. commits_between) (for reference: http://feedback.gitlab.com/forums/176466-general/suggestions/3456722-merge-requests-between-projects-repos) Fixes: Make test repos/satellites only create when needed -Spinach/Rspec now only initialize test directory, and setup stubs (things that are relatively cheap) -project_with_code, source_project_with_code, and target_project_with_code now create/destroy their repos individually -fixed remote removal -How to merge renders properly -Update emails to show project/branches -Edit MR doesn't set target branch -Fix some failures on editing/creating merge requests, added a test -Added back a test around merge request observer -Clean up project_transfer_spec, Remove duplicate enable/disable observers -Ensure satellite lock files are cleaned up, Attempted to add some testing around these as well -Signifant speed ups for tests -Update formatting ordering in notes_on_merge_requests -Remove wiki schema update Fixes for search/search results -Search results was using by_project for a list of projects, updated this to use in_projects -updated search results to reference the correct (target) project -udpated search results to print both sides of the merge request Change-Id: I19407990a0950945cc95d62089cbcc6262dab1a8
parent
fd033671
No related branches found
No related tags found
Showing
- app/views/search/_result.html.haml 2 additions, 2 deletionsapp/views/search/_result.html.haml
- app/views/shared/_merge_requests.html.haml 1 addition, 1 deletionapp/views/shared/_merge_requests.html.haml
- config/routes.rb 1 addition, 0 deletionsconfig/routes.rb
- db/fixtures/development/10_merge_requests.rb 2 additions, 1 deletiondb/fixtures/development/10_merge_requests.rb
- db/fixtures/test/001_repo.rb 10 additions, 0 deletionsdb/fixtures/test/001_repo.rb
- db/migrate/20130419190306_allow_merges_for_forks.rb 14 additions, 0 deletionsdb/migrate/20130419190306_allow_merges_for_forks.rb
- db/schema.rb 5 additions, 4 deletionsdb/schema.rb
- features/dashboard/dashboard.feature 1 addition, 0 deletionsfeatures/dashboard/dashboard.feature
- features/project/forked_merge_requests.feature 41 additions, 0 deletionsfeatures/project/forked_merge_requests.feature
- features/project/merge_requests.feature 1 addition, 0 deletionsfeatures/project/merge_requests.feature
- features/steps/dashboard/dashboard.rb 1 addition, 0 deletionsfeatures/steps/dashboard/dashboard.rb
- features/steps/dashboard/dashboard_event_filters.rb 1 addition, 1 deletionfeatures/steps/dashboard/dashboard_event_filters.rb
- features/steps/dashboard/dashboard_merge_requests.rb 13 additions, 7 deletionsfeatures/steps/dashboard/dashboard_merge_requests.rb
- features/steps/group/group.rb 2 additions, 1 deletionfeatures/steps/group/group.rb
- features/steps/project/deploy_keys.rb 3 additions, 0 deletionsfeatures/steps/project/deploy_keys.rb
- features/steps/project/project_fork.rb 7 additions, 0 deletionsfeatures/steps/project/project_fork.rb
- features/steps/project/project_forked_merge_requests.rb 138 additions, 0 deletionsfeatures/steps/project/project_forked_merge_requests.rb
- features/steps/project/project_merge_requests.rb 12 additions, 6 deletionsfeatures/steps/project/project_merge_requests.rb
- features/steps/shared/paths.rb 10 additions, 2 deletionsfeatures/steps/shared/paths.rb
- features/support/env.rb 2 additions, 2 deletionsfeatures/support/env.rb
Please register or sign in to comment