From 35d3590177c4b5de634384a372da107ae6f07aa4 Mon Sep 17 00:00:00 2001 From: Brandur Date: Tue, 6 Nov 2018 15:39:08 -0800 Subject: [PATCH] Drop Go 1.8 from the build matrix Unfortunately, it appears that new changes in the `golang.org/x/net/http2` package have caused it to no longer build under Go 1.8. As noted in Go's release policy [1], the latest two Go versions are officially supported, making that Go 1.11 and Go 1.10 currently. We do see ~10% users on Go 1.8 still which is larger than we'd hope when dropping an old version, but we don't have too much choice here. We believe that an upgrade to Go 1.9 for those users should be straightforward given that there generally no backward incompatible changes between new Go versions. See also discussion in #715. [1] https://golang.org/doc/devel/release.html#policy --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dfc47cffe6..edbec63d70 100644 --- a/.travis.yml +++ b/.travis.yml @@ -52,7 +52,6 @@ env: - STRIPE_MOCK_VERSION=0.35.0 go: - - "1.8" - "1.9" - "1.10" - "1.11"