A very simple terminal spinner
0

Configure Feed

Select the types of activity you want to include in your feed.

Update module golang.org/x/term to v0.33.0 (#13)

* Update module golang.org/x/term to v0.33.0

* Ensure renovate runs `go mod tidy` after updates

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Tom Fleet <me@followtheprocess.codes>

authored by

renovate[bot]
renovate[bot]
Tom Fleet
and committed by
GitHub
(Jul 10, 2025, 8:32 AM +0100) a82d0a99 0996055d

+11 -9
+2
.golangci.yml
··· 35 35 - maintidx # This is just the inverse of complexity... which is cyclop 36 36 - nestif # cyclop does this 37 37 - nlreturn # Similar to wsl, I think best left to judgement 38 + - noinlineerr # Inline errors are fine 38 39 - nonamedreturns # Named returns are often helpful, it's naked returns that are the issue 39 40 - paralleltest # I've never had Go tests take longer than a few seconds, it's fine 40 41 - unparam # gopls is better and more subtle 41 42 - varnamelen # Lots of false positives of things that are fine 42 43 - wrapcheck # Not every error must be wrapped 43 44 - wsl # Very aggressive, some of this I like but tend to do anyway 45 + - wsl_v5 # As above, just newer version 44 46 45 47 exclusions: 46 48 presets:
+2 -2
go.mod
··· 4 4 5 5 require ( 6 6 go.followtheprocess.codes/hue v0.6.0 7 - golang.org/x/term v0.32.0 7 + golang.org/x/term v0.33.0 8 8 ) 9 9 10 - require golang.org/x/sys v0.33.0 // indirect 10 + require golang.org/x/sys v0.34.0 // indirect
+4 -4
go.sum
··· 1 1 go.followtheprocess.codes/hue v0.6.0 h1:JDLnRrkauCCIyYRqKNBDM+X6X5o75j2CG3iddnzIuhc= 2 2 go.followtheprocess.codes/hue v0.6.0/go.mod h1:tNCWKaywHqkFo20hYOVwG7CaoRajJeE2AueP5HStY7U= 3 - golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw= 4 - golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= 5 - golang.org/x/term v0.32.0 h1:DR4lr0TjUs3epypdhTOkMmuF5CDFJ/8pOnbzMZPQ7bg= 6 - golang.org/x/term v0.32.0/go.mod h1:uZG1FhGx848Sqfsq4/DlJr3xGGsYMu/L5GW4abiaEPQ= 3 + golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA= 4 + golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= 5 + golang.org/x/term v0.33.0 h1:NuFncQrRcaRvVmgRkvM3j/F00gWIAlcmlB8ACEKmGIg= 6 + golang.org/x/term v0.33.0/go.mod h1:s18+ql9tYWp1IfpV9DmCtQDDSRBUjKaw9M1eAv5UeF0=
+3 -3
.github/renovate.json
··· 1 1 { 2 2 "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 - "extends": [ 4 - "config:recommended" 5 - ] 3 + "extends": ["config:recommended"], 4 + "labels": ["dependencies"], 5 + "postUpdateOptions": ["gomodTidy"] 6 6 }