Skip to content

Commit d17a8d6

Browse files
committed
feat: update to go 1.24
- pins buildGoModule to buildGo124Module - removes `toolchain` entry from `go.mod` as our toolchain is managed via Nix. - cleans up devshell - required adding no lint for chdir related code in test as golangci-lint was upgraded (we should use t.Chdir() on a first pass it was breaking the tests. - ran a `nix fmt` which seems to have made minor changes to some markdown files Signed-off-by: Brian McGee <[email protected]>
1 parent 2449507 commit d17a8d6

File tree

18 files changed

+80
-90
lines changed

18 files changed

+80
-90
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Go
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: 1.22.x
23+
go-version: 1.24.x
2424
- name: Run goreleaser
2525
uses: goreleaser/goreleaser-action@v6
2626
with:

.golangci.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@ linters:
33
enable-all: true
44
disable:
55
- depguard
6-
- execinquery
76
- exhaustruct
8-
- exportloopref
97
- funlen
8+
- tenv
109
- godox
11-
- gomnd
1210
- mnd
1311
- varnamelen
1412
- forbidigo

README.md

+21-21
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@ That's what treefmt is about.
3939

4040
Its main features are:
4141

42-
- **Providing a unified CLI and output**
43-
- You don’t need to remember which formatters are necessary for each project.
44-
- Once you specify the formatters in the config file, you can trigger all of them with one command and get a
45-
standardized output.
46-
- **Running all the formatters in parallel**
47-
- A standard script loops over your folders and runs each formatter sequentially.
48-
- In contrast, `treefmt` runs formatters in parallel. This way, the formatting job takes less time.
49-
- **Tracking file changes**
50-
- When formatters are run in a script, they process all the files they encounter, regardless of whether or not
51-
they have changed.
52-
- `treefmt` tracks file changes, and only attempts to format files which have changed.
42+
- **Providing a unified CLI and output**
43+
- You don’t need to remember which formatters are necessary for each project.
44+
- Once you specify the formatters in the config file, you can trigger all of them with one command and get a
45+
standardized output.
46+
- **Running all the formatters in parallel**
47+
- A standard script loops over your folders and runs each formatter sequentially.
48+
- In contrast, `treefmt` runs formatters in parallel. This way, the formatting job takes less time.
49+
- **Tracking file changes**
50+
- When formatters are run in a script, they process all the files they encounter, regardless of whether or not
51+
they have changed.
52+
- `treefmt` tracks file changes, and only attempts to format files which have changed.
5353

5454
To reformat the whole source tree, just type `treefmt` in any folder. This is a fast and simple formatting solution.
5555

@@ -124,31 +124,31 @@ formatters.
124124

125125
For instance, you can go for:
126126

127-
- [clang-format] for C/C++/Java/JavaScript/JSON/Objective-C/Protobuf/C#
128-
- gofmt for Golang
129-
- Prettier for JavaScript/HTML/CSS
127+
- [clang-format] for C/C++/Java/JavaScript/JSON/Objective-C/Protobuf/C#
128+
- gofmt for Golang
129+
- Prettier for JavaScript/HTML/CSS
130130

131131
Find the full list of supported formatters [here](https://treefmt.com/configure.html#supported-formatters).
132132

133133
## IDE Integration
134134

135135
`treefmt` currently has support for vscode via an extension:
136136

137-
- [treefmt-vscode](https://marketplace.visualstudio.com/items?itemName=ibecker.treefmt-vscode) | [GitHub repo](https://github.com/isbecker/treefmt-vscode)
137+
- [treefmt-vscode](https://marketplace.visualstudio.com/items?itemName=ibecker.treefmt-vscode) | [GitHub repo](https://github.com/isbecker/treefmt-vscode)
138138

139139
## Upcoming features
140140

141141
This project is still pretty new. Down the line we also want to add support for:
142142

143-
- More IDE integration
144-
- Pre-commit hooks
143+
- More IDE integration
144+
- Pre-commit hooks
145145

146146
## Related projects
147147

148-
- [EditorConfig](https://editorconfig.org/): unifies file indentations configuration on a per-project basis.
149-
- [prettier](https://prettier.io/): an opinionated code formatter for a number of languages.
150-
- [Super-Linter](https://github.com/github/super-linter): a project by GitHub to lint all of your code.
151-
- [pre-commit](https://pre-commit.com/): a framework for managing and maintaining multi-language pre-commit hooks.
148+
- [EditorConfig](https://editorconfig.org/): unifies file indentations configuration on a per-project basis.
149+
- [prettier](https://prettier.io/): an opinionated code formatter for a number of languages.
150+
- [Super-Linter](https://github.com/github/super-linter): a project by GitHub to lint all of your code.
151+
- [pre-commit](https://pre-commit.com/): a framework for managing and maintaining multi-language pre-commit hooks.
152152

153153
## Contributing
154154

cmd/root_test.go

+7
Original file line numberDiff line numberDiff line change
@@ -753,13 +753,15 @@ func TestChangeWorkingDirectory(t *testing.T) {
753753
as.NoError(err)
754754

755755
t.Cleanup(func() {
756+
//nolint:usetesting
756757
// return to the previous working directory
757758
as.NoError(os.Chdir(cwd))
758759
})
759760

760761
tempDir := test.TempExamples(t)
761762
configPath := filepath.Join(tempDir, "treefmt.toml")
762763

764+
//nolint:usetesting
763765
// change to an empty temp dir and try running without specifying a working directory
764766
as.NoError(os.Chdir(t.TempDir()))
765767

@@ -770,6 +772,7 @@ func TestChangeWorkingDirectory(t *testing.T) {
770772
}),
771773
)
772774

775+
//nolint:usetesting
773776
// now change to the examples temp directory
774777
as.NoError(os.Chdir(tempDir), "failed to change to temp directory")
775778

@@ -790,6 +793,7 @@ func TestChangeWorkingDirectory(t *testing.T) {
790793
as.NoError(err)
791794

792795
t.Cleanup(func() {
796+
//nolint:usetesting
793797
// return to the previous working directory
794798
as.NoError(os.Chdir(cwd))
795799
})
@@ -1512,6 +1516,7 @@ func TestPathsArg(t *testing.T) {
15121516
as.NoError(err)
15131517

15141518
t.Cleanup(func() {
1519+
//nolint:usetesting
15151520
// return to the previous working directory
15161521
as.NoError(os.Chdir(cwd))
15171522
})
@@ -1529,6 +1534,7 @@ func TestPathsArg(t *testing.T) {
15291534
externalFile, err := os.Create(filepath.Join(tempDir, "outside_tree.go"))
15301535
as.NoError(err)
15311536

1537+
//nolint:usetesting
15321538
// change working directory to project root
15331539
as.NoError(os.Chdir(treeRoot))
15341540

@@ -1804,6 +1810,7 @@ func TestRunInSubdir(t *testing.T) {
18041810
err = os.Symlink(echoPath, echoRel)
18051811
as.NoError(err)
18061812

1813+
//nolint:usetesting
18071814
// change working directory to subdirectory
18081815
as.NoError(os.Chdir(filepath.Join(tempDir, "elm")))
18091816

docs/content/contributing/code.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
You will need to have the following installed:
66

7-
- [Nix]
8-
- [Direnv]
7+
- [Nix]
8+
- [Direnv]
99

1010
!!! important
1111

docs/content/contributing/docs.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ It can be entered by running: `nix develop .#docs`
1111
The docs are based on [MkDocs] and the [MkDocs Material] theme.
1212
You will find its configuration and content in the following locations:
1313

14-
- `mkdocs.yaml`
15-
- `./docs`
14+
- `mkdocs.yaml`
15+
- `./docs`
1616

1717
## Serve locally
1818

@@ -43,9 +43,9 @@ configured to serve from.
4343
There is a github workflow, `.github/workflows/gh-pages.yml` which is responsible for publishing the docs.
4444
It does the following:
4545

46-
- On merge to `main`, the docs version [main](https://numtide.github.io/treefmt/main/) is updated.
47-
- When a new tag is created of the form `v.<major>.<minor>.<patch>` a docs version `v<major>.<minor>` is created and the
48-
[latest](https://numtide.github.io/treefmt/latest) alias is updated to point to this.
46+
- On merge to `main`, the docs version [main](https://numtide.github.io/treefmt/main/) is updated.
47+
- When a new tag is created of the form `v.<major>.<minor>.<patch>` a docs version `v<major>.<minor>` is created and the
48+
[latest](https://numtide.github.io/treefmt/latest) alias is updated to point to this.
4949

5050
The idea is that users will land on the latest released version of the docs by default, with `main` being available if
5151
they wish to read about unreleased features and changes.

docs/content/getting-started/configure.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -332,9 +332,9 @@ File to search for to find the tree root (if `tree-root` is not set)
332332

333333
Set the verbosity level of logs:
334334

335-
- `0` => `warn`
336-
- `1` => `info`
337-
- `2` => `debug`
335+
- `0` => `warn`
336+
- `1` => `info`
337+
- `2` => `debug`
338338

339339
=== "Flag"
340340

@@ -456,8 +456,8 @@ selectors such as `*` and `?`.
456456

457457
### Examples
458458

459-
- `*.go` - match all files in the project that end with a ".go" file extension.
460-
- `vendor/*` - match all files under the vendor folder, recursively.
459+
- `*.go` - match all files in the project that end with a ".go" file extension.
460+
- `vendor/*` - match all files under the vendor folder, recursively.
461461

462462
## Supported Formatters
463463

docs/content/reference/formatter-spec.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ The formatter's CLI must be of the form:
2929

3030
Where:
3131

32-
- `<command>` is the name of the formatting tool.
33-
- `[options]` is any number of flags and options that the formatter accepts.
34-
- `[...<files>]` is one or more files given to the formatter for processing.
32+
- `<command>` is the name of the formatting tool.
33+
- `[options]` is any number of flags and options that the formatter accepts.
34+
- `[...<files>]` is one or more files given to the formatter for processing.
3535

3636
Example:
3737

flake.lock

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/numtide/treefmt/v2
22

3-
go 1.23.0
4-
5-
toolchain go1.24.1
3+
go 1.24
64

75
require (
86
github.com/BurntSushi/toml v1.4.0
@@ -33,7 +31,6 @@ require (
3331
github.com/mattn/go-isatty v0.0.20 // indirect
3432
github.com/mattn/go-runewidth v0.0.15 // indirect
3533
github.com/mitchellh/mapstructure v1.5.0 // indirect
36-
github.com/muesli/cancelreader v0.2.2 // indirect
3734
github.com/muesli/reflow v0.3.0 // indirect
3835
github.com/muesli/termenv v0.15.2 // indirect
3936
github.com/otiai10/mint v1.6.3 // indirect

go.sum

+6-16
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ github.com/charmbracelet/lipgloss v0.10.0/go.mod h1:Wig9DSfvANsxqkRsqj6x87irdy12
99
github.com/charmbracelet/log v0.4.0 h1:G9bQAcx8rWA2T3pWvx7YtPTPwgqpk7D68BX21IRW8ZM=
1010
github.com/charmbracelet/log v0.4.0/go.mod h1:63bXt/djrizTec0l11H20t8FDSvA4CRZJ1KH22MdptM=
1111
github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
12-
github.com/creack/pty v1.1.23 h1:4M6+isWdcStXEf15G/RbrMPOQj1dZ7HPZCGwE4kOeP0=
13-
github.com/creack/pty v1.1.23/go.mod h1:08sCNb52WyoAwi2QDyzUCTgcvVFhUzewun7wtTfvcwE=
12+
github.com/creack/pty v1.1.24 h1:bJrF4RRfyJnbTJqzRLHzcGaZK1NeM5kTC9jGgovnR1s=
13+
github.com/creack/pty v1.1.24/go.mod h1:08sCNb52WyoAwi2QDyzUCTgcvVFhUzewun7wtTfvcwE=
1414
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1515
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1616
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
@@ -25,8 +25,8 @@ github.com/go-quicktest/qt v1.101.0 h1:O1K29Txy5P2OK0dGo59b7b0LR6wKfIhttaAhHUyn7
2525
github.com/go-quicktest/qt v1.101.0/go.mod h1:14Bz/f7NwaXPtdYEgzsx46kqSxVwTbzVZsDC26tQJow=
2626
github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y=
2727
github.com/gobwas/glob v0.2.3/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8=
28-
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
29-
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
28+
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
29+
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
3030
github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
3131
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
3232
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
@@ -49,8 +49,6 @@ github.com/mattn/go-runewidth v0.0.15 h1:UNAjwbU9l54TA3KzvqLGxwWjHmMgBUVhBiTjelZ
4949
github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
5050
github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=
5151
github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
52-
github.com/muesli/cancelreader v0.2.2 h1:3I4Kt4BQjOR54NavqnDogx/MIoWBFa0StPA8ELUXHmA=
53-
github.com/muesli/cancelreader v0.2.2/go.mod h1:3XuTXfFS2VjM+HTLZY9Ak0l6eUKfijIfMUZ4EgX0QYo=
5452
github.com/muesli/reflow v0.3.0 h1:IFsN6K9NfGtjeggFP+68I4chLZV2yIKsXJFNZ+eWh6s=
5553
github.com/muesli/reflow v0.3.0/go.mod h1:pbwTDkVPibjO2kyvBQRBxTWEEGDGq0FlB1BIKtnHY/8=
5654
github.com/muesli/termenv v0.15.2 h1:GohcuySI0QmI3wN8Ok9PtKGkgkFIk7y6Vpb5PvrY+Wo=
@@ -68,8 +66,8 @@ github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJ
6866
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
6967
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
7068
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
71-
github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII=
72-
github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o=
69+
github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ=
70+
github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc=
7371
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
7472
github.com/sagikazarmark/locafero v0.4.0 h1:HApY1R9zGo4DBgr7dqsTH/JJxLTTsOt7u6keLGt6kNQ=
7573
github.com/sagikazarmark/locafero v0.4.0/go.mod h1:Pe1W6UlPYUk/+wc/6KFhbORCfqzgYEpgQ3O5fPuL3H4=
@@ -108,17 +106,11 @@ go.uber.org/multierr v1.9.0 h1:7fIwc/ZtS0q++VgcfqFDxSBZVv/Xo49/SYnDFupUwlI=
108106
go.uber.org/multierr v1.9.0/go.mod h1:X2jQV1h+kxSjClGpnseKVIxpmcjrj7MNnI0bnlfKTVQ=
109107
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 h1:2dVuKD2vS7b0QIHQbpyTISPd0LeHDbnYEryqj5Q1ug8=
110108
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56/go.mod h1:M4RDyNAINzryxdtnbRXRL/OHtkFuWGRjvuhBJpk2IlY=
111-
golang.org/x/sync v0.11.0 h1:GGz8+XQP4FvTTrjZPzNKTMFtSXH80RAzG+5ghFPgK9w=
112-
golang.org/x/sync v0.11.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
113109
golang.org/x/sync v0.12.0 h1:MHc5BpPuC30uJk597Ri8TV3CNZcTLu6B6z4lJy+g6Jw=
114110
golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
115111
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
116-
golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=
117-
golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
118112
golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik=
119113
golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
120-
golang.org/x/term v0.25.0 h1:WtHI/ltw4NvSUig5KARz9h521QvRC8RmF/cuYqifU24=
121-
golang.org/x/term v0.25.0/go.mod h1:RPyXicDX+6vLxogjjRxjgD2TKtmAO6NZBsBRfrOLu7M=
122114
golang.org/x/term v0.29.0 h1:L6pJp37ocefwRRtYPKSWOWzOtWSxVajvz2ldH/xi3iU=
123115
golang.org/x/term v0.29.0/go.mod h1:6bl4lRlvVuDgSf3179VpIxBF0o10JUpXWOnI7nErv7s=
124116
golang.org/x/text v0.18.0 h1:XvMDiNzPAl0jr17s6W9lcaIhGUfUORdGCNsuLmPG224=
@@ -131,7 +123,5 @@ gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
131123
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
132124
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
133125
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
134-
mvdan.cc/sh/v3 v3.10.0 h1:v9z7N1DLZ7owyLM/SXZQkBSXcwr2IGMm2LY2pmhVXj4=
135-
mvdan.cc/sh/v3 v3.10.0/go.mod h1:z/mSSVyLFGZzqb3ZIKojjyqIx/xbmz/UHdCSv9HmqXY=
136126
mvdan.cc/sh/v3 v3.11.0 h1:q5h+XMDRfUGUedCqFFsjoFjrhwf2Mvtt1rkMvVz0blw=
137127
mvdan.cc/sh/v3 v3.11.0/go.mod h1:LRM+1NjoYCzuq/WZ6y44x14YNAI0NK7FLPeQSaFagGg=

nix/devshells/default.nix

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
{pkgs, ...}:
22
pkgs.mkShellNoCC {
3-
env.GOROOT = "${pkgs.go}/share/go";
3+
env = {
4+
GOROOT = "${pkgs.go_1_24}/share/go";
5+
CGO_ENABLED = "0";
6+
};
47

58
packages =
69
(with pkgs; [
7-
go
10+
go_1_24
811
goreleaser
912
golangci-lint
1013
delve

0 commit comments

Comments
 (0)