Re: [golang-dev] proposal: public module authentication with the Go notary

2019-04-25 Thread Russ Cox
On Thu, Mar 7, 2019 at 5:52 AM Jakub Cajka wrote: > As I will carefully evaluate all the details of the final implementation, > but from this first look I'm currently leaning to "patch out" or > de-configure by default this feature in Fedora when/if it lands in upstream > GC, to preserve the

Re: [golang-dev] proposal: public module authentication with the Go notary

2019-04-25 Thread Russ Cox
On Fri, Mar 8, 2019 at 8:09 AM 'Nicolas Mailhot' via golang-dev < golang-...@googlegroups.com> wrote: > The notary part of Go modules, like the rest of the module > implementation, suffers from a lack of understanding of integration and > QA workflows, and a simplistic dev-centric worldview. >

Re: [golang-dev] proposal: public module authentication with the Go notary

2019-04-25 Thread Russ Cox
On Sat, Mar 9, 2019 at 2:55 PM Ian Denhardt wrote: > Here's a reproducer: > > > $ go mod init example.org/my-project > > go: creating new go.mod: module example.org/my-project > > $ cat >> main.go << "EOF" > > package main > > import _ "example.com/other-module" > > func main() {} > > EOF > > $