-
-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drop Go 1.22 and require Go 1.23.0 or later
This lets us start taking advantage of featurs from Go 1.23, particularly tracking aliases in go/types and iterators. Note that we need to add code to properly handle or skip over the new *types.Alias type which go/types produces for Go type aliases. Also note that we actually turn this mode off entirely for now, due to the bug reported at https://go.dev/issue/70394. We don't yet remove our own alias tracking code yet due to the above. We hope to be able to remove it very soon.
- Loading branch information
Showing
44 changed files
with
101 additions
and
303 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
module mvdan.cc/garble | ||
|
||
go 1.22 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/bluekeyes/go-gitdiff v0.7.1 | ||
github.com/bluekeyes/go-gitdiff v0.8.0 | ||
github.com/go-quicktest/qt v1.101.0 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/rogpeppe/go-internal v1.12.0 | ||
golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 | ||
golang.org/x/mod v0.20.0 | ||
golang.org/x/tools v0.24.0 | ||
github.com/rogpeppe/go-internal v1.13.1 | ||
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c | ||
golang.org/x/mod v0.21.0 | ||
golang.org/x/tools v0.26.0 | ||
) | ||
|
||
require ( | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/sys v0.23.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
) |
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
36 changes: 0 additions & 36 deletions
36
internal/linker/patches/go1.22/0001-add-custom-magic-value.patch
This file was deleted.
Oops, something went wrong.
85 changes: 0 additions & 85 deletions
85
internal/linker/patches/go1.22/0002-add-unexported-function-name-removing.patch
This file was deleted.
Oops, something went wrong.
43 changes: 0 additions & 43 deletions
43
internal/linker/patches/go1.22/0003-add-entryOff-encryption.patch
This file was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.