Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-mkdocs-material for openSUSE:Factory checked in at 2024-11-01 21:06:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-mkdocs-material (Old) and /work/SRC/openSUSE:Factory/.python-mkdocs-material.new.2020 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "python-mkdocs-material" Fri Nov 1 21:06:57 2024 rev:69 rq:1220002 version:9.5.43 Changes: -------- --- /work/SRC/openSUSE:Factory/python-mkdocs-material/python-mkdocs-material.changes 2024-10-22 14:54:29.747848630 +0200 +++ /work/SRC/openSUSE:Factory/.python-mkdocs-material.new.2020/python-mkdocs-material.changes 2024-11-01 21:07:25.134064421 +0100 @@ -1,0 +2,8 @@ +Thu Oct 31 13:32:59 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de> + +- update to 9.5.43: + * Added support for external images in SVGs in privacy plugin + * Fixed #7651: + Privacy plugin doesn't handle quoted URLs in CSS + +------------------------------------------------------------------- Old: ---- mkdocs_material-9.5.42.tar.gz New: ---- mkdocs_material-9.5.43.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-mkdocs-material.spec ++++++ --- /var/tmp/diff_new_pack.OuIuu4/_old 2024-11-01 21:07:26.878137382 +0100 +++ /var/tmp/diff_new_pack.OuIuu4/_new 2024-11-01 21:07:26.886137717 +0100 @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-mkdocs-material -Version: 9.5.42 +Version: 9.5.43 Release: 0 Summary: Material theme for mkdocs License: MIT ++++++ mkdocs_material-9.5.42.tar.gz -> mkdocs_material-9.5.43.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdocs_material-9.5.42/PKG-INFO new/mkdocs_material-9.5.43/PKG-INFO --- old/mkdocs_material-9.5.42/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 +++ new/mkdocs_material-9.5.43/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.3 Name: mkdocs-material -Version: 9.5.42 +Version: 9.5.43 Summary: Documentation that simply works Project-URL: Homepage, https://squidfunk.github.io/mkdocs-material/ Project-URL: Bug Tracker, https://github.com/squidfunk/mkdocs-material/issues diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdocs_material-9.5.42/material/__init__.py new/mkdocs_material-9.5.43/material/__init__.py --- old/mkdocs_material-9.5.42/material/__init__.py 2020-02-02 01:00:00.000000000 +0100 +++ new/mkdocs_material-9.5.43/material/__init__.py 2020-02-02 01:00:00.000000000 +0100 @@ -18,4 +18,4 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. -__version__ = "9.5.42" +__version__ = "9.5.43" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdocs_material-9.5.42/material/plugins/privacy/plugin.py new/mkdocs_material-9.5.43/material/plugins/privacy/plugin.py --- old/mkdocs_material-9.5.42/material/plugins/privacy/plugin.py 2020-02-02 01:00:00.000000000 +0100 +++ new/mkdocs_material-9.5.43/material/plugins/privacy/plugin.py 2020-02-02 01:00:00.000000000 +0100 @@ -64,8 +64,8 @@ # Initialize collections of external assets self.assets = Files([]) self.assets_expr_map = { - ".css": r"url\((\s*http?[^)]+)\)", - ".js": r"[\"'](http[^\"']+\.(?:css|js(?:on)?))[\"']", + ".css": r"url\(\s*([\"']?)(?P<url>http?[^)'\"]+)\1\s*\)", + ".js": r"[\"'](?P<url>http[^\"']+\.(?:css|js(?:on)?))[\"']", **self.config.assets_expr_map } @@ -271,7 +271,8 @@ # Find and extract all external asset URLs expr = re.compile(self.assets_expr_map[extension], flags = re.I | re.M) with open(initiator.abs_src_path, encoding = "utf-8-sig") as f: - return [urlparse(url) for url in re.findall(expr, f.read())] + results = re.finditer(expr, f.read()) + return [urlparse(result.group("url")) for result in results] # Parse template or page HTML and find all external links that need to be # replaced. Many of the assets should already be downloaded earlier, i.e., @@ -313,12 +314,19 @@ file = self._queue(url, config) el.set("src", resolve(file)) + # Handle external image in SVG + if el.tag == "image": + url = urlparse(el.get("href")) + if not self._is_excluded(url, initiator): + file = self._queue(url, config) + el.set("href", resolve(file)) + # Return element as string return self._print(el) # Find and replace all external asset URLs in current page return re.sub( - r"<(?:(?:a|link)[^>]+href|(?:script|img)[^>]+src)=['\"]?http[^>]+>", + r"<(?:(?:a|link|image)[^>]+href|(?:script|img)[^>]+src)=['\"]?http[^>]+>", replace, output, flags = re.I | re.M ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdocs_material-9.5.42/material/templates/.icons/simple/clevercloud.svg new/mkdocs_material-9.5.43/material/templates/.icons/simple/clevercloud.svg --- old/mkdocs_material-9.5.42/material/templates/.icons/simple/clevercloud.svg 2020-02-02 01:00:00.000000000 +0100 +++ new/mkdocs_material-9.5.43/material/templates/.icons/simple/clevercloud.svg 2020-02-02 01:00:00.000000000 +0100 @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 12.862.416 18.431 11.168 24ZM12.831 0 20 11.139l3.584-5.57Zm-.001 24 10.753-5.569L20 12.862Zm11.169-6.647V6.648L20.554 12ZM12 .43 4.832 11.568h14.336Zm0 23.139 7.168-11.139H4.832Zm-8-12.43L11.168 0 .416 5.569ZM0 6.647v10.707L3.445 12Z"/></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.823 11.139 11.253 0 1.608 5.57zM1.235 6.646v10.708L4.325 12zM12 23.57l6.43-11.14H5.57zM12 .43 5.57 11.57h12.86zm10.764 16.924V6.646L19.674 12zm.001.862-.374.215-3.215-5.57L12.746 24zm0-12.431L12.745 0l6.431 11.139 3.215-5.57zM1.235 18.216 11.254 24l-6.43-11.138-3.216 5.569z"/></svg> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdocs_material-9.5.42/material/templates/.icons/simple/daisyui.svg new/mkdocs_material-9.5.43/material/templates/.icons/simple/daisyui.svg --- old/mkdocs_material-9.5.42/material/templates/.icons/simple/daisyui.svg 2020-02-02 01:00:00.000000000 +0100 +++ new/mkdocs_material-9.5.43/material/templates/.icons/simple/daisyui.svg 2020-02-02 01:00:00.000000000 +0100 @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.64 10.655v-1.6h1.31v4.92H2.64v-.31c-.09.09-.2.16-.32.22-.18.09-.39.13-.62.13-.34 0-.63-.08-.89-.24s-.46-.38-.6-.67c-.14-.28-.21-.61-.21-.98s.07-.68.21-.96.34-.5.59-.65.55-.23.88-.23c.23 0 .45.05.64.14.12.06.23.13.33.22zm-.66 2.3c.2 0 .35-.07.47-.21q.18-.21.18-.57c0-.36-.06-.43-.18-.57s-.28-.21-.47-.21-.35.07-.48.21c-.12.14-.19.33-.19.57s.06.42.19.57a.6.6 0 0 0 .48.21m4.57-1.23c0-.12-.05-.21-.14-.27-.1-.08-.24-.12-.44-.12-.14 0-.29.02-.47.07s-.35.11-.53.2l-.08.04-.38-.93.07-.03c.29-.13.56-.23.83-.29.26-.06.54-.1.82-.1.5 0 .89.12 1.17.35.28.24.43.57.43.99v2.34H6.54v-.26c-.24.21-.56.31-.96.31s-.7-.11-.93-.32c-.23-.22-.34-.5-.34-.85s.13-.63.37-.83.59-.3 1.04-.3zm0 .98v-.2h-.59c-.28 0-.39.09-.39.27 0 .09.03.17.09.22.07.06.16.09.29.09.15 0 .29-.04.4-.11s.17-.16.2-.26zm2.53-2.58a.663.663 0 0 1-.68-.69c0-.19.06-.37.19-.5s.3-.19.49-.19.36.07.49.19c.13.13.19.3.19.5s-.06.36-.19.49-.3.2-.49.2m.66.21v3.63h-1.3v-3.63zm2.01 3. 68c-.3 0-.59-.04-.87-.13s-.53-.21-.74-.38l-.05-.04.43-.89.08.06c.19.13.39.23.6.31.21.07.4.11.58.11.1 0 .17-.02.22-.04.04-.02.05-.05.05-.08 0-.05-.03-.09-.1-.12-.09-.04-.24-.09-.44-.15-.25-.07-.45-.15-.61-.22-.17-.08-.32-.19-.44-.34a.93.93 0 0 1-.2-.61c0-.38.14-.68.43-.89s.64-.31 1.08-.31c.26 0 .52.04.77.11s.49.17.72.31l.07.04-.46.89-.08-.04c-.44-.23-.79-.34-1.06-.34-.08 0-.15 0-.19.04-.03.02-.05.05-.05.09s.03.08.09.11c.09.04.23.09.43.15.25.07.46.15.63.22.18.08.33.19.46.34.13.16.2.37.2.61 0 .38-.15.68-.44.89s-.66.31-1.11.31zm3.2-.23-1.47-3.46h1.36l.76 2.08.68-2.08h1.32l-.05.12-1.49 3.8c-.14.34-.32.59-.56.76s-.53.25-.87.25q-.3 0-.57-.09c-.18-.06-.35-.16-.51-.29l-.06-.05.56-.94.08.06c.07.06.14.11.21.13.06.03.13.04.2.04.16 0 .26-.07.34-.22l.06-.12h.01zm5.14.27c-.42 0-.8-.08-1.12-.25s-.58-.4-.75-.71c-.18-.31-.26-.66-.26-1.06v-2.72h1.34v2.72c0 .26.08.46.23.62.15.15.34.23.57.23s.41-.07.55-.23c.14-.15.21-.36.21-.62v-2.72h1.34v2.72c0 .4-.09.76-.26 1.06-.17.31-.42.54-.74.71-.32.16-.69.25-1.11 .25m3.91-.08h-1.34v-4.66H24z"/></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C7.828.001 4.396 3.433 4.395 7.605c.001 4.172 3.433 7.604 7.605 7.605 4.172-.001 7.604-3.433 7.605-7.605C19.604 3.433 16.172.001 12 0m0 .286c4.016 0 7.32 3.304 7.32 7.32-.001 4.015-3.305 7.318-7.32 7.318S4.681 11.62 4.68 7.605c0-4.016 3.304-7.32 7.32-7.32zm0 4.04a3.294 3.294 0 0 0-3.279 3.279v.001A3.296 3.296 0 0 0 12 10.884a3.294 3.294 0 0 0 3.279-3.279A3.294 3.294 0 0 0 12 4.326M8.34 16.681h-.008a3.67 3.67 0 0 0-3.652 3.652v.015A3.67 3.67 0 0 0 8.332 24h7.336a3.67 3.67 0 0 0 3.652-3.652v-.016a3.67 3.67 0 0 0-3.652-3.652h-.008Z"/></svg> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdocs_material-9.5.42/material/templates/.icons/simple/envato.svg new/mkdocs_material-9.5.43/material/templates/.icons/simple/envato.svg --- old/mkdocs_material-9.5.42/material/templates/.icons/simple/envato.svg 2020-02-02 01:00:00.000000000 +0100 +++ new/mkdocs_material-9.5.43/material/templates/.icons/simple/envato.svg 2020-02-02 01:00:00.000000000 +0100 @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.058 1.043C16.744-2.841 6.018 4.682 6.104 14.38a.46.46 0 0 1-.45.451.46.46 0 0 1-.388-.221 10.4 10.4 0 0 1-.412-7.634.42.42 0 0 0-.712-.412 10.28 10.28 0 0 0-2.784 7.033A10.284 10.284 0 0 0 11.76 23.999c14.635-.332 11.257-19.491 8.298-22.956"/></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.156 0a2.7 2.7 0 0 0-1.886.8L4 11.253c-.382.42-.558.978-.453 1.57.176.945 1.116 1.571 2.06 1.399l5.54-1.13c.12-.025.183.136.082.204L5.088 17.23c-.769.487-1.119 1.36-.875 2.234.244 1.151 1.398 1.814 2.516 1.537l9.183-2.26a.11.11 0 0 1 .113.176l-1.433 1.77c-.383.487.244 1.15.77.767l4.716-3.877c.84-.697.281-2.062-.803-1.957l-.011-.004-6.047.65a.111.111 0 0 1-.08-.199l5.918-4.609c.382-.315.628-.801.523-1.326-.105-.803-.767-1.328-1.607-1.223l-6.43.942c-.112.015-.174-.128-.084-.2l6.375-4.867c1.256-.978 1.36-2.898.209-4.015A2.6 2.6 0 0 0 16.156 0M13.1 21.855a1.07 1.07 0 0 0-1.073 1.073A1.07 1.07 0 0 0 13.1 24a1.07 1.07 0 0 0 1.072-1.072 1.07 1.07 0 0 0-1.072-1.073"/></svg> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdocs_material-9.5.42/material/templates/.icons/simple/lubuntu.svg new/mkdocs_material-9.5.43/material/templates/.icons/simple/lubuntu.svg --- old/mkdocs_material-9.5.42/material/templates/.icons/simple/lubuntu.svg 2020-02-02 01:00:00.000000000 +0100 +++ new/mkdocs_material-9.5.43/material/templates/.icons/simple/lubuntu.svg 2020-02-02 01:00:00.000000000 +0100 @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 .001 5.374.001 12.001q0 .23.009.46c3.832-2.705 10.368-7.163 11.987-7.28.537-.68 2.37-1.22 2.704-1.209l-.957 1.198s-.03 1.224-.388 1.462c3.34 2.233 4.944 10.262 5.626 15.126A11.98 11.98 0 0 0 24 12.001C24 5.374 18.629 0 12 0m-.593 10.842c-.899.027-2.743 2.712-4.825 5.588-1.001 1.382-2.035 2.823-2.988 4.134A11.96 11.96 0 0 0 12 24c2.347 0 4.537-.672 6.386-1.837-1.423-4.35-4.128-11.299-6.897-11.315a.4.4 0 0 0-.082-.006M4.679 11.94c-.823-.007-2.86.701-4.607 1.375a11.9 11.9 0 0 0 1.447 4.535c.35-.53.716-1.077 1.08-1.61 1.386-2.038 2.729-3.838 2.413-4.21-.056-.062-.171-.09-.333-.09m2.165 1.025c-.664.1-3.064 3.09-4.97 5.478q.465.73 1.028 1.384c1.96-3.21 4.153-6.707 4.035-6.851a.16.16 0 0 0-.093-.011"/></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m1.287 4.723q.316-.031.63.004a3.17 3.17 0 0 1 2.41 1.642l5.665.781h-6.458a2.58 2.58 0 0 0-1.66-.955 2.57 2.57 0 0 0-1.371.192c-.43.19-.8.495-1.068.88-.268.387-.424.84-.451 1.31-.026.468.078.935.3 1.349a3.13 3.13 0 0 1-.795-1.68 3.13 3.13 0 0 1 .305-1.832 3.14 3.14 0 0 1 1.299-1.332 3.1 3.1 0 0 1 1.195-.36m-9.88 1.09 8.673 6.232-7.154-4.012a3.6 3.6 0 0 0-.072 2.022 3.57 3.57 0 0 0 1.998 2.34l4.748 1.334-6.002-.983c.061.58.275 1.133.619 1.604a3.33 3.33 0 0 0 2.652 1.33 3.95 3.95 0 0 1-3.062-.451 3.9 3.9 0 0 1-1.432-1.563 3.9 3.9 0 0 1-.398-2.08l1.32.371a4.7 4.7 0 0 1-1.246-.986 4.7 4.7 0 0 1-1.111-2.48 4.67 4.67 0 0 1 .466-2.678m11.667 3.132q-.01.138-.008.278c.007 1.143.535 2.21 1.057 3.226.523 1.017 1.064 2.076 1.094 3.22.024.95-.32 1.895-.899 2.651-.578.756-1.377 1.328-2.255 1.696a6.5 6.5 0 0 1-3.91.338l-1 2.373v-3.327a6.23 6.23 0 0 0 3.665-.31c. 7-.285 1.352-.707 1.862-1.264s.875-1.255.986-2.002c.15-1-.151-2.007-.447-2.974s-.595-1.977-.436-2.975a3.3 3.3 0 0 1 .291-.93"/></svg> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdocs_material-9.5.42/material/templates/.icons/simple/qwant.svg new/mkdocs_material-9.5.43/material/templates/.icons/simple/qwant.svg --- old/mkdocs_material-9.5.42/material/templates/.icons/simple/qwant.svg 2020-02-02 01:00:00.000000000 +0100 +++ new/mkdocs_material-9.5.43/material/templates/.icons/simple/qwant.svg 2020-02-02 01:00:00.000000000 +0100 @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.39 0c5.322 0 9.652 4.46 9.652 9.944 0 5.358-4.132 9.738-9.285 9.938l-.235.006h9.488L22.262 24h-9.62l-1.253-4.11c-5.321-.001-9.65-4.462-9.65-9.946S6.067 0 11.388 0zm0 3.364c-3.522 0-6.387 2.952-6.387 6.58 0 3.63 2.865 6.58 6.387 6.58s6.387-2.95 6.387-6.58c0-3.628-2.865-6.58-6.387-6.58"/></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.313 5.163c4.289 0 7.766 2.589 7.766 7.616 0 4.759-3.072 7.301-7.003 7.59 1.87 1.142 4.693 1.143 6.45-.348l.547.297-.615 3.074-.226.285c-3.118.918-5.947-.099-7.921-3.329-3.816-.37-6.765-2.9-6.765-7.568 0-5.03 3.477-7.617 7.766-7.617zm0 13.88c2.756 0 4.08-2.804 4.08-6.264s-1.148-6.264-4.08-6.264c-2.85 0-4.08 2.805-4.08 6.264s1.182 6.264 4.08 6.264m8.719-16.319L18.734 0h.263l.703 2.725 2.754.71v.248l-2.754.71-.703 2.725h-.263l-.702-2.725-2.696-.695V3.42z"/></svg> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdocs_material-9.5.42/material/templates/.icons/simple/rossmann.svg new/mkdocs_material-9.5.43/material/templates/.icons/simple/rossmann.svg --- old/mkdocs_material-9.5.42/material/templates/.icons/simple/rossmann.svg 2020-02-02 01:00:00.000000000 +0100 +++ new/mkdocs_material-9.5.43/material/templates/.icons/simple/rossmann.svg 2020-02-02 01:00:00.000000000 +0100 @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.533 10.514q0-.048-.048-.048h-.208q-.048 0-.048.048v2.045c0 .048-.016.064-.048.032-.112-.112-1.901-1.997-1.997-2.093-.032-.032-.048-.032-.064-.032h-.16q-.048 0-.048.048v2.924q0 .048.048.048h.208q.048 0 .048-.048v-2.077c0-.08.048-.032.064-.016.127.144 1.805 1.901 1.997 2.11.032.031.048.031.064.031h.128q.048 0 .048-.048c.016.016.016-2.924.016-2.924m-16.379-.176A1.66 1.66 0 0 0 2.493 12c0 .91.735 1.662 1.661 1.662.927 0 1.662-.735 1.662-1.662s-.75-1.662-1.662-1.662m0 .288c.416 0 .783.176 1.023.463h-.48l.049-.096c.048-.112-.144-.191-.192-.08l-.08.192H3.132a1.33 1.33 0 0 1 1.023-.48M2.796 12c0-.256.08-.511.208-.719l1.278.048c.016 0 .032 0 .048.032.016.016.128.288.128.304s0 .047-.048.047H3.18c-.08 0-.16.064-.16.144v.464c0 .032.016.064.032.096.032.047.096.063.096.063.016 0 .016 0 .016-.016v-.59c0-.017.016-.017.016-.017h.128s.016 0 0 .016a.34.34 0 0 0-.064.224c0 .16.128.288.16.304 0 0 .016.015 0 .031 0 .017-.128.24-.128 .24 0 .016-.016.032 0 .048l.59.591c-.59-.096-1.07-.655-1.07-1.31m1.422 1.358s-.575-.575-.607-.623c-.016-.016 0-.032 0-.032 0-.016.208-.4.224-.415.016-.016.032-.016.032-.016h.128s.016 0 .016.016a4 4 0 0 0-.192.383v.032c0 .016.623.623.623.623a1 1 0 0 1-.224.032m.448-.096-.544-.543c-.016-.016 0-.032 0-.032l.192-.383c.016-.016.016-.016.032-.016h.336c.016 0 .016.016.016.016l-.096.207v.032l.128.08c.016.016.032 0 .032-.016l.128-.303c.016-.016.016-.016.032-.016h.111s.016 0 .016.016-.096.223-.096.223v.032l.128.08c.016.016.032 0 .032-.016s.144-.32.144-.335c.032-.08.016-.224-.144-.224h-.192c-.016 0-.032-.016-.032-.016v-.64c0-.031.016-.031.032-.047.016 0 .352-.048.352-.048.128.208.208.447.208.719.032.527-.32 1.023-.815 1.23zm2.157-2.173a.43.43 0 0 1 .367-.431c.208-.048.464 0 .608.176.016.016.032.048.048.08.016.015.031.031.063.047h.08c.016 0 .048-.016.048-.048 0-.063-.016-.271-.016-.303 0-.048-.016-.048-.048-.064a1.3 1.3 0 0 0-.335-.096 1.4 1.4 0 0 0-.815.08.78.78 0 0 0-.48.543.8.8 0 0 0 .064.57 6c.096.16.24.255.416.335s.351.144.511.208c.208.096.384.192.432.367.064.224.032.448-.144.607-.24.208-.879.176-1.103-.143-.032-.064-.048-.096-.112-.096-.032 0-.096 0-.096.048v.335c0 .032 0 .064.048.08.064.032.144.048.208.08.112.032.24.048.352.064.783.08 1.342-.32 1.342-.99 0-.24-.096-.48-.288-.624a2 2 0 0 0-.59-.272 1.4 1.4 0 0 1-.352-.143.47.47 0 0 1-.208-.416m-4.458 2.333c-.048-.064-.927-1.182-.975-1.246-.016-.032-.016-.048.048-.064.128-.048.575-.256.591-.783.016-.448-.287-.847-.783-.847H.048c-.032-.016-.048 0-.048.032v2.924q0 .048.048.048h.368q.048 0 .048-.048v-1.23q0-.048.048-.048h.223c.016 0 .048 0 .08.048.032.032.975 1.262.975 1.262.016.032.048.032.064.032H2.3c.064 0 .08-.048.064-.08M.719 11.888H.511c-.016 0-.032-.032-.032-.064V10.77q0-.048.048-.048h.32c.335 0 .655.096.655.527 0 .24-.112.64-.783.64M24 10.514q0-.048-.048-.048h-.208q-.048 0-.048.048v2.045c0 .048-.016.064-.048.032-.111-.112-1.901-1.997-1.997-2.093-.032-.032-.048-.032-.064-.032h-.16q-.048 0-.048.048v2.924q0 .048.048 .048h.208q.048 0 .048-.048v-2.077c0-.08.048-.032.064-.016.128.144 1.806 1.901 1.997 2.11.032.031.048.031.064.031h.128q.048 0 .048-.048c.016.016.016-2.924.016-2.924m-14.828.575a.43.43 0 0 1 .367-.431c.208-.048.464 0 .607.176.016.016.032.048.048.08a.2.2 0 0 0 .064.047h.064c.016 0 .048-.016.048-.048 0-.063-.016-.271-.016-.303 0-.048-.016-.048-.048-.064a1.2 1.2 0 0 0-.32-.112 1.4 1.4 0 0 0-.814.08.78.78 0 0 0-.48.543.8.8 0 0 0 .064.576c.096.16.24.255.416.335s.351.144.511.208c.208.096.384.192.432.367.064.224.032.448-.144.608-.24.207-.88.175-1.103-.144-.032-.064-.048-.096-.112-.096-.032 0-.095 0-.095.048v.335c0 .032 0 .064.047.08.064.032.144.048.208.08.112.032.24.048.352.064.783.08 1.342-.32 1.342-.99 0-.24-.096-.48-.288-.624a2 2 0 0 0-.591-.271 1.4 1.4 0 0 1-.351-.144c-.144-.08-.208-.224-.208-.4m7.238 1.135c.016.016 0 .048-.032.048h-.847c-.032 0-.048-.016-.032-.048s.416-.959.432-.991q.024-.048.048 0c0 .032.415.975.431.99m-.224-1.662c-.032-.08-.08-.096-.111-.096h-.128c-.016 0-.032 0-.048. 032s-1.246 2.892-1.262 2.94c-.017.032-.017.064.031.064h.224c.016 0 .032 0 .048-.048s.352-.815.368-.847.048-.032.08-.032h1.118c.016 0 .048 0 .064.032 0 0 .367.831.367.847.016.032.032.048.064.048h.416c.032 0 .048-.032.032-.064 0-.016-1.23-2.812-1.263-2.876m-2.22-.064c0-.032-.017-.032-.049-.032h-.16c-.015 0-.031 0-.031.016-.016.016-.927 2.173-.943 2.205q-.024.048-.048 0c0-.016-.99-2.173-1.007-2.189s-.016-.032-.048-.032h-.16c-.015 0-.031 0-.031.032 0 .016-.464 2.956-.464 2.956 0 .016 0 .048.032.048h.208c.032 0 .048-.016.064-.048 0-.032.303-1.981.32-1.997 0-.032.015-.032.031 0 .016.016.927 2.013.927 2.029s.016.016.032.016h.096c.016 0 .016 0 .032-.016 0-.016.847-1.981.863-2.013s.016-.032.032 0c0 .016.351 1.981.351 1.997 0 .032.016.032.048.032h.4c.032 0 .048-.032.048-.048-.032-.08-.544-2.94-.544-2.956"/></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.391 0 0 5.391 0 12s5.391 12 12 12 12-5.391 12-12S18.609 0 12 0m0 2.088a9.93 9.93 0 0 1 7.477 3.39H16l.348-.607c.347-.783-.958-1.392-1.393-.61l-.607 1.218H4.52C6.435 3.392 9.131 2.088 12 2.088m8.434 4.695A10.07 10.07 0 0 1 21.912 12c0 4.087-2.522 7.653-6.174 9.13l-3.912-3.911q-.13-.131 0-.262l1.39-2.783c.088-.087.174-.174.26-.174h2.436c.087 0 .088.087.088.174l-.697 1.478s0 .174.088.174l.869.61c.087.087.175-.001.261-.088l.956-2.26c.087-.087.174-.174.261-.174h.87s.087 0 .087.174L18 15.652s-.001.174.086.174l.957.61c.087.087.173-.001.26-.088 0-.087 1.045-2.26 1.045-2.434.26-.609.172-1.652-1.045-1.652h-1.39a.19.19 0 0 1-.175-.174v-4.61q0-.26.262-.26zm-16.782.088s9.13.434 9.217.434.26 0 .26.174c.087.173.87 2.174.957 2.261s.087.348-.348.348H4.87a1.15 1.15 0 0 0-1.13 1.13v3.305c0 .261.086.522.173.696.261.26.696.433.783.433.087.087.174.001.174-.086v-4.261c0-.087.087-.174.174-.174H6s.173 0 .086.088c-.348.435-.434.87-. 434 1.652 0 1.217.87 1.999 1.217 2.26 0 0 .087.087 0 .174S6 17.044 6 17.13q-.13.131 0 .262l4.348 4.26c-4.696-.87-8.174-4.87-8.174-9.653 0-1.913.522-3.65 1.478-5.129M9.912 14h.957s.173 0 .086.174-1.39 2.696-1.39 2.783v.174l4.52 4.435c-.52.174-1.042.173-1.564.26l-4.435-4.433c-.087-.087 0-.175 0-.262s1.48-2.87 1.566-2.957c0-.087.086-.174.26-.174"/></svg> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdocs_material-9.5.42/material/templates/.icons/simple/sui.svg new/mkdocs_material-9.5.43/material/templates/.icons/simple/sui.svg --- old/mkdocs_material-9.5.42/material/templates/.icons/simple/sui.svg 1970-01-01 01:00:00.000000000 +0100 +++ new/mkdocs_material-9.5.43/material/templates/.icons/simple/sui.svg 2020-02-02 01:00:00.000000000 +0100 @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.636 10.009a7.16 7.16 0 0 1 1.565 4.474 7.2 7.2 0 0 1-1.608 4.53l-.087.106-.023-.135a7 7 0 0 0-.07-.349c-.502-2.21-2.142-4.106-4.84-5.642-1.823-1.034-2.866-2.278-3.14-3.693-.177-.915-.046-1.834.209-2.62.254-.787.631-1.446.953-1.843l1.05-1.284a.46.46 0 0 1 .713 0l5.28 6.456zm1.66-1.283L12.26.123a.336.336 0 0 0-.52 0L4.704 8.726l-.023.029a9.33 9.33 0 0 0-2.07 5.872C2.612 19.803 6.816 24 12 24s9.388-4.197 9.388-9.373a9.32 9.32 0 0 0-2.07-5.871zM6.389 9.981l.63-.77.018.142q.023.17.055.34c.408 2.136 1.862 3.917 4.294 5.297 2.114 1.203 3.345 2.586 3.7 4.103a5.3 5.3 0 0 1 .109 1.801l-.004.034-.03.014A7.2 7.2 0 0 1 12 21.67c-3.976 0-7.2-3.218-7.2-7.188 0-1.705.594-3.27 1.587-4.503z"/></svg> \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdocs_material-9.5.42/material/templates/base.html new/mkdocs_material-9.5.43/material/templates/base.html --- old/mkdocs_material-9.5.42/material/templates/base.html 2020-02-02 01:00:00.000000000 +0100 +++ new/mkdocs_material-9.5.43/material/templates/base.html 2020-02-02 01:00:00.000000000 +0100 @@ -32,7 +32,7 @@ <link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}"> {% endif %} <link rel="icon" href="{{ config.theme.favicon | url }}"> - <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.5.42"> + <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.5.43"> {% endblock %} {% block htmltitle %} {% if page.meta and page.meta.title %} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdocs_material-9.5.42/package.json new/mkdocs_material-9.5.43/package.json --- old/mkdocs_material-9.5.42/package.json 2020-02-02 01:00:00.000000000 +0100 +++ new/mkdocs_material-9.5.43/package.json 2020-02-02 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ { "name": "mkdocs-material", - "version": "9.5.42", + "version": "9.5.43", "description": "Documentation that simply works", "keywords": [ "mkdocs", @@ -62,11 +62,11 @@ "@types/fuzzaldrin-plus": "^0.6.5", "@types/html-minifier-terser": "^7.0.2", "@types/lunr": "^2.3.7", - "@types/node": "^22.7.5", + "@types/node": "^22.8.1", "@types/resize-observer-browser": "^0.1.11", "@types/sass": "^1.45.0", - "@typescript-eslint/eslint-plugin": "^8.9.0", - "@typescript-eslint/parser": "^8.9.0", + "@typescript-eslint/eslint-plugin": "^8.11.0", + "@typescript-eslint/parser": "^8.11.0", "autoprefixer": "^10.4.20", "chokidar": "^4.0.1", "cssnano": "5.1.0", @@ -74,7 +74,7 @@ "eslint": "8.57.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-import": "^2.31.0", - "eslint-plugin-jsdoc": "^50.4.1", + "eslint-plugin-jsdoc": "^50.4.3", "eslint-plugin-no-null": "^1.0.2", "github-types": "^1.0.0", "gitlab": "^14.2.2", @@ -82,22 +82,22 @@ "html-minifier-terser": "^7.2.0", "material-design-color": "^2.3.2", "material-shadows": "^3.0.1", - "npm-check-updates": "^17.1.3", + "npm-check-updates": "^17.1.8", "npm-run-all": "^4.1.5", "postcss": "^8.4.47", - "postcss-dir-pseudo-class": "^9.0.0", + "postcss-dir-pseudo-class": "^9.0.1", "postcss-inline-svg": "^6.0.0", "postcss-logical": "5.0.4", "postcss-pseudo-is": "^0.3.0", "preact": "^10.24.3", "rimraf": "^6.0.1", - "sass": "^1.79.5", - "simple-icons": "^13.14.0", + "sass": "^1.80.4", + "simple-icons": "^13.15.0", "stylelint": "^16.10.0", "stylelint-config-recess-order": "^5.1.1", "stylelint-config-recommended": "^14.0.1", "stylelint-config-standard-scss": "^13.1.0", - "stylelint-scss": "^6.7.0", + "stylelint-scss": "^6.8.1", "svgo": "^3.3.2", "tiny-glob": "^0.2.9", "ts-node": "^10.9.2",