Merge branch 'sh-fix-annotated-tags-pointing-to-blob' into 'master'
Fix Error 500 when repositories contain annotated tags pointing to blobs Closes #27228 See merge request !8800
This commit is contained in:
commit
6ccc4eb42a
3 changed files with 40 additions and 1 deletions
|
@ -1188,7 +1188,18 @@ class Repository
|
|||
end
|
||||
|
||||
def tags_sorted_by_committed_date
|
||||
tags.sort_by { |tag| tag.dereferenced_target.committed_date }
|
||||
tags.sort_by do |tag|
|
||||
# Annotated tags can point to any object (e.g. a blob), but generally
|
||||
# tags point to a commit. If we don't have a commit, then just default
|
||||
# to putting the tag at the end of the list.
|
||||
target = tag.dereferenced_target
|
||||
|
||||
if target
|
||||
target.committed_date
|
||||
else
|
||||
Time.now
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def keep_around_ref_name(sha)
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: Fix Error 500 when repositories contain annotated tags pointing to blobs
|
||||
merge_request:
|
||||
author:
|
|
@ -90,6 +90,30 @@ describe Repository, models: true do
|
|||
|
||||
it { is_expected.to eq(['v1.1.0', 'v1.0.0']) }
|
||||
end
|
||||
|
||||
context 'annotated tag pointing to a blob' do
|
||||
let(:annotated_tag_name) { 'annotated-tag' }
|
||||
|
||||
subject { repository.tags_sorted_by('updated_asc').map(&:name) }
|
||||
|
||||
before do
|
||||
options = { message: 'test tag message\n',
|
||||
tagger: { name: 'John Smith', email: 'john@gmail.com' } }
|
||||
repository.rugged.tags.create(annotated_tag_name, 'a48e4fc218069f68ef2e769dd8dfea3991362175', options)
|
||||
|
||||
double_first = double(committed_date: Time.now - 1.second)
|
||||
double_last = double(committed_date: Time.now)
|
||||
|
||||
allow(tag_a).to receive(:dereferenced_target).and_return(double_last)
|
||||
allow(tag_b).to receive(:dereferenced_target).and_return(double_first)
|
||||
end
|
||||
|
||||
it { is_expected.to eq(['v1.1.0', 'v1.0.0', annotated_tag_name]) }
|
||||
|
||||
after do
|
||||
repository.rugged.tags.delete(annotated_tag_name)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue