deps: Update github.com/yuin/goldmark v1.4.9 => v1.4.10
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 12 Mar 2022 09:45:31 +0000 (10:45 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 12 Mar 2022 10:24:11 +0000 (11:24 +0100)
Fixes #9658

go.mod
go.sum
markup/goldmark/integration_test.go

diff --git a/go.mod b/go.mod
index cacafa240cd1307068e06c6c171169602d4f67ba..ed59a6871d41fd6525a6dbf6d8a5ab7a5aafa864 100644 (file)
--- a/go.mod
+++ b/go.mod
@@ -58,7 +58,7 @@ require (
        github.com/spf13/jwalterweatherman v1.1.0
        github.com/spf13/pflag v1.0.5
        github.com/tdewolff/minify/v2 v2.10.0
-       github.com/yuin/goldmark v1.4.9
+       github.com/yuin/goldmark v1.4.10
        go.uber.org/atomic v1.9.0
        gocloud.dev v0.20.0
        golang.org/x/image v0.0.0-20211028202545-6944b10bf410
diff --git a/go.sum b/go.sum
index 93c1565bf875053ce86b9ffe2fc821dcf8bc4d15..5edeee5364614e0961c1823bd033ed04e90682c4 100644 (file)
--- a/go.sum
+++ b/go.sum
@@ -583,6 +583,8 @@ 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=
 go.etcd.io/etcd/client/pkg/v3 v3.5.1/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g=
 go.etcd.io/etcd/client/v2 v2.305.1/go.mod h1:pMEacxZW7o8pg4CrFE7pquyCJJzZvkvdD2RibOCCCGs=
index 064ffb85d1a1d9a23680c90f5d9053a4c04c7425..e1d1445ee15a4eee2004ce7b86afeeddeaae0ca7 100644 (file)
@@ -536,8 +536,7 @@ Link https procol: https://www.example.org
        }
 }
 
-// Issue 9650
-func TestRenderingOfHtmlComments(t *testing.T) {
+func TestGoldmarkBugs(t *testing.T) {
        t.Parallel()
 
        files := `
@@ -548,8 +547,16 @@ unsafe = true
 ---
 title: "p1"
 ---
+
+## Issue 9650
+
 a <!-- b --> c
 
+## Issue 9658
+
+- This is a list item <!-- Comment: an innocent-looking comment -->
+
+
 -- layouts/_default/single.html --
 {{ .Content }}
 `
@@ -562,6 +569,9 @@ a <!-- b --> c
        ).Build()
 
        b.AssertFileContentExact("public/p1/index.html",
+               // Issue 9650
                "<p>a <!-- b --> c</p>",
+               // Issue 9658 (crash)
+               "<li>This is a list item <!-- Comment: an innocent-looking comment --></li>",
        )
 }