go.mod: Upgrade various golang.org/x/* dependencies

The Go team uses automation to generate unnecessary version bumps across
all of these that make it impossible to upgrade them individually because
they all mutually depend on the latest versions of each other, so
unfortunately we have to accept the risk of updating all of these at once
in order to update any one of them.

Signed-off-by: Martin Atkins <mart@degeneration.co.uk>
This commit is contained in:
Martin Atkins
2025-10-09 13:35:45 -07:00
parent e74bf2d0a1
commit cbfc28472d
17 changed files with 60 additions and 45 deletions

View File

@@ -17,8 +17,9 @@ const _Quality_name = "ErroredNoChanges"
var _Quality_index = [...]uint8{0, 7, 16}
func (i Quality) String() string {
if i < 0 || i >= Quality(len(_Quality_index)-1) {
idx := int(i) - 0
if i < 0 || idx >= len(_Quality_index)-1 {
return "Quality(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _Quality_name[_Quality_index[i]:_Quality_index[i+1]]
return _Quality_name[_Quality_index[idx]:_Quality_index[idx+1]]
}