Skip to content

Commit 20672eb

Browse files
authored
Look through lightweight tags pointing to annotated tags. (#212)
1 parent fcf068f commit 20672eb

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "GitHub"
22
uuid = "bc5e4493-9b4d-5f90-b8aa-2b2bcaad7a26"
3-
version = "5.8.1"
3+
version = "5.8.2"
44

55
[deps]
66
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"

src/git/tag.jl

+14-2
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,25 @@ end
1010

1111
namefield(tag::Tag) = tag.sha
1212

13-
@api_default function tag(api::GitHubAPI, repo, tag_obj; options...)
14-
result = gh_get_json(api, "/repos/$(name(repo))/git/refs/tags/$(name(tag_obj))"; options...)
13+
@api_default function tag(api::GitHubAPI, repo, tag_ref; options...)
14+
result = gh_get_json(api, "/repos/$(name(repo))/git/refs/tags/$(name(tag_ref))"; options...)
15+
if result["object"]["type"] == "tag"
16+
# lightweight tag pointing to an annotated tag
17+
result = gh_get_json(api, "/repos/$(name(repo))/git/tags/$(result["object"]["sha"])"; options...)
18+
end
1519
return Tag(result)
1620
end
1721

1822
@api_default function tags(api::GitHubAPI, repo; options...)
1923
result, paged_data = gh_get_paged_json(api, "/repos/$(name(repo))/git/refs/tags"; options...)
24+
result = map(result) do entry
25+
if entry["object"]["type"] == "tag"
26+
# lightweight tag pointing to an annotated tag
27+
gh_get_json(api, "/repos/$(name(repo))/git/tags/$(entry["object"]["sha"])"; options...)
28+
else
29+
entry
30+
end
31+
end
2032
return map(Tag, result), paged_data
2133
end
2234

test/read_only_api_tests.jl

+9-2
Original file line numberDiff line numberDiff line change
@@ -240,10 +240,17 @@ end
240240
@test ref.object["type"] == "commit"
241241

242242
# Tag API
243-
reponame = "QuantEcon/Expectations.jl"
244-
version = "v1.0.1"
243+
reponame = "JuliaGPU/Adapt.jl"
244+
## lightweight tag
245+
version = "v0.1.0"
245246
exptag = tag(reponame, version; auth=auth)
246247
@test isa(exptag, Tag)
248+
@test exptag.object["type"] == "commit"
249+
## lightweight tag pointing to an annotated tag (should return the annotated tag)
250+
version = "v3.4.0"
251+
exptag = tag(reponame, version; auth=auth)
252+
@test isa(exptag, Tag)
253+
@test exptag.object["type"] == "commit"
247254
end
248255

249256
@testset "URI constructions" begin

0 commit comments

Comments
 (0)