Merged
Conversation
lunny
approved these changes
Jan 24, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Updates developer/tooling dependencies in the Makefile and applies small Go “fix” refactors to use Cut helpers for clearer string/byte parsing.
Changes:
- Bump tool versions in
Makefile(golangci-lint, actionlint). - Refactor IPv6 hostport parsing in
portOnlyto usestrings.Cut. - Refactor 4-byte aligned string parsing in NuGet PDB extraction to use
bytes.Cut.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| modules/validation/binding.go | Uses strings.Cut for simpler/clearer "]:" port extraction logic. |
| modules/packages/nuget/symbol_extractor.go | Uses bytes.Cut to detect NUL-terminated strings while reading stream names. |
| Makefile | Updates pinned versions for golangci-lint and actionlint. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
wxiaoguang
approved these changes
Jan 24, 2026
zjjhot
added a commit
to zjjhot/gitea
that referenced
this pull request
Jan 26, 2026
* giteaofficial/main: Normalize guessed languages for code highlighting (go-gitea#36450) Add `knip` linter (go-gitea#36442) Fix various bugs (go-gitea#36446) Update tool dependencies (go-gitea#36445) Update JS dependencies, adjust webpack config, misc fixes (go-gitea#36431) fix: Improve image captcha contrast for dark mode (go-gitea#36265) Refactor template render (go-gitea#36438) Add documentation for markdown anchor post-processing (go-gitea#36443) Fix markup heading parsing, fix emphasis parsing (go-gitea#36284) Front port changelog for 1.25.4 (go-gitea#36432) Bugfix: Potential incorrect runID in run status update (go-gitea#36437) Restrict branch naming when new change matches with protection rules (go-gitea#36405)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updates all dependencies in
Makefile. The go fix was done automatically, I just altered the variable name.