-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix bug of branch/tag selector in the issue sidebar #32744
Conversation
Didn’t look into it, but why RepoBranchTagSelector is not used here? |
TBH, this selector should be completely removed. I don't see it is useful in modern Gitea. It seems that selector was added in old days when Gitea doesn't have proper Issue/PR support. Anyone is really using that selector? |
It seems that it is used only in this pkace. |
History: Add possibility to record branch or tag information in an issue (#780) It does nothing more than just saving the branch/tag name into database .............. |
I think it is not a selector here, but a hint. |
|
Just some notice: |
After reviewed the history, the feature aims to record which branch/tag happened of this issue. It looks like it maybe useful when reporting a bug. It's incomplete to have filter in issues page. Since Github has no such feature, we commonly record a version, OS, and other things in the issue content. Another alternative feature is label. Users can create labels with the same name as versions and track them with labels. So is this a really necessary feature? Maybe not. |
I think this feature can be merged into development as it is used for developers to track in which branch/tag happened of this issue. |
remove it |
Although I suggested to remove it, actually "how to remove it" should be carefully designed. Since this feature has been there for long time, we are not sure whether it is sure that nobody needs it. If you just remove it completely and drop the column, then what if some 1.23 users come to complain: please give that selector back to me, what could you do? Ideally the removal should be like this:
|
170ff1e
to
410422f
Compare
Two questions. 1.what is shown/managed for issues that do have this information ? Will this break something for those instances that this was previously used one This might not impact how we work... Just trying to collect the information. Multiple LTS feature branches at different branching from MAIN... I guess review comments can mention what branch the chreeypicked fix should be a applied to (or rewritten for). Not sure how 31899 works ATM so I can't comment |
Nobody knows at the momemt, that's why it needs to collect feedbacks. This info is only stored in database and displayed on the UI, no other logic.
For example: just write the branch/tag name in the issue title? then it is still "stored in database" and "displayed on the UI"
It could also use other approaches, eg: labels, milestones, projects to bind an issue to a "feature" |
Or maybe we can migrate the data to the new table in the coming PR. Then I need to support tag |
Why? Have you figured out how end users use that field? Is it certain that the Ref could be used in your PR? |
so if it is only for display purposes then how it is being used presently can be complimented (honestly in my dev setup its only me that does this out of 4 of us :) ). Be it labels or text, yes there are ways to indicate to the wider team what branch to consider or what tag to check the issue again. I am just nervous about what happens to the db etc if this is dropped/removed. |
So in 1.23 we only hide it, and will drop it in next release if it is not used. |
Is this ready to review or merge? |
Few question , will the new feature #31899 block next release if this pr merged? |
This PR's question is: how do you use that branch/tag selector? |
I moved #31899 from v1.23. And I think that will not be a block of this PR. The purpose is different. That PR added a development sidebar section to record which branches/commits/pull requests which resolved/will resolve the issue. But this feature is recording which branch does the issue happen. |
Yes! Our team uses this feature for more than 20 projects with many branches. When your repo has more than 2-3 branches with different stuff (features, refactoring, etc) developing on them, it is a really useful feature to specify a branch in which issue found. |
@didim99 Thank you very much for the feedback, it is valuable. Just have some more questions, could you help us to understand more about "selector"?
|
To avoid "breaking" in 1.23, I reverted the selector with the bug fix and added more comments. Then this PR could be merged, the discussion could be continued ( #32744 (comment) ) to figure out how to improve the branch selector in the future. |
* giteaofficial/main: Fix bug of branch/tag selector in the issue sidebar (go-gitea#32744) Fix lfs migration (go-gitea#32812) Avoid MacOS keychain dialog in integration tests (go-gitea#32813) Update actionlint.yaml Detect whether action view branch was deleted (go-gitea#32764) Add "n commits" link to contributors in contributors graph page (go-gitea#32799) Fix "unicode escape" JS error (go-gitea#32806) use dedicated runners for release artifacts (go-gitea#32811) Make API "compare" accept commit IDs (go-gitea#32801) Implement update branch API (go-gitea#32433) Fix JS error when dropping a file to a editor without dropzone (go-gitea#32804) chore: use errors.New to replace fmt.Errorf with no parameters (go-gitea#32800)
Fix: #32731