Merge pull request #7705 from tk0miya/7696_jquery-3.5.1

Fix #7696: html: Updated jQuery version from 3.4.1 to 3.5.1
This commit is contained in:
Takeshi KOMIYA
2020-05-22 23:11:44 +09:00
committed by GitHub
4 changed files with 760 additions and 485 deletions

View File

@@ -142,6 +142,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