-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/go: packages with non root vendor elements excluded from module #71785
Comments
Issue #37397 was about some packages whose import path ends with "/vendor" being treated as if they're vendored, and being left out of module zips. It looks like what you're running into isn't that issue, since the import paths in the error message do not end with "/vendor", but instead they contain "/vendor/". See https://pkg.go.dev/cmd/go#hdr-Vendor_Directories for documentation about vendor directories, which applies:
Does the problem go away if you rename the directory vendor in your repo to something else (e.g., "copy") and update the import paths in dummy.go accordingly? |
@dmitshur I created issue #37397 -- and while you're right about the failing example being an import path that "ends with /vendor", the intention of the issue was certainly to allow "vendor" folders in all but the root of a module, and that's how I understood that the fix in "x/mod: fix handling of vendored packages with '/vendor' in non-top-level paths" tried to accomplish, but I might have read it wrong. As the issue starter I can confirm that the issue I reported isn't fixed, as in: It didn't fix MY issue. |
It probably would go away after renaming this, however its pretty difficult to rename it as my code is auto-generated and this vendor directory was called by C dependency's maintainer, not by me. This documentation quote imo applies only to the "real" vendor directories (these in top-level module directory) not such a "fake" vendors like mine. |
I'm coming here from #71978, it looks to be similar but specific to the @dmitshur, I'm curious if the link you shared re: |
@jsteenb2 The intersection of directories "testdata" and "vendor" is an interesting edge case. (It's possible it already came up and was discussed in a prior issue.) It may be reasonable to expect that testdata directory should be able to contain arbitrary data for testing, possibly including directories named vendor. In practice, there will still be some constraints, such as go.mod files inside testdata still having the effect of carving out that directory from the parent module. And it seems directories named vendor currently have the same behavior - today's implementation of isVendoredPackage only looks for "/vendor/" path elements regardless of whether it's inside a "testdata" directory. Edit: Also note that embed package documentation hints at this limitation, albeit indirectly given its intersection with this issue: "Patterns must not match files outside the package's module, such as ‘.git/*’, symbolic links, 'vendor/', or any directories containing go.mod (these are separate modules)." Emphasis mine. Given that the /vendor/ directory started out as having effect anywhere back in GOPATH mode, but has been refined to be primarily at the module root in module mode, maybe this could use reconsideration. It would need a proposal. That's something for cmd/go owners to consider, if they haven't already. CC @matloob, @samthanawalla via owners. |
@dmitshur that makes a ton of sense. As I was debugging this I read up on the embed pkg docs and what it states makes perfect sense if the It would be great if we could include vendor in the testdata dir. I fully expect any rouge Would love to see |
I've made a proposal of fixing this in golang/mod#24. I think that disallowing packages like |
I think we may have conflated your bug with an issue that we had wanted to fix earlier ('vendor' being the last element of the path). We should have a proposal for this. I think we'd want to have sufficient evidence that the benefits gained from doing this are worth the additional complexity that comes from a second change in zipfile behavior. |
I can literally copy-paste content of #37397 - this is the same issue, but about the full issue - not it special case (
In my proposal (I'm aware it isn't perfect, but this is only an approximation) it is +18 -2, so this "complexity" is not SO large. I see it this way:
reference
Edit 1:
Two notes could be made:
|
The amount of code introduced isn't a big issue, the issue is that that there would be more Go versions that need to be kept in mind to know what zip file is created. |
Go version
go version go1.24.0 linux/amd64
Output of
go env
in your module/workspace:What did you do?
In #70303 I was told that the bug that packages with /vendor in its name not being in a root of the module should not produce errors anymore but I've tried to upgrade https://github.com/AllenDang/cimgui-go as well as github.com/allendang/giu to go 1.24 and doing
go mod tidy
on giu still produces an errorWhat did you see happen?
What did you expect to see?
no error should happen since this bug is supposed to be fixed.
The text was updated successfully, but these errors were encountered: