From 553e003414d3aa90cc39830ee22f08453d9f3408 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Thu, 30 Apr 2020 07:48:12 -0700 Subject: [PATCH] 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 --- doc/go1.15.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/doc/go1.15.html b/doc/go1.15.html index e3cb3d3b9bb..977c2815ac5 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. +