Matt Donoughe
Matt Donoughe
I don't know if `encrypted` is useful. If you have an image that's been decrypted, I assume you wouldn't know by looking at it that it was previously encrypted and...
I was planning to open another issue for having a `DefaultOnError` that works for serialization, but `SerializeAs` doesn't have a way to distinguish between errors because the value is unrepresentable...
I used binary search to find these edges between behaviors. I don't know if there's a list of such timestamps, but 9,223,372,036,854,775,807 is the limit of an i64 so those...
I don't think this is right either. Go module names are case sensitive, including the first path element. [Uppercase characters are forbidden for the first path element](https://pkg.go.dev/golang.org/x/mod/module#CheckPath), so lowercasing is...
Isn't Option C the same as Option B? Related to namespaces: https://github.com/package-url/purl-spec/issues/294 It's not possible to just make a new go package type to avoid versioning PURL. This would create...
Creating distinct package types avoids one problem by creating a bigger problem. Creating several slightly different types with slightly different behaviors defeats the purpose of having a standardized way of...
> thing is: AFAIK `go` does _not_ know any namespace (unlike php/`composer` and `npm` and others ...) > `go` only has package names, and I had the idea to use...
There's no difference between how NPM and PHP do/don't have namespaces and how Go does/doesn't have namespaces. In all of these cases, the name of the package in the native...
I don't see package namespaces in the screenshot. The first arrow looks like it's pointing at "main Composer repository", but the repository is not related to the package name. The...
The minimal version of reqwest-middleware compatible with reqwest-tracing is 0.3.1, but because of the way reqwest-middleware works, all middlewares and the code composing the middlewares to build the client must...