1. 17 Feb, 2019 2 commits
  2. 16 Feb, 2019 1 commit
  3. 15 Feb, 2019 6 commits
  4. 13 Feb, 2019 5 commits
  5. 12 Feb, 2019 8 commits
  6. 11 Feb, 2019 13 commits
  7. 10 Feb, 2019 1 commit
    • Daniel Martí's avatar
      doc: remove last pieces of advice to set GOROOT · e1b49ad6
      Daniel Martí authored
      install.html still insisted that GOROOT must be set if a binary install
      of Go is set up in a custom directory. However, since 1.10, this has
      been unnecessary as the GOROOT will be found based on the location of
      the 'go' binary being run.
      
      Likewise, install-source.html includes an 'export GOROOT' line in a
      section that only talks about explicitly setting GOARCH and GOOS, which
      is optional. We don't want to have users think it is recommended to set
      GOROOT here either, so remove the unnecessary line.
      
      Change-Id: I7dfef09f9a1d003e0253b793d63ea40d5cf1837f
      Reviewed-on: https://go-review.googlesource.com/c/161758Reviewed-by: default avatarAndrew Bonventre <andybons@golang.org>
      Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
      Run-TryBot: Daniel Martí <mvdan@mvdan.cc>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      e1b49ad6
  8. 09 Feb, 2019 2 commits
  9. 08 Feb, 2019 1 commit
  10. 07 Feb, 2019 1 commit
    • Filippo Valsorda's avatar
      crypto/tls: disable RSA-PSS in TLS 1.2 · 7ccd3583
      Filippo Valsorda authored
      Most of the issues that led to the decision on #30055 were related to
      incompatibility with or faulty support for RSA-PSS (#29831, #29779,
      v1.5 signatures). RSA-PSS is required by TLS 1.3, but is also available
      to be negotiated in TLS 1.2.
      
      Altering TLS 1.2 behavior based on GODEBUG=tls13=1 feels surprising, so
      just disable RSA-PSS entirely in TLS 1.2 until TLS 1.3 is on by default,
      so breakage happens all at once.
      
      Updates #30055
      
      Change-Id: Iee90454a20ded8895e5302e8bcbcd32e4e3031c2
      Reviewed-on: https://go-review.googlesource.com/c/160998
      Run-TryBot: Filippo Valsorda <filippo@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarAdam Langley <agl@golang.org>
      7ccd3583