Skip to content

Valid email address should only start with alphanumeric #28174

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

Merged
merged 10 commits into from
Apr 20, 2025

Conversation

dek5troza
Copy link
Contributor

This fixes issue #27847 where regular expression allowed email address to start with special symbols. Valid email addresses should start with alphanumeric character, and as such will be rendered as email.

Added test cases from the bug report to validate, such input will not be rendered anymore as email address.

Valid email addresses should start with alphanumeric character.
@GiteaBot GiteaBot added the lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. label Nov 22, 2023
@lunny
Copy link
Member

lunny commented Nov 22, 2023

Could it start with a number?

Copy link
Member

@lng2020 lng2020 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm afraid it's not right. According to that issue, the correct test case should be

test(
  "[email protected]",
  `<p>?<a href="mailto:[email protected]" rel="nofollow">[email protected]</a></p>`
)

The expected behavior of that issue is ~ not rendered but [email protected] rendered.

@GiteaBot GiteaBot added lgtm/blocked A maintainer has reservations with the PR and thus it cannot be merged and removed lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. labels Nov 23, 2023
@dek5troza
Copy link
Contributor Author

I'm afraid it's not right. According to that issue, the correct test case should be

test(
  "[email protected]",
  `<p>?<a href="mailto:[email protected]" rel="nofollow">[email protected]</a></p>`
)

The expected behavior of that issue is ~ not rendered but [email protected] rendered.

Ok, I misunderstood the issue. I ll give it another go. Thanks

dek5troza and others added 2 commits November 23, 2023 18:59
Regular expression will attempt to match valid portion of the email
which start with ~,* or ? or their combination.
@dek5troza
Copy link
Contributor Author

Ok, so hopefully I understood the issue this time. It should handle those characters in the way you have described to me in the comment. Let me know, if I need to update anything else, and I will do it.

@wxiaoguang
Copy link
Contributor

wxiaoguang commented Nov 28, 2023

According to RFC and Golang's mail.ParseAddress: *[email protected] [email protected] are all valid email addresses.

Although the old regexp doesn't look good, I do not see real benefit by introducing another incorrect (hacky?) patch.


Sorry, maybe I misunderstood the PR, will do more tests.

@techknowlogick techknowlogick changed the title Valid email address should only start with alphanumeric. Valid email address should only start with alphanumeric Nov 28, 2023
@wxiaoguang
Copy link
Contributor

wxiaoguang commented Nov 28, 2023

Made a small change (remove the ? from regexp because it doesn't affect the result, there is no ? in regexp body) and added some test cases.

dek5troza#1 (not ideal enough, see below)


Well, I am still not sure whether we should really use this patch.

Test code:

func main() {
	a, _ := mail.ParseAddress("[email protected]")
	println(a.Address)
	a, _ = mail.ParseAddress("*[email protected]")
	println(a.Address)
}

Because [email protected] and *[email protected] are valid email addresses .......

@lng2020 lng2020 self-requested a review November 28, 2023 05:46
@lng2020 lng2020 added lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. and removed lgtm/blocked A maintainer has reservations with the PR and thus it cannot be merged labels Nov 28, 2023
@dek5troza
Copy link
Contributor Author

Made a small change (remove the ? from regexp because it doesn't affect the result, there is no ? in regexp body) and added some test cases.

dek5troza#1 (not ideal enough, see below)

Well, I am still not sure whether we should really use this patch.

Test code:

func main() {
	a, _ := mail.ParseAddress("[email protected]")
	println(a.Address)
	a, _ = mail.ParseAddress("*[email protected]")
	println(a.Address)
}

Because [email protected] and *[email protected] are valid email addresses .......

I was just going by @lng2020 comment. Technically those are valid by RFC5322 but it's arguable how usable those are, as most email service providers would not allow them with rules and filters.

If more changes are needed with this, I ll be happy to help and update.

@dek5troza
Copy link
Contributor Author

Hey guys, do you want me to update the patch, and separate ~something as valid email, or how would you like me to proceed with this?

@wxiaoguang
Copy link
Contributor

wxiaoguang commented Dec 8, 2023

I do not have strong objection for the "arguable" RFC format. But there are still nits:

  1. I still think it needs to "remove the ? from regexp because it doesn't affect the result, there is no ? in regexp body".
  2. It needs more tests to show the behavior, especially the edge cases like a*a and a~a if they were not covered before.
  3. It needs more comments to describe the decision and the difference from the RFC.

@dek5troza
Copy link
Contributor Author

I do not have strong objection for the "arguable" RFC format. But there are still nits:

  1. I still think it needs to "remove the ? from regexp because it doesn't affect the result, there is no ? in regexp body".
  2. It needs more tests to show the behavior, especially the edge cases like a*a and a~a if they were not covered before.
  3. It needs more comments to describe the decision and the difference from the RFC.

Cool, I ll give it till Monday, if there are more opinions, and start updating on Monday with things you have listed above.

@karlwilbur
Copy link

karlwilbur commented Jan 18, 2025

I have worked with email validation before. I have a Ruby gem that does this. I am not suggesting that we try implementing a Ruby gem. 😆 But, maybe my work there might be helpful with sorting out validation and verification (tests of the validation code) within Gitea. Feel free to rip/refactor/repurpose as much of my code as you'd like:

https://rubygems.org/gems/email_validator
https://github.com/K-and-R/email_validator/blob/master/lib/email_validator.rb

I also have a pretty thorough set of tests:
https://github.com/K-and-R/email_validator/blob/master/spec/email_validator_spec.rb

I hope it helps!

@wxiaoguang
Copy link
Contributor

Inactive for long time, ping ~~

@wxiaoguang wxiaoguang added the issue/needs-feedback For bugs, we need more details. For features, the feature must be described in more detail label Mar 13, 2025
@dek5troza
Copy link
Contributor Author

dek5troza commented Mar 13, 2025

Inactive for long time, ping ~~

You are right, this slipped through. I ll take a stab at it this weekend.

# Conflicts:
#	modules/markup/html.go
@GiteaBot GiteaBot added lgtm/blocked A maintainer has reservations with the PR and thus it cannot be merged and removed lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. labels Apr 20, 2025
@github-actions github-actions bot added the modifies/go Pull requests that update Go code label Apr 20, 2025
@GiteaBot GiteaBot added lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. and removed lgtm/blocked A maintainer has reservations with the PR and thus it cannot be merged labels Apr 20, 2025
@wxiaoguang wxiaoguang modified the milestones: 1.25.0, 1.24.0 Apr 20, 2025
@wxiaoguang wxiaoguang added type/bug and removed issue/needs-feedback For bugs, we need more details. For features, the feature must be described in more detail labels Apr 20, 2025
@GiteaBot GiteaBot added lgtm/need 1 This PR needs approval from one additional maintainer to be merged. and removed lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. labels Apr 20, 2025
@GiteaBot GiteaBot added lgtm/done This PR has enough approvals to get merged. There are no important open reservations anymore. and removed lgtm/need 1 This PR needs approval from one additional maintainer to be merged. labels Apr 20, 2025
@wxiaoguang wxiaoguang merged commit af6be75 into go-gitea:main Apr 20, 2025
26 checks passed
zjjhot added a commit to zjjhot/gitea that referenced this pull request Apr 21, 2025
* giteaofficial/main:
  Add API routes to lock and unlock issues (go-gitea#34165)
  Make ROOT_URL support using request Host header (go-gitea#32564)
  Valid email address should only start with alphanumeric (go-gitea#28174)
  Fix notify watch failure when the content is too long (go-gitea#34233)
  Add "--fullname" arg to gitea admin user create (go-gitea#34241)
  Fix various UI problems (go-gitea#34243)
  markup: improve code block readability and isolate copy button (go-gitea#34009)
  Don't assume the default wiki branch is master in the wiki API (go-gitea#34244)
  [skip ci] Updated translations via Crowdin
  Optimize the calling code of queryElems (go-gitea#34235)
  Actions Runner rest api (go-gitea#33873)
  Fix some trivial problems (go-gitea#34237)
  Swift files can be passed either as file or as form value (go-gitea#34068)

# Conflicts:
#	templates/repo/wiki/revision.tmpl
project-mirrors-bot-tu bot pushed a commit to project-mirrors/gitea-helm-chart that referenced this pull request Jul 3, 2025
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [go-gitea/gitea](https://github.com/go-gitea/gitea) | minor | `1.23.8` -> `1.24.0` |

---

### Release Notes

<details>
<summary>go-gitea/gitea (go-gitea/gitea)</summary>

### [`v1.24.0`](https://github.com/go-gitea/gitea/blob/HEAD/CHANGELOG.md#1240---2025-05-26)

[Compare Source](go-gitea/gitea@v1.23.8...v1.24.0)

-   BREAKING
    -   Make Gitea always use its internal config, ignore `/etc/gitconfig` ([#&#8203;33076](go-gitea/gitea#33076))
    -   Improve log format ([#&#8203;33814](go-gitea/gitea#33814))
    -   Fix markdown render behaviors ([#&#8203;34122](go-gitea/gitea#34122))
    -   Add package version api endpoints ([#&#8203;34173](go-gitea/gitea#34173))

-   FEATURES
    -   Enforce two-factor auth (2FA: TOTP or WebAuthn) ([#&#8203;34187](go-gitea/gitea#34187))
    -   Add fullscreen mode as a more efficient operation way to view projects ([#&#8203;34081](go-gitea/gitea#34081))
    -   Add anonymous access support for private/unlisted repositories ([#&#8203;34051](go-gitea/gitea#34051))
    -   Support public code/issue access for private repositories ([#&#8203;33127](go-gitea/gitea#33127))
    -   Add middleware for request prioritization ([#&#8203;33951](go-gitea/gitea#33951))
    -   Add cli flags LDAP group configuration ([#&#8203;33933](go-gitea/gitea#33933))
    -   Add file tree to file view page ([#&#8203;32721](go-gitea/gitea#32721))
    -   Add material icons for file list ([#&#8203;33837](go-gitea/gitea#33837))
    -   Artifacts download api for artifact actions v4 ([#&#8203;33510](go-gitea/gitea#33510))
    -   Support choose email when creating a commit via web UI ([#&#8203;33432](go-gitea/gitea#33432))
    -   Add basic auth support to rss/atom feeds ([#&#8203;33371](go-gitea/gitea#33371))
    -   Add sorting by exclusive labels (issue priority) ([#&#8203;33206](go-gitea/gitea#33206))
    -   Add sub issue list support ([#&#8203;32940](go-gitea/gitea#32940))
    -   Private README.md for organization ([#&#8203;32872](go-gitea/gitea#32872))
    -   Email option to embed images as base64 instead of link ([#&#8203;32061](go-gitea/gitea#32061))
    -   Option to delay conflict checking of old pull requests until page view ([#&#8203;27779](go-gitea/gitea#27779))
    -   Worktime tracking for the organization level ([#&#8203;19808](go-gitea/gitea#19808))

-   PERFORMANCE
    -   Add cache for common package queries ([#&#8203;22491](go-gitea/gitea#22491))
    -   Move issue pin to an standalone table for querying performance ([#&#8203;33452](go-gitea/gitea#33452))
    -   Improve commits list performance to reduce unnecessary database queries ([#&#8203;33528](go-gitea/gitea#33528))
    -   Optimize total count of feed when loading activities in user dashboard. ([#&#8203;33841](go-gitea/gitea#33841))
    -   Optimize heatmap query ([#&#8203;33853](go-gitea/gitea#33853))
    -   Only use prev and next buttons for pagination on user dashboard ([#&#8203;33981](go-gitea/gitea#33981))
    -   Improve pull request list API performance ([#&#8203;34052](go-gitea/gitea#34052))
    -   Cache GPG keys, emails and users when list commits ([#&#8203;34086](go-gitea/gitea#34086))
    -   Refactor Git Attribute & performance optimization ([#&#8203;34154](go-gitea/gitea#34154))
    -   Performance optimization for tags synchronization ([#&#8203;34355](go-gitea/gitea#34355)) [#&#8203;34522](go-gitea/gitea#34522)

-   ENHANCEMENTS
    -   Code
        -   Display when a release attachment was uploaded ([#&#8203;34261](go-gitea/gitea#34261))
        -   Support creating relative link to raw path in markdown ([#&#8203;34105](go-gitea/gitea#34105))
        -   Improve code block readability and isolate copy button ([#&#8203;34009](go-gitea/gitea#34009))
        -   Improve repository commit view ([#&#8203;33877](go-gitea/gitea#33877))
        -   Full-file syntax highlighting for diff pages ([#&#8203;33766](go-gitea/gitea#33766))
        -   Clone repository with Tea CLI ([#&#8203;33725](go-gitea/gitea#33725))
        -   Improve sync fork behavior ([#&#8203;33319](go-gitea/gitea#33319))
        -   Make git clone URL could use current signed-in user ([#&#8203;33091](go-gitea/gitea#33091))
        -   Add submodule diff links ([#&#8203;33097](go-gitea/gitea#33097))
        -   Link to tree views of submodules if possible ([#&#8203;33424](go-gitea/gitea#33424))
        -   Only keep popular licenses ([#&#8203;33832](go-gitea/gitea#33832))
        -   De-emphasize signed commits ([#&#8203;31160](go-gitea/gitea#31160))

    -   Actions
        -   Add flat-square action badge style ([#&#8203;34062](go-gitea/gitea#34062))
        -   Update action status badge layout ([#&#8203;34018](go-gitea/gitea#34018))
        -   Download actions job logs from API ([#&#8203;33858](go-gitea/gitea#33858))
        -   Always show the "rerun" button for action jobs ([#&#8203;33692](go-gitea/gitea#33692))
        -   Add auto-expanding running actions step ([#&#8203;30058](go-gitea/gitea#30058))
        -   Update status check for all supported on.pull_request.types in Gitea ([#&#8203;33117](go-gitea/gitea#33117))
        -   Workflow_dispatch use workflow from trigger branch ([#&#8203;33098](go-gitea/gitea#33098))
        -   Add action auto-scroll ([#&#8203;30057](go-gitea/gitea#30057))
        -   Add workflow_job webhook ([#&#8203;33694](go-gitea/gitea#33694))
        -   Add a button editing action secret ([#&#8203;34462](go-gitea/gitea#34462))

    -   Pull Request
        -   Auto expand "New PR" form ([#&#8203;33971](go-gitea/gitea#33971))
        -   Mark parent directory as viewed when all files are viewed ([#&#8203;33958](go-gitea/gitea#33958))
        -   Show info about maintainers are allowed to edit a PR ([#&#8203;33738](go-gitea/gitea#33738))
        -   Automerge supports deleting branch automatically after merging ([#&#8203;32343](go-gitea/gitea#32343))
        -   Add additional command hints for PowerShell & CMD ([#&#8203;33548](go-gitea/gitea#33548))

    -   Issues
        -   Allow filtering issues by any assignee ([#&#8203;33343](go-gitea/gitea#33343))
        -   Show warning on navigation if currently editing comment or title ([#&#8203;32920](go-gitea/gitea#32920))
        -   Make tracked time representation display as hours ([#&#8203;33315](go-gitea/gitea#33315))
        -   Add No Results Prompt Message on Issue List Page ([#&#8203;33699](go-gitea/gitea#33699))
        -   Add sort option recentclose for issues and pulls ([#&#8203;34525](go-gitea/gitea#34525)) [#&#8203;34539](go-gitea/gitea#34539)

    -   Packages
        -   Link to nuget dependencies ([#&#8203;26554](go-gitea/gitea#26554))
        -   Add composor source field ([#&#8203;33502](go-gitea/gitea#33502))

    -   Administration
        -   Improve navbar: add "admin" tip, add "active" style ([#&#8203;32927](go-gitea/gitea#32927))
        -   Add a option "--user-type bot" to admin user create, improve role display ([#&#8203;27885](go-gitea/gitea#27885))
        -   Improve admin user view page ([#&#8203;33735](go-gitea/gitea#33735))
        -   Support performance trace ([#&#8203;32973](go-gitea/gitea#32973))
        -   Change pprof labels to be prometheus compatible ([#&#8203;32865](go-gitea/gitea#32865))
        -   Allow admins and org owners to change org member public status ([#&#8203;28294](go-gitea/gitea#28294))
        -   Optimize the installation page ([#&#8203;32994](go-gitea/gitea#32994))
        -   Make public URL generation configurable ([#&#8203;34250](go-gitea/gitea#34250))
        -   Add a --fullname arg to gitea admin user create. ([#&#8203;34241](go-gitea/gitea#34241))

    -   Others
        -   Improve oauth2 error handling ([#&#8203;33969](go-gitea/gitea#33969))
        -   Fail mirroring more gracefully ([#&#8203;34002](go-gitea/gitea#34002))
        -   Align User Details Page Header Layout with Design Specifications ([#&#8203;34192](go-gitea/gitea#34192))
        -   Webhook add X-Gitea-Hook-Installation-Target-Type Header ([#&#8203;33752](go-gitea/gitea#33752))
        -   Optimize the dashboard ([#&#8203;32990](go-gitea/gitea#32990))
        -   Improve button layout on small screens ([#&#8203;33633](go-gitea/gitea#33633))
        -   Add cropping support when modifying the user/org/repo avatar ([#&#8203;33498](go-gitea/gitea#33498))
        -   Make ROOT_URL support using request Host header ([#&#8203;32564](go-gitea/gitea#32564))
        -   Add `show more` organizations icon in user's profile ([#&#8203;32986](go-gitea/gitea#32986))
        -   Introduce `--page-space-bottom` at 64px ([#&#8203;30692](go-gitea/gitea#30692))
        -   Improve theme display ([#&#8203;30671](go-gitea/gitea#30671))
        -   Add alphabetical project sorting ([#&#8203;33504](go-gitea/gitea#33504))
        -   Add global lock for migrations to make upgrade more safe with multiple replications ([#&#8203;33706](go-gitea/gitea#33706))
        -   Add descriptions for private repo public access settings and improve the UI ([#&#8203;34057](go-gitea/gitea#34057))

-   API
    -   Actions Runner rest api ([#&#8203;33873](go-gitea/gitea#33873))
    -   Inclusion of rename organization api ([#&#8203;33303](go-gitea/gitea#33303))
    -   Add API to support link package to repository and unlink it ([#&#8203;33481](go-gitea/gitea#33481))
    -   Add API endpoint to request contents of multiple files simultaniously ([#&#8203;34139](go-gitea/gitea#34139))
    -   Actions artifacts API list/download check status upload confirmed ([#&#8203;34273](go-gitea/gitea#34273))
    -   Add API routes to lock and unlock issues ([#&#8203;34165](go-gitea/gitea#34165))
    -   Fix some user name usages ([#&#8203;33689](go-gitea/gitea#33689))
    -   Allow filtering /repos/{owner}/{repo}/pulls by target base branch queryparam ([#&#8203;33684](go-gitea/gitea#33684))
    -   Improve swagger generation ([#&#8203;33664](go-gitea/gitea#33664))
    -   Support Ephemeral action runners ([#&#8203;33570](go-gitea/gitea#33570))
    -   Support workflow event dispatch via API ([#&#8203;33545](go-gitea/gitea#33545))
    -   Support workflow event dispatch via API ([#&#8203;32059](go-gitea/gitea#32059))
    -   Added Description Field for Secrets and Variables  ([#&#8203;33526](go-gitea/gitea#33526))
    -   Reject star-related requests if stars are disabled ([#&#8203;33208](go-gitea/gitea#33208))
    -   Let API create and edit system webhooks, attempt 2 ([#&#8203;33180](go-gitea/gitea#33180))
    -   Use `Project-URL` metadata field to get a PyPI package's homepage URL ([#&#8203;33089](go-gitea/gitea#33089))
    -   Add `last_committer_date` and `last_author_date` for file contents API ([#&#8203;32921](go-gitea/gitea#32921))

-   REFACTORS
    -   Remove context from git struct ([#&#8203;33793](go-gitea/gitea#33793))
    -   Refactor admin/common.ts ([#&#8203;33788](go-gitea/gitea#33788))
    -   Refactor repo-settings.ts ([#&#8203;33785](go-gitea/gitea#33785))
    -   Refactor repo-issue.ts ([#&#8203;33784](go-gitea/gitea#33784))
    -   Small refactor to reduce unnecessary database queries and remove duplicated functions ([#&#8203;33779](go-gitea/gitea#33779))
    -   Refactor initRepoBranchTagSelector to use new init framework ([#&#8203;33776](go-gitea/gitea#33776))
    -   Refactor buttons to use new init framework ([#&#8203;33774](go-gitea/gitea#33774))
    -   Refactor markup and pdf-viewer to use new init framework ([#&#8203;33772](go-gitea/gitea#33772))
    -   Refactor error system ([#&#8203;33771](go-gitea/gitea#33771))
    -   Refactor mail code ([#&#8203;33768](go-gitea/gitea#33768))
    -   Update TypeScript types ([#&#8203;33799](go-gitea/gitea#33799))
    -   Refactor older tests to use testify ([#&#8203;33140](go-gitea/gitea#33140))
    -   Move notifywatch to service layer ([#&#8203;33825](go-gitea/gitea#33825))
    -   Decouple context from repository related structs ([#&#8203;33823](go-gitea/gitea#33823))
    -   Remove context from mail struct ([#&#8203;33811](go-gitea/gitea#33811))
    -   Refactor dropdown ellipsis ([#&#8203;34123](go-gitea/gitea#34123))
    -   Refactor functions to reduce repopath expose ([#&#8203;33892](go-gitea/gitea#33892))
    -   Refactor repo-diff.ts ([#&#8203;33746](go-gitea/gitea#33746))
    -   Refactor web route handler ([#&#8203;33488](go-gitea/gitea#33488))
    -   Refactor user & avatar ([#&#8203;33433](go-gitea/gitea#33433))
    -   Refactor user package ([#&#8203;33423](go-gitea/gitea#33423))
    -   Refactor decouple context from migration structs ([#&#8203;33399](go-gitea/gitea#33399))
    -   Refactor context flash msg and global variables ([#&#8203;33375](go-gitea/gitea#33375))
    -   Refactor response writer & access logger ([#&#8203;33323](go-gitea/gitea#33323))
    -   Refactor ref type ([#&#8203;33242](go-gitea/gitea#33242))
    -   Refactor context repository ([#&#8203;33202](go-gitea/gitea#33202))
    -   Refactor legacy JS ([#&#8203;33115](go-gitea/gitea#33115))
    -   Refactor legacy line-number and scroll code ([#&#8203;33094](go-gitea/gitea#33094))
    -   Refactor env var related code ([#&#8203;33075](go-gitea/gitea#33075))
    -   Move SetMerged to service layer ([#&#8203;33045](go-gitea/gitea#33045))
    -   Merge updatecommentattachment functions ([#&#8203;33044](go-gitea/gitea#33044))
    -   Refactor pull-request compare\&create page ([#&#8203;33071](go-gitea/gitea#33071))
    -   Refactor repo-new.ts ([#&#8203;33070](go-gitea/gitea#33070))
    -   Refactor pagination ([#&#8203;33037](go-gitea/gitea#33037))
    -   Refactor tests ([#&#8203;33021](go-gitea/gitea#33021))
    -   Refactor markup render to fix various path problems ([#&#8203;34114](go-gitea/gitea#34114))
    -   Refactor Branch struct in package modules/git ([#&#8203;33980](go-gitea/gitea#33980))
    -   Don't create duplicated functions for code repositories and wiki repositories ([#&#8203;33924](go-gitea/gitea#33924))
    -   Move git references checking to gitrepo packages to reduce expose of repository path ([#&#8203;33891](go-gitea/gitea#33891))
    -   Refactor cache-control ([#&#8203;33861](go-gitea/gitea#33861))
    -   Decouple diff stats query from actual diffing ([#&#8203;33810](go-gitea/gitea#33810))
    -   Move part of updating protected branch logic to service layer ([#&#8203;33742](go-gitea/gitea#33742))
    -   Decouple Batch from git.Repository to simplify usage without requiring the creation of a Repository struct. ([#&#8203;34001](go-gitea/gitea#34001))
    -   Refactor tmpl and blob_excerpt ([#&#8203;32967](go-gitea/gitea#32967))
    -   Refactor template & test related code ([#&#8203;32938](go-gitea/gitea#32938))
    -   Refactor db package and remove unnecessary `DumpTables` ([#&#8203;32930](go-gitea/gitea#32930))
    -   Refactor pprof labels and process desc ([#&#8203;32909](go-gitea/gitea#32909))
    -   Refactor repo-projects.ts ([#&#8203;32892](go-gitea/gitea#32892))
    -   Refactor getpatch/getdiff functions and remove unnecessary fallback ([#&#8203;32817](go-gitea/gitea#32817))
    -   Uniform all temporary directories and allow customizing temp path ([#&#8203;32352](go-gitea/gitea#32352))
    -   Remove context from retry downloader ([#&#8203;33871](go-gitea/gitea#33871))
    -   Refactor global init code and add more comments ([#&#8203;33755](go-gitea/gitea#33755))
    -   Remove some unnecessary template helpers ([#&#8203;33069](go-gitea/gitea#33069))
    -   Move and rename UpdateRepository ([#&#8203;34136](go-gitea/gitea#34136))
    -   Move hooks function to gitrepo and reduce expose repopath ([#&#8203;33890](go-gitea/gitea#33890))
    -   Add abstraction layer to delete repository from disk ([#&#8203;33879](go-gitea/gitea#33879))
    -   Add abstraction layer to check if the repository exists on disk ([#&#8203;33874](go-gitea/gitea#33874))
    -   Move ParseCommitWithSSHSignature to service layer ([#&#8203;34087](go-gitea/gitea#34087))
    -   Move duplicated functions ([#&#8203;33977](go-gitea/gitea#33977))
    -   Extract code to their own functions for push update ([#&#8203;33944](go-gitea/gitea#33944))
    -   Move gitgraph from modules to services layer ([#&#8203;33527](go-gitea/gitea#33527))
    -   Move commits signature and verify functions to service layers ([#&#8203;33605](go-gitea/gitea#33605))
    -   Use `CloseIssue` and `ReopenIssue` instead of `ChangeStatus` ([#&#8203;32467](go-gitea/gitea#32467))
    -   Refactor arch route handlers ([#&#8203;32993](go-gitea/gitea#32993))
    -   Refactor "string truncate" ([#&#8203;32984](go-gitea/gitea#32984))
    -   Refactor arch route handlers ([#&#8203;32972](go-gitea/gitea#32972))
    -   Clarify path param naming ([#&#8203;32969](go-gitea/gitea#32969))
    -   Refactor request context ([#&#8203;32956](go-gitea/gitea#32956))
    -   Move some errors to their own sub packages ([#&#8203;32880](go-gitea/gitea#32880))
    -   Move RepoTransfer from models to models/repo sub package ([#&#8203;32506](go-gitea/gitea#32506))
    -   Move delete deploy keys into service layer ([#&#8203;32201](go-gitea/gitea#32201))
    -   Refactor webhook events ([#&#8203;33337](go-gitea/gitea#33337))
    -   Move some Actions related functions from `routers` to `services` ([#&#8203;33280](go-gitea/gitea#33280))
    -   Refactor RefName ([#&#8203;33234](go-gitea/gitea#33234))
    -   Refactor context RefName and RepoAssignment ([#&#8203;33226](go-gitea/gitea#33226))
    -   Refactor repository transfer ([#&#8203;33211](go-gitea/gitea#33211))
    -   Refactor error system ([#&#8203;33626](go-gitea/gitea#33626))
    -   Refactor error system ([#&#8203;33610](go-gitea/gitea#33610))
    -   Refactor package (routes and error handling, npm peer dependency) ([#&#8203;33111](go-gitea/gitea#33111))
    -   Use test context in tests and new loop system in benchmarks ([#&#8203;33648](go-gitea/gitea#33648))
    -   Some small refactors ([#&#8203;33144](go-gitea/gitea#33144))
    -   Simplify context ref name ([#&#8203;33267](go-gitea/gitea#33267))

-   BUGFIXES
    -   Fix some dropdown problems on the issue sidebar ([#&#8203;34308](go-gitea/gitea#34308)) [#&#8203;34327](go-gitea/gitea#34327)
    -   Do not return archive download URLs in API if downloads are disabled ([#&#8203;34324](go-gitea/gitea#34324)) [#&#8203;34338](go-gitea/gitea#34338)
    -   Fix LFS files being editable in web UI ([#&#8203;34356](go-gitea/gitea#34356)) [#&#8203;34362](go-gitea/gitea#34362)
    -   Fix only text/\* being viewable in web UI ([#&#8203;34374](go-gitea/gitea#34374)) [#&#8203;34378](go-gitea/gitea#34378)
    -   Fix LFS file not stored in LFS when uploaded/edited via API or web UI ([#&#8203;34367](go-gitea/gitea#34367))
    -   Grey out expired artifact on Artifacts list ([#&#8203;34314](go-gitea/gitea#34314)) [#&#8203;34404](go-gitea/gitea#34404)
    -   Fix incorrect divergence cache after switching default branch ([#&#8203;34370](go-gitea/gitea#34370)) [#&#8203;34406](go-gitea/gitea#34406)
    -   Refactor commit message rendering and fix bugs ([#&#8203;34412](go-gitea/gitea#34412)) [#&#8203;34414](go-gitea/gitea#34414)
    -   Merge and tweak markup editor expander CSS ([#&#8203;34409](go-gitea/gitea#34409)) [#&#8203;34415](go-gitea/gitea#34415)
    -   Fix GetUsersByEmails ([#&#8203;34423](go-gitea/gitea#34423)) [#&#8203;34425](go-gitea/gitea#34425)
    -   Only git operations should update last changed of a repository ([#&#8203;34388](go-gitea/gitea#34388)) [#&#8203;34427](go-gitea/gitea#34427)
    -   Fix comment textarea scroll issue in Firefox ([#&#8203;34438](go-gitea/gitea#34438)) [#&#8203;34446](go-gitea/gitea#34446)
    -   Fix repo broken check ([#&#8203;34444](go-gitea/gitea#34444)) [#&#8203;34452](go-gitea/gitea#34452)
    -   Fix remove org user failure on mssql ([#&#8203;34449](go-gitea/gitea#34449)) [#&#8203;34453](go-gitea/gitea#34453)
    -   Fix Workflow run Not Found page ([#&#8203;34459](go-gitea/gitea#34459)) [#&#8203;34466](go-gitea/gitea#34466)
    -   When updating comment, if the content is the same, just return and not update the database ([#&#8203;34422](go-gitea/gitea#34422)) [#&#8203;34464](go-gitea/gitea#34464)
    -   Fix project board view ([#&#8203;34470](go-gitea/gitea#34470)) [#&#8203;34475](go-gitea/gitea#34475)
    -   Fix get / delete runner to use consistent http 404 and 500 status ([#&#8203;34480](go-gitea/gitea#34480)) [#&#8203;34488](go-gitea/gitea#34488)
    -   Fix url validation in webhook add/edit API ([#&#8203;34492](go-gitea/gitea#34492)) [#&#8203;34496](go-gitea/gitea#34496)
    -   Fix edithook api can not update package, status and workflow_job events ([#&#8203;34495](go-gitea/gitea#34495)) [#&#8203;34499](go-gitea/gitea#34499)
    -   Fix ephemeral runner deletion ([#&#8203;34447](go-gitea/gitea#34447)) [#&#8203;34513](go-gitea/gitea#34513)
    -   Don't display error log when .git-blame-ignore-revs doesn't exist ([#&#8203;34457](go-gitea/gitea#34457))
    -   Only allow admins to rename default/protected branches ([#&#8203;33276](go-gitea/gitea#33276))
    -   Improve "lock conversation" UI ([#&#8203;34207](go-gitea/gitea#34207))
    -   Fix incorrect file links ([#&#8203;34189](go-gitea/gitea#34189))
    -   Optimize Overflow Menu ([#&#8203;34183](go-gitea/gitea#34183))
    -   Check user/org repo limit instead of doer ([#&#8203;34147](go-gitea/gitea#34147))
    -   Make markdown render match GitHub's behavior ([#&#8203;34129](go-gitea/gitea#34129))
    -   Fix team permission ([#&#8203;34128](go-gitea/gitea#34128))
    -   Correctly handle submodule view and avoid throwing 500 error ([#&#8203;34121](go-gitea/gitea#34121))
    -   Fix users being able bypass limits with repo transfers ([#&#8203;34031](go-gitea/gitea#34031))
    -   Avoid creating unnecessary temporary cat file sub process ([#&#8203;33942](go-gitea/gitea#33942))
    -   Refactor organization menu ([#&#8203;33928](go-gitea/gitea#33928))
    -   Fix various Fomantic UI and htmx problems ([#&#8203;33851](go-gitea/gitea#33851))
    -   Fix 500 error when error occurred in migration page ([#&#8203;33256](go-gitea/gitea#33256))
    -   Validate that the tag doesn't exist when creating a tag via the web ([#&#8203;33241](go-gitea/gitea#33241))
    -   Add missed transaction on setmerged ([#&#8203;33079](go-gitea/gitea#33079))
    -   Rework create/fork/adopt/generate repository to make sure resources will be cleanup once failed ([#&#8203;31035](go-gitea/gitea#31035))
    -   Valid email address should only start with alphanumeric ([#&#8203;28174](go-gitea/gitea#28174))
    -   Fix webhook url ([#&#8203;34186](go-gitea/gitea#34186))
    -   Fix "toAbsoluteLocaleDate" test when system locale is not en-US ([#&#8203;33939](go-gitea/gitea#33939))
    -   Fix file name could not be searched if the file was not a text file when using the Bleve indexer ([#&#8203;33959](https://github.com/go-gitea/gitea/issues/33959))
    -   Fix cannot delete runners via the modal dialog ([#&#8203;33895](https://github.com/go-gitea/gitea/issues/33895))
    -   Fix unpin hint on the pinned pull requests ([#&#8203;33207](https://github.com/go-gitea/gitea/issues/33207))
    -   Fix parentCommit invalid memory address or nil pointer dereference. ([#&#8203;33204](https://github.com/go-gitea/gitea/issues/33204))
    -   Fix comment header padding ([#&#8203;33377](https://github.com/go-gitea/gitea/issues/33377))
    -   Fix some migration and repo name problems ([#&#8203;33986](https://github.com/go-gitea/gitea/issues/33986))
    -   Fix various trivial frontend problems ([#&#8203;34263](https://github.com/go-gitea/gitea/issues/34263))
    -   Fix Set Email Preference dropdown and button placement ([#&#8203;34255](https://github.com/go-gitea/gitea/issues/34255))
    -   Fix quoted replies incorrectly render user input as part of the quote ([#&#8203;34216](https://github.com/go-gitea/gitea/issues/34216))
    -   Fix button alignments and remove unnecessary styles ([#&#8203;34206](https://github.com/go-gitea/gitea/issues/34206))
    -   Restore form inputs on organization create error ([#&#8203;34201](https://github.com/go-gitea/gitea/issues/34201))
    -   Try to fix ACME (3rd) ([#&#8203;33807](https://github.com/go-gitea/gitea/issues/33807))
    -   Fix incorrect ref "blob" ([#&#8203;33240](https://github.com/go-gitea/gitea/issues/33240))
    -   Fix dynamic content loading init problem ([#&#8203;33748](https://github.com/go-gitea/gitea/issues/33748))
    -   Fix git empty check and HEAD request ([#&#8203;33690](https://github.com/go-gitea/gitea/issues/33690))
    -   Fix Untranslated Text on Actions Page ([#&#8203;33635](https://github.com/go-gitea/gitea/issues/33635))
    -   Fix issue label delete incorrect labels webhook payload ([#&#8203;34575](https://github.com/go-gitea/gitea/issues/34575))
    -   Fix incorrect page navigation with up and down arrow on last item of dashboard repos ([#&#8203;34570](https://github.com/go-gitea/gitea/issues/34570))
    -   Fix/improve avatar sync from LDAP ([#&#8203;34573](https://github.com/go-gitea/gitea/issues/34573))
    -   Fix some trivial problems ([#&#8203;34579](https://github.com/go-gitea/gitea/issues/34579))
    -   Retain issue sort type when a keyword search is introduced ([#&#8203;34559](https://github.com/go-gitea/gitea/issues/34559))
    -   Always use an empty line to separate the commit message and trailer ([#&#8203;34512](https://github.com/go-gitea/gitea/issues/34512))
    -   Fix line-button issue after file selection in file tree ([#&#8203;34574](https://github.com/go-gitea/gitea/issues/34574))
    -   Fix doctor deleting orphaned issues attachments ([#&#8203;34142](https://github.com/go-gitea/gitea/issues/34142))
    -   Add webhook assigning test and fix possible bug ([#&#8203;34420](https://github.com/go-gitea/gitea/issues/34420))
    -   Fix possible nil description of pull request when migrating from CodeCommit ([#&#8203;34541](https://github.com/go-gitea/gitea/issues/34541))
    -   Refactor commit reader ([#&#8203;34542](https://github.com/go-gitea/gitea/issues/34542))
    -   Fix possible pull request broken when leave the page immediately after clicking the update button [#&#8203;34509](https://github.com/go-gitea/gitea/issues/34509)
    -   Ignore "Close" error when uploading container blob ([#&#8203;34620](https://github.com/go-gitea/gitea/issues/34620))
    -   Fix missed merge commit sha and time when migrating from codecommit ([#&#8203;34645](https://github.com/go-gitea/gitea/issues/34645))
    -   Fix GetUsersByEmails ([#&#8203;34643](https://github.com/go-gitea/gitea/issues/34643))
    -   Misc CSS fixes ([#&#8203;34638](https://github.com/go-gitea/gitea/issues/34638))
    -   Add codecommit to supported services in api docs ([#&#8203;34626](https://github.com/go-gitea/gitea/issues/34626))
    -   Validate hex colors when creating/editing labels ([#&#8203;34623](https://github.com/go-gitea/gitea/issues/34623))
    -   Fix possible pull request broken when leave the page immediately after clicking the update button ([#&#8203;34509](https://github.com/go-gitea/gitea/issues/34509))
    -   Fix margin issue in markup paragraph rendering ([#&#8203;34599](https://github.com/go-gitea/gitea/issues/34599))
    -   Fix migration pull request title too long ([#&#8203;34577](https://github.com/go-gitea/gitea/issues/34577))
    -   Fix footnote jump behavior on the issue page. ([#&#8203;34621](https://github.com/go-gitea/gitea/issues/34621))
    -   Fix "oras" OCI client compatibility ([#&#8203;34666](https://github.com/go-gitea/gitea/issues/34666))
    -   Fix last admin check when syncing users ([#&#8203;34649](https://github.com/go-gitea/gitea/issues/34649))
    -   Fix skip paths check on tag push events in workflows ([#&#8203;34602](https://github.com/go-gitea/gitea/issues/34602)) [#&#8203;34670](https://github.com/go-gitea/gitea/issues/34670)

-   MISC

    -   Bump to alpine 3.22 ([#&#8203;34613](https://github.com/go-gitea/gitea/issues/34613))
    -   Make pull request and issue history more compact ([#&#8203;34588](https://github.com/go-gitea/gitea/issues/34588))
    -   Run integration tests against postgres 14 ([#&#8203;34514](https://github.com/go-gitea/gitea/issues/34514)) [#&#8203;34536](https://github.com/go-gitea/gitea/issues/34536)
    -   Enable addtional linters ([#&#8203;34085](https://github.com/go-gitea/gitea/issues/34085))
    -   Enable testifylint rules ([#&#8203;34075](https://github.com/go-gitea/gitea/issues/34075))
    -   Enable staticcheck QFxxxx rules ([#&#8203;34064](https://github.com/go-gitea/gitea/issues/34064))
    -   Improve Actions test ([#&#8203;32883](https://github.com/go-gitea/gitea/issues/32883))
    -   Drop fomantic build ([#&#8203;33845](https://github.com/go-gitea/gitea/issues/33845))
    -   Go1.24 ([#&#8203;33562](https://github.com/go-gitea/gitea/issues/33562))
    -   Run yamllint with strict mode, fix issue ([#&#8203;33551](https://github.com/go-gitea/gitea/issues/33551))
    -   Disable cron task to update license ([#&#8203;33486](https://github.com/go-gitea/gitea/issues/33486))
    -   Optimize makefile help information generation ([#&#8203;33390](https://github.com/go-gitea/gitea/issues/33390))
    -   Convert github.com/xanzy/go-gitlab into gitlab.com/gitlab-org/api/client-go ([#&#8203;33126](https://github.com/go-gitea/gitea/issues/33126))
    -   Add missed changelogs ([#&#8203;33649](https://github.com/go-gitea/gitea/issues/33649))
    -   Update .changelog file to add performance label group ([#&#8203;33472](https://github.com/go-gitea/gitea/issues/33472))
    -   Add missing POPULATE_SQUASH_COMMENT_WITH_COMMIT_MESSAGES in app.example.ini ([#&#8203;33363](https://github.com/go-gitea/gitea/issues/33363))
    -   Update README screenshots ([#&#8203;33347](https://github.com/go-gitea/gitea/issues/33347))
    -   Update unrs-resolver ([#&#8203;34279](https://github.com/go-gitea/gitea/issues/34279))
    -   Update go\&js dependencies ([#&#8203;34262](https://github.com/go-gitea/gitea/issues/34262))
    -   Optimize the calling code of queryElems ([#&#8203;34235](https://github.com/go-gitea/gitea/issues/34235))
    -   Update protected_branch.tmpl ([#&#8203;34193](https://github.com/go-gitea/gitea/issues/34193))
    -   Feat/optimize span svg layout ([#&#8203;34185](https://github.com/go-gitea/gitea/issues/34185))
    -   Set MERMAID_MAX_SOURCE_CHARACTERS to 50000 ([#&#8203;34152](https://github.com/go-gitea/gitea/issues/34152))
    -   Update JS and PY deps ([#&#8203;34143](https://github.com/go-gitea/gitea/issues/34143))
    -   Add Chinese translations for README files ([#&#8203;34132](https://github.com/go-gitea/gitea/issues/34132))
    -   Use `overflow-wrap: anywhere` to replace `word-break: break-all` ([#&#8203;34126](https://github.com/go-gitea/gitea/issues/34126))
    -   Clarify ownership in password change error messages ([#&#8203;34092](https://github.com/go-gitea/gitea/issues/34092))
    -   Add toggleClass function in dom.ts ([#&#8203;34063](https://github.com/go-gitea/gitea/issues/34063))
    -   Update to golangci-lint v2 ([#&#8203;34054](https://github.com/go-gitea/gitea/issues/34054))
    -   Update Makefile test comments ([#&#8203;34013](https://github.com/go-gitea/gitea/issues/34013))
    -   Update go mod dependencies ([#&#8203;33988](https://github.com/go-gitea/gitea/issues/33988))
    -   Use filepath.Join instead of path.Join for file system file operations ([#&#8203;33978](https://github.com/go-gitea/gitea/issues/33978))
    -   Prepare common tmpl functions in a middleware ([#&#8203;33957](https://github.com/go-gitea/gitea/issues/33957))
    -   Remove unused or abused styles ([#&#8203;33918](https://github.com/go-gitea/gitea/issues/33918))
    -   Update JS and PY deps, misc tweaks ([#&#8203;33903](https://github.com/go-gitea/gitea/issues/33903))
    -   Try to figure out attribute checker problem ([#&#8203;33901](https://github.com/go-gitea/gitea/issues/33901))
    -   Add lock for a repository pull mirror ([#&#8203;33876](https://github.com/go-gitea/gitea/issues/33876))
    -   Fine tune push mirror UI ([#&#8203;33866](https://github.com/go-gitea/gitea/issues/33866))
    -   Improve issue & code search ([#&#8203;33860](https://github.com/go-gitea/gitea/issues/33860))
    -   Use pullrequestlist instead of \[]\*pullrequest ([#&#8203;33765](https://github.com/go-gitea/gitea/issues/33765))
    -   Upgrade act to 0.261.4 and actions-proto-go to v0.4.1 ([#&#8203;33760](https://github.com/go-gitea/gitea/issues/33760))
    -   Align sidebar gears to the right ([#&#8203;33721](https://github.com/go-gitea/gitea/issues/33721))
    -   Update Go dependencies (skip blevesearch, meilisearch) ([#&#8203;33655](https://github.com/go-gitea/gitea/issues/33655))
    -   Add migrations and doctor fixes ([#&#8203;33556](https://github.com/go-gitea/gitea/issues/33556))
    -   Remove "class-name" from svg icon ([#&#8203;33540](https://github.com/go-gitea/gitea/issues/33540))
    -   Update MAINTAINERS ([#&#8203;33529](https://github.com/go-gitea/gitea/issues/33529))
    -   Add "No data available" display when list is empty ([#&#8203;33517](https://github.com/go-gitea/gitea/issues/33517))
    -   Use `git diff-tree` for `DiffFileTree` on diff pages ([#&#8203;33514](https://github.com/go-gitea/gitea/issues/33514))
    -   Give organisation members access to organisation feeds ([#&#8203;33508](https://github.com/go-gitea/gitea/issues/33508))
    -   Update feishu icon ([#&#8203;33470](https://github.com/go-gitea/gitea/issues/33470))
    -   Hide/disable unusable UI elements when a repository is archived ([#&#8203;33459](https://github.com/go-gitea/gitea/issues/33459))
    -   Update `@github/text-expander-element` to 2.9.0 ([#&#8203;33435](https://github.com/go-gitea/gitea/issues/33435))
    -   Do not access GitRepo when a repo is being created ([#&#8203;33380](https://github.com/go-gitea/gitea/issues/33380))
    -   Fix incorrect ref usages ([#&#8203;33301](https://github.com/go-gitea/gitea/issues/33301))
    -   Prepare for support performance trace ([#&#8203;33286](https://github.com/go-gitea/gitea/issues/33286))
    -   Enable Typescript `noImplicitThis` ([#&#8203;33250](https://github.com/go-gitea/gitea/issues/33250))
    -   Remove unused CSS styles and move some styles to proper files ([#&#8203;33217](https://github.com/go-gitea/gitea/issues/33217))
    -   Add .run to gitignore ([#&#8203;33175](https://github.com/go-gitea/gitea/issues/33175))
    -   Fix typo in gitea downloader test and add missing codebase in `ToGitServiceType` ([#&#8203;33146](https://github.com/go-gitea/gitea/issues/33146))
    -   Remove extended glob pattern from branch protection UI ([#&#8203;33125](https://github.com/go-gitea/gitea/issues/33125))
    -   Clean up legacy form CSS styles ([#&#8203;33081](https://github.com/go-gitea/gitea/issues/33081))
    -   Unset XDG_HOME_CONFIG as gitea manages configuration locations ([#&#8203;33067](https://github.com/go-gitea/gitea/issues/33067))
    -   Add IntelliJ Gateway's .uuid to gitignore ([#&#8203;33052](https://github.com/go-gitea/gitea/issues/33052))
    -   User facing messages for AGit errors ([#&#8203;33012](https://github.com/go-gitea/gitea/issues/33012))
    -   Always show assignees on right ([#&#8203;33006](https://github.com/go-gitea/gitea/issues/33006))
    -   Fix eslint ([#&#8203;33002](https://github.com/go-gitea/gitea/issues/33002))
    -   Update JS dependencies ([#&#8203;32914](https://github.com/go-gitea/gitea/issues/32914))
    -   Bump x/net ([#&#8203;32896](https://github.com/go-gitea/gitea/issues/32896)) ([#&#8203;32900](https://github.com/go-gitea/gitea/issues/32900))
    -   Only activity tab needs heatmap data loading ([#&#8203;34652](https://github.com/go-gitea/gitea/issues/34652))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC41NC4xIiwidXBkYXRlZEluVmVyIjoiNDAuNTQuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsia2luZC9kZXBlbmRlbmN5Il19-->

Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/886
Co-authored-by: Renovate Bot <[email protected]>
Co-committed-by: Renovate Bot <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lgtm/done This PR has enough approvals to get merged. There are no important open reservations anymore. modifies/go Pull requests that update Go code type/bug
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants