Remove Go 1.17 support - hugo - [fork] hugo port for 9front
 (HTM) git clone git@git.drkhsh.at/hugo.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit a6488e7bad883c71fb08655948d83574d7f703f9
 (DIR) parent 65a78cae1ecdcfcb0701d78fed812083a1a6e82b
 (HTM) Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
       Date:   Wed, 16 Mar 2022 08:57:58 +0100
       
       Remove Go 1.17 support
       
       Go 1.18 had some breaking changes on source level meaning we cannot build on older Go versions anymore.
       
       The improvements in Go 1.18 (e.g. `break` and `continue`)  were to good to pass on.
       
       Note that you don't need Go (or Go 1.18) to run a pre-built binary.
       
       Updates #9677
       
       Diffstat:
         M .github/workflows/test.yml          |       6 +++++-
         M go.mod                              |      43 ++++++++++++++++++++++++++++---
         M go.sum                              |      11 -----------
       
       3 files changed, 44 insertions(+), 16 deletions(-)
       ---
 (DIR) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
       @@ -7,7 +7,11 @@ jobs:
              GO111MODULE: on
            strategy:
              matrix:
       -        go-version: [1.17.x, 1.18.x]
       +        # Note: We upgraded to Go 1.18 in Hugo v0.95.0
       +        # Go 1.18 had some breaking changes on the source level which means Hugo cannot be built
       +        # with older Go versions, but the improvements in Go 1.18 were to good to pass on (e.g. break and continue).
       +        # Note that you don't need Go (or Go 1.18) to run a pre-built binary.
       +        go-version: [1.18.x]
                os: [ubuntu-latest, macos-latest, windows-latest]
            runs-on: ${{ matrix.os }}
            steps:
 (DIR) diff --git a/go.mod b/go.mod
       @@ -1,10 +1,8 @@
        module github.com/gohugoio/hugo
        
        require (
       -        cloud.google.com/go/iam v0.2.0 // indirect
                github.com/BurntSushi/locker v0.0.0-20171006230638-a6e239ea1c69
                github.com/PuerkitoBio/purell v1.1.1
       -        github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
                github.com/alecthomas/chroma v0.10.0
                github.com/armon/go-radix v1.0.0
                github.com/aws/aws-sdk-go v1.43.5
       @@ -42,7 +40,6 @@ require (
                github.com/mitchellh/hashstructure v1.1.0
                github.com/mitchellh/mapstructure v1.4.3
                github.com/muesli/smartcrop v0.3.0
       -        github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
                github.com/niklasfasching/go-org v1.6.2
                github.com/olekukonko/tablewriter v0.0.5
                github.com/pelletier/go-toml/v2 v2.0.0-beta.6
       @@ -70,4 +67,42 @@ require (
                gopkg.in/yaml.v2 v2.4.0
        )
        
       -go 1.16
       +require (
       +        cloud.google.com/go v0.100.2 // indirect
       +        cloud.google.com/go/compute v1.3.0 // indirect
       +        cloud.google.com/go/iam v0.2.0 // indirect
       +        cloud.google.com/go/storage v1.14.0 // indirect
       +        github.com/Azure/azure-pipeline-go v0.2.2 // indirect
       +        github.com/Azure/azure-storage-blob-go v0.9.0 // indirect
       +        github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
       +        github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
       +        github.com/dlclark/regexp2 v1.4.0 // indirect
       +        github.com/go-openapi/jsonpointer v0.19.5 // indirect
       +        github.com/go-openapi/swag v0.19.5 // indirect
       +        github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
       +        github.com/golang/protobuf v1.5.2 // indirect
       +        github.com/google/uuid v1.1.2 // indirect
       +        github.com/google/wire v0.4.0 // indirect
       +        github.com/googleapis/gax-go v2.0.2+incompatible // indirect
       +        github.com/googleapis/gax-go/v2 v2.1.1 // indirect
       +        github.com/inconshreveable/mousetrap v1.0.0 // indirect
       +        github.com/jmespath/go-jmespath v0.4.0 // indirect
       +        github.com/kr/pretty v0.3.0 // indirect
       +        github.com/kr/text v0.2.0 // indirect
       +        github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e // indirect
       +        github.com/mattn/go-ieproxy v0.0.1 // indirect
       +        github.com/mattn/go-runewidth v0.0.9 // indirect
       +        github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
       +        github.com/russross/blackfriday/v2 v2.1.0 // indirect
       +        github.com/tdewolff/parse/v2 v2.5.27 // indirect
       +        go.opencensus.io v0.23.0 // indirect
       +        golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
       +        golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
       +        golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
       +        google.golang.org/appengine v1.6.7 // indirect
       +        google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c // indirect
       +        google.golang.org/grpc v1.44.0 // indirect
       +        google.golang.org/protobuf v1.27.1 // indirect
       +)
       +
       +go 1.18
 (DIR) diff --git a/go.sum b/go.sum
       @@ -487,7 +487,6 @@ github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N
        github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
        github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
        github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
       -github.com/pelletier/go-toml v1.9.4 h1:tjENF6MfZAg8e4ZmZTeWaWiT2vXtsoO6+iuOjFhECwM=
        github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
        github.com/pelletier/go-toml/v2 v2.0.0-beta.6 h1:JFNqj2afbbhCqTiyN16D7Tudc/aaDzE2FBDk+VlBQnE=
        github.com/pelletier/go-toml/v2 v2.0.0-beta.6/go.mod h1:ke6xncR3W76Ba8xnVxkrZG0js6Rd2BsQEAYrfgJ6eQA=
       @@ -576,13 +575,6 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de
        github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
        github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
        github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
       -github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
       -github.com/yuin/goldmark v1.4.7 h1:KHHlQL4EKBZ43vpA1KBEQHfodk4JeIgeb0xJLg7rvDI=
       -github.com/yuin/goldmark v1.4.7/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
       -github.com/yuin/goldmark v1.4.8 h1:zHPiabbIRssZOI0MAzJDHsyvG4MXCGqVaMOwR+HeoQQ=
       -github.com/yuin/goldmark v1.4.8/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
       -github.com/yuin/goldmark v1.4.9 h1:RmdXMGe/HwhQEWIjFAu8fjjvkxJ0tDRVbWGrsPNrclw=
       -github.com/yuin/goldmark v1.4.9/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
        github.com/yuin/goldmark v1.4.10 h1:+WgKGo8CQrlMTRJpGCFCyNddOhW801TKC2QijVV9QVg=
        github.com/yuin/goldmark v1.4.10/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
        go.etcd.io/etcd/api/v3 v3.5.1/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs=
       @@ -658,7 +650,6 @@ golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
        golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
        golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
        golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro=
       -golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro=
        golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
        golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
        golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
       @@ -705,7 +696,6 @@ golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96b
        golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1/go.mod h1:9tjilg8BloeKEkVJvy7fQ90B1CfIiPueXVOjqfkSzI8=
        golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
        golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
       -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
        golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd h1:O7DYs+zxREGLKzKoMQrtrEacpb0ZVXA5rIwylE2Xchk=
        golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
        golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
       @@ -807,7 +797,6 @@ golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBc
        golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
        golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
        golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
       -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
        golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
        golang.org/x/sys v0.0.0-20211205182925-97ca703d548d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
        golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=