diff options
author | zeripath <art27@cantab.net> | 2022-07-01 19:50:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-01 20:50:06 +0200 |
commit | 9d9bf66c3b3fd8462e4db36458d333223c3b11a7 (patch) | |
tree | e83e0652ce6821bc8debbfcec9a0a3f9d998cdf5 /go.mod | |
parent | 5c9c0b8c1ef7a472f11d513d72807b624997aba8 (diff) | |
download | gitea-9d9bf66c3b3fd8462e4db36458d333223c3b11a7.tar.gz gitea-9d9bf66c3b3fd8462e4db36458d333223c3b11a7.zip |
Update Bluemonday to v1.0.19 (#20199)
The current version of bluemonday is double escaping attributes.
This PR updates bluemonday to the version that fixes this.
(See: microcosm-cc/bluemonday#143 )
Fix #19860
Signed-off-by: Andrew Thornton art27@cantab.net
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -66,7 +66,7 @@ require ( github.com/mattn/go-isatty v0.0.14 github.com/mattn/go-sqlite3 v1.14.12 github.com/mholt/archiver/v3 v3.5.1 - github.com/microcosm-cc/bluemonday v1.0.18 + github.com/microcosm-cc/bluemonday v1.0.19 github.com/minio/minio-go/v7 v7.0.26 github.com/msteinert/pam v1.0.0 github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 @@ -93,9 +93,9 @@ require ( go.jolheiser.com/hcaptcha v0.0.4 go.jolheiser.com/pwn v0.0.3 golang.org/x/crypto v0.0.0-20220507011949-2cf3adece122 - golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 + golang.org/x/net v0.0.0-20220630215102-69896b714898 golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 - golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 + golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a golang.org/x/text v0.3.7 golang.org/x/tools v0.1.10 gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df |