Fix #7696: html: Updated jQuery version from 3.4.1 to 3.5.1

This commit is contained in:
Takeshi KOMIYA 2020-05-21 23:50:20 +09:00
parent f777ad38df
commit c1ef87a23b
4 changed files with 760 additions and 485 deletions

View File

@ -18,6 +18,7 @@ Bugs fixed
* #7567: autodoc: parametrized types are shown twice for generic types
* #7637: autodoc: system defined TypeVars are shown in Python 3.9
* #7696: html: Updated jQuery version from 3.4.1 to 3.5.1 for security reasons
* #7611: md5 fails when OpenSSL FIPS is enabled
* #7626: release package does not contain ``CODE_OF_CONDUCT``

File diff suppressed because one or more lines are too long

View File

@ -74,7 +74,7 @@ def test_js_source(app, status, warning):
app.builder.build(['contents'])
v = '3.4.1'
v = '3.5.1'
msg = 'jquery.js version does not match to {v}'.format(v=v)
jquery_min = (app.outdir / '_static' / 'jquery.js').read_text()
assert 'jQuery v{v}'.format(v=v) in jquery_min, msg