]> source.dussan.org Git - gitea.git/commitdiff
Bump goldmark to v1.4.11 (#19201) (#19203)
authorRobert Kaussow <xoxys@rknet.org>
Thu, 24 Mar 2022 15:47:40 +0000 (16:47 +0100)
committerGitHub <noreply@github.com>
Thu, 24 Mar 2022 15:47:40 +0000 (11:47 -0400)
* Bump goldmark to v1.4.11

* fix go.sum

Signed-off-by: Andrew Thornton <art27@cantab.net>
* add testcase

Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: Andrew Thornton <art27@cantab.net>
go.mod
go.sum
modules/markup/markdown/markdown_test.go

diff --git a/go.mod b/go.mod
index 8d61e9f6b61e787bbfe702405097d87c41dd5bdd..2fc582fa786a53fb7023f253c2793d76bb52f9e0 100644 (file)
--- a/go.mod
+++ b/go.mod
@@ -85,7 +85,7 @@ require (
        github.com/urfave/cli v1.22.5
        github.com/xanzy/go-gitlab v0.58.0
        github.com/yohcop/openid-go v1.0.0
-       github.com/yuin/goldmark v1.4.8
+       github.com/yuin/goldmark v1.4.11
        github.com/yuin/goldmark-highlighting v0.0.0-20220208100518-594be1970594
        github.com/yuin/goldmark-meta v1.1.0
        go.jolheiser.com/hcaptcha v0.0.4
diff --git a/go.sum b/go.sum
index c72e89912668a60b7ab4468b258a1bdebfc476cf..b64bd023b84736f57f29dcc8759fe5028b557a1a 100644 (file)
--- a/go.sum
+++ b/go.sum
@@ -1539,8 +1539,8 @@ github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1
 github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
 github.com/yuin/goldmark v1.4.5/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
 github.com/yuin/goldmark v1.4.6/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.11 h1:i45YIzqLnUc2tGaTlJCyUxSG8TvgyGqhqOZOUKIjJ6w=
+github.com/yuin/goldmark v1.4.11/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
 github.com/yuin/goldmark-highlighting v0.0.0-20220208100518-594be1970594 h1:yHfZyN55+5dp1wG7wDKv8HQ044moxkyGq12KFFMFDxg=
 github.com/yuin/goldmark-highlighting v0.0.0-20220208100518-594be1970594/go.mod h1:U9ihbh+1ZN7fR5Se3daSPoz1CGF9IYtSvWwVQtnzGHU=
 github.com/yuin/goldmark-meta v1.1.0 h1:pWw+JLHGZe8Rk0EGsMVssiNb/AaPMHfSRszZeUeiOUc=
index 083484813adaca7cc5b8451d4fe513eba58a19d5..3aa433a1f29567f02efebbae6fafe9465ea78af5 100644 (file)
@@ -197,6 +197,11 @@ func testAnswers(baseURLContent, baseURLImages string) []string {
 </li>
 </ol>
 </div>
+`, `<ul>
+<li class="task-list-item"><input type="checkbox" disabled="" data-source-position="3"/> If you want to rebase/retry this PR, click this checkbox.</li>
+</ul>
+<hr/>
+<p>This PR has been generated by <a href="https://github.com/renovatebot/renovate" rel="nofollow">Renovate Bot</a>.</p>
 `,
        }
 }
@@ -269,6 +274,14 @@ Here is a simple footnote,[^1] and here is a longer one.[^bignote]
 
     Add as many paragraphs as you like.
 `,
+       `
+- [ ] <!-- rebase-check --> If you want to rebase/retry this PR, click this checkbox.
+
+---
+
+This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
+
+<!-- test-comment -->`,
 }
 
 func TestTotal_RenderWiki(t *testing.T) {