-
Notifications
You must be signed in to change notification settings - Fork 274
Problem: recent bug fixes are not included #1754
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e9ea8e0
Problem: unable to resolve octokit action v2.0.0 (#1750)
mmsqe 9efe991
Problem: conflict of index uniqueness constrain violation on trace ap…
mmsqe 0e6585c
Problem: slices in ReadOptions is freed by gc while referenced in roc…
mmsqe f8f5789
add doc
mmsqe 979dc8c
Problem: ReadOptions mutated by reference release in iterator fix is …
mmsqe f5f2492
deps
mmsqe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,23 @@ | ||
| # some basic overlays necessary for the build | ||
| final: super: { | ||
| final: super: | ||
| let | ||
| replaceLast = | ||
| newVal: l: | ||
| let | ||
| len = builtins.length l; | ||
| in | ||
| if len == 0 then [ ] else final.lib.lists.take (len - 1) l ++ [ newVal ]; | ||
| in | ||
| { | ||
| go_1_23 = super.go_1_23.overrideAttrs (old: rec { | ||
| version = "1.23.4"; | ||
| src = final.fetchurl { | ||
| url = "https://go.dev/dl/go${version}.src.tar.gz"; | ||
| hash = "sha256-rTRaxCHpCBQpOpaZzKGd1SOCUcP2h5gLvK4oSVsmNTE="; | ||
| }; | ||
| # https://github.com/NixOS/nixpkgs/pull/372367 | ||
| patches = replaceLast ./go_no_vendor_checks-1.23.patch old.patches; | ||
| }); | ||
| rocksdb = final.callPackage ./rocksdb.nix { }; | ||
| golangci-lint = final.callPackage ./golangci-lint.nix { }; | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| diff --git a/src/cmd/go/internal/modload/import.go b/src/cmd/go/internal/modload/import.go | ||
| index a3105b6b6d..0e10154a70 100644 | ||
| --- a/src/cmd/go/internal/modload/import.go | ||
| +++ b/src/cmd/go/internal/modload/import.go | ||
| @@ -345,7 +345,7 @@ func importFromModules(ctx context.Context, path string, rs *Requirements, mg *M | ||
| // vendor/modules.txt does not exist or the user manually added directories to the vendor directory. | ||
| // Go 1.23 and later require vendored packages to be present in modules.txt to be imported. | ||
| _, ok := vendorPkgModule[path] | ||
| - if ok || (gover.Compare(MainModules.GoVersion(), gover.ExplicitModulesTxtImportVersion) < 0) { | ||
| + if ok || (gover.Compare(MainModules.GoVersion(), gover.ExplicitModulesTxtImportVersion) < 0) || os.Getenv("GO_NO_VENDOR_CHECKS") == "1" { | ||
| mods = append(mods, vendorPkgModule[path]) | ||
| dirs = append(dirs, dir) | ||
| roots = append(roots, vendorDir) | ||
| diff --git a/src/cmd/go/internal/modload/vendor.go b/src/cmd/go/internal/modload/vendor.go | ||
| index b2cb44100e..05bf3829d5 100644 | ||
| --- a/src/cmd/go/internal/modload/vendor.go | ||
| +++ b/src/cmd/go/internal/modload/vendor.go | ||
| @@ -159,7 +159,7 @@ func checkVendorConsistency(indexes []*modFileIndex, modFiles []*modfile.File, m | ||
| panic(fmt.Errorf("not in workspace mode but number of indexes is %v, not 1", len(indexes))) | ||
| } | ||
| index := indexes[0] | ||
| - if gover.Compare(index.goVersion, "1.14") < 0 { | ||
| + if gover.Compare(index.goVersion, "1.14") < 0 || (os.Getenv("GO_NO_VENDOR_CHECKS") == "1" && len(vendorMeta) == 0) { | ||
| // Go versions before 1.14 did not include enough information in | ||
| // vendor/modules.txt to check for consistency. | ||
| // If we know that we're on an earlier version, relax the consistency check. |
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.