From 9b55088d6b49fd4bb4832589a1b7e8629de2800c Mon Sep 17 00:00:00 2001 From: Michael Matloob Date: Wed, 6 Jan 2021 21:59:10 -0500 Subject: [PATCH] doc/go1.16: add release note for disallowing non-ASCII import paths golang.org/cl/251878 disallowed non-ASCII characters in import paths, in module mode. They were already disallowed in module paths, so this change just extended the restriction to the package subdirectory of the module. Update the release notes to alert users of this change. Fixes #43052 Change-Id: I1caf9ef978dd3ac599a3f82c5c376ad62e6fc436 Reviewed-on: https://go-review.googlesource.com/c/go/+/282194 Trust: Michael Matloob Run-TryBot: Michael Matloob TryBot-Result: Go Bot Reviewed-by: Bryan C. Mills Reviewed-by: Jay Conrod --- doc/go1.16.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/go1.16.html b/doc/go1.16.html index f0dbee7b89..3e564f8af6 100644 --- a/doc/go1.16.html +++ b/doc/go1.16.html @@ -164,6 +164,12 @@ Do not send CLs removing the interior tags from such phrases. non-reproducible builds.

+

+ The go command now disallows non-ASCII import paths in module + mode. Non-ASCII module paths have already been disallowed so this change + affects module subdirectory paths that contain non-ASCII characters. +

+

Embedding Files

-- 2.50.0