From: Brad Fitzpatrick Date: Thu, 30 Apr 2020 14:48:12 +0000 (-0700) Subject: doc/go1.15: add 32-bit darwin removal and Resolver.LookupIP X-Git-Tag: go1.15beta1~278 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=553e003414d3aa90cc39830ee22f08453d9f3408;p=gostls13.git doc/go1.15: add 32-bit darwin removal and Resolver.LookupIP Change-Id: I3a67908de9c85bcd39fb03c1b674caa9f817606b Reviewed-on: https://go-review.googlesource.com/c/go/+/231117 Reviewed-by: Andrew Bonventre --- diff --git a/doc/go1.15.html b/doc/go1.15.html index e3cb3d3b9b..977c2815ac 100644 --- a/doc/go1.15.html +++ b/doc/go1.15.html @@ -31,6 +31,18 @@ TODO

Ports

+

Darwin

+ +

+ As announced in the Go 1.14 release + notes, Go 1.15 drops support for 32-bit binaries on macOS, iOS, + iPadOS, watchOS, and tvOS (the darwin/386 + and darwin/arm ports). Go continues to support the + 64-bit darwin/amd64 and darwin/arm64 ports. +

+ +

Windows

+

Go 1.15 now generates Windows ASLR executables when -buildmode=pie cmd/link flag is provided. Go command uses -buildmode=pie by default @@ -214,6 +226,11 @@ TODO which Timeout returns true although a deadline has not been exceeded.

+ +

+ The new Resolver.LookupIP + method supports IP lookups that are both network-specific and accept a context. +