-
- Downloads
Merge branch '22271-drone-tag-pipeline-build' into 'master'
Fix lightweight tags not processed correctly by GitTagPushService ## What does this MR do? Fix lightweight tags not processed correctly by GitTagPushService ## Are there points in the code the reviewer needs to double check? No ## Why was this MR needed? Lightweight tags were being processed incorrectly, causing tag triggers to receive wrong information and not function properly. ## Does this MR meet the acceptance criteria? - [ ] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [ ] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [ ] API support added - Tests - [ ] Added for this feature/bug - [ ] All builds are passing - [ ] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [ ] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [ ] Branch has no merge conflicts with `master` (if you do - rebase it please) - [ ] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? Closes #22271 See merge request !6532 Former-commit-id: 49077651
No related branches found
No related tags found
Showing
- CHANGELOG.md 1 addition, 0 deletionsCHANGELOG.md
- Gemfile 1 addition, 1 deletionGemfile
- Gemfile.lock 3 additions, 3 deletionsGemfile.lock
- app/controllers/projects/tags_controller.rb 1 addition, 1 deletionapp/controllers/projects/tags_controller.rb
- app/models/repository.rb 12 additions, 12 deletionsapp/models/repository.rb
- app/services/delete_branch_service.rb 1 addition, 1 deletionapp/services/delete_branch_service.rb
- app/services/delete_tag_service.rb 1 addition, 1 deletionapp/services/delete_tag_service.rb
- app/services/git_tag_push_service.rb 2 additions, 2 deletionsapp/services/git_tag_push_service.rb
- app/views/projects/branches/_branch.html.haml 1 addition, 1 deletionapp/views/projects/branches/_branch.html.haml
- app/views/projects/issues/_related_branches.html.haml 1 addition, 1 deletionapp/views/projects/issues/_related_branches.html.haml
- app/views/projects/tags/_tag.html.haml 1 addition, 1 deletionapp/views/projects/tags/_tag.html.haml
- lib/api/entities.rb 2 additions, 2 deletionslib/api/entities.rb
- lib/gitlab/data_builder/push.rb 1 addition, 1 deletionlib/gitlab/data_builder/push.rb
- spec/finders/branches_finder_spec.rb 1 addition, 1 deletionspec/finders/branches_finder_spec.rb
- spec/finders/tags_finder_spec.rb 1 addition, 1 deletionspec/finders/tags_finder_spec.rb
- spec/models/repository_spec.rb 7 additions, 7 deletionsspec/models/repository_spec.rb
- spec/services/git_tag_push_service_spec.rb 123 additions, 50 deletionsspec/services/git_tag_push_service_spec.rb
- spec/views/projects/issues/_related_branches.html.haml_spec.rb 1 addition, 1 deletion...views/projects/issues/_related_branches.html.haml_spec.rb
Loading
| Loading
| @@ -51,7 +51,7 @@ gem 'browser', '~> 2.2' |
# Extracting information from a git repository | ||
# Provide access to Gitlab::Git library | ||
gem 'gitlab_git', '~> 10.6.8' | ||
gem 'gitlab_git', '~> 10.7.0' | ||
# LDAP Auth | ||
# GitLab fork with several improvements to original library. For full list of changes | ||
Loading
| Loading
|
Please register or sign in to comment