-
- Downloads
[IMP] package: update lxml version
Update the version to benefit from the fix for https://github.com/advisories/GHSA-pgww-xf46-h92r https://nvd.nist.gov/vuln/detail/CVE-2020-27783 This vulnerability is reproducible in Odoo with html_sanitize(..., sanitize_tags=False) which does NOT happen for user-facing content. Remove old compatibility check (lxml 3.1 was released in 2013) and cleanup global variables only used once closes odoo/odoo#64248 Signed-off-by:Christophe Monniez (moc) <moc@odoo.com>
... | ... | @@ -15,9 +15,7 @@ Jinja2==2.10.1; python_version < '3.8' |
# bullseye version, focal patched 2.10 | ||
Jinja2==2.11.2; python_version >= '3.8' | ||
libsass==0.18.0 | ||
lxml==4.3.2 ; sys_platform != 'win32' and python_version == '3.7' | ||
lxml==4.6.1 ; sys_platform != 'win32' and python_version > '3.7' | ||
lxml ; sys_platform == 'win32' | ||
lxml==4.6.2 | ||
MarkupSafe==1.1.0 | ||
num2words==0.5.6 | ||
ofxparse==0.19 | ||
... | ... |
Please register or sign in to comment