File tree 3 files changed +24
-5
lines changed
3 files changed +24
-5
lines changed Original file line number Diff line number Diff line change 1
1
name = " GitHub"
2
2
uuid = " bc5e4493-9b4d-5f90-b8aa-2b2bcaad7a26"
3
- version = " 5.8.1 "
3
+ version = " 5.8.2 "
4
4
5
5
[deps ]
6
6
Base64 = " 2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Original file line number Diff line number Diff line change 10
10
11
11
namefield (tag:: Tag ) = tag. sha
12
12
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
15
19
return Tag (result)
16
20
end
17
21
18
22
@api_default function tags (api:: GitHubAPI , repo; options... )
19
23
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
20
32
return map (Tag, result), paged_data
21
33
end
22
34
Original file line number Diff line number Diff line change @@ -240,10 +240,17 @@ end
240
240
@test ref. object[" type" ] == " commit"
241
241
242
242
# 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"
245
246
exptag = tag (reponame, version; auth= auth)
246
247
@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"
247
254
end
248
255
249
256
@testset " URI constructions" begin
You can’t perform that action at this time.
0 commit comments