File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,10 @@ This changelog goes through all the changes that have been made in each release
4
4
without substantial changes to our git log; to see the highlights of what has
5
5
been added to each release, please refer to the [ blog] ( https://blog.gitea.io ) .
6
6
7
- ## [ 1.16.9] ( https://github.com/go-gitea/gitea/releases/tag/1 .16.9 ) - 2022-06-20
7
+ ## [ 1.16.9] ( https://github.com/go-gitea/gitea/releases/tag/v1 .16.9 ) - 2022-06-21
8
8
9
9
* BUGFIXES
10
+ * Release page show all tags in compare dropdown (#20070 ) (#20071 )
10
11
* Fix permission check for delete tag (#19985 ) (#20001 )
11
12
* Only log non ErrNotExist errors in git.GetNote (#19884 ) (#19905 )
12
13
* Use exact search instead of fuzzy search for branch filter dropdown (#19885 ) (#19893 )
Original file line number Diff line number Diff line change @@ -98,7 +98,14 @@ func releasesOrTags(ctx *context.Context, isTagList bool) {
98
98
listOptions .PageSize = setting .API .MaxResponseItems
99
99
}
100
100
101
- tags , err := ctx .Repo .GitRepo .GetTags (listOptions .GetStartEnd ())
101
+ // TODO(20073) tags are used for compare feature witch needs all tags
102
+ // filtering is doen at the client side atm
103
+ tagListStart , tagListEnd := 0 , 0
104
+ if isTagList {
105
+ tagListStart , tagListEnd = listOptions .GetStartEnd ()
106
+ }
107
+
108
+ tags , err := ctx .Repo .GitRepo .GetTags (tagListStart , tagListEnd )
102
109
if err != nil {
103
110
ctx .ServerError ("GetTags" , err )
104
111
return
You can’t perform that action at this time.
0 commit comments