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 2025-02-20 17:39:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-mkdocs-material (Old)
and /work/SRC/openSUSE:Factory/.python-mkdocs-material.new.1873 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-mkdocs-material"
Thu Feb 20 17:39:45 2025 rev:80 rq:1247406 version:9.6.5
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-mkdocs-material/python-mkdocs-material.changes
2025-02-12 21:39:45.914604337 +0100
+++
/work/SRC/openSUSE:Factory/.python-mkdocs-material.new.1873/python-mkdocs-material.changes
2025-02-20 17:39:47.579286954 +0100
@@ -1,0 +2,8 @@
+Thu Feb 20 08:56:56 UTC 2025 - Johannes Kastl
<[email protected]>
+
+- update to 9.6.5:
+ * Fixed #8016: Tags listing not showing when when file name has
+ spaces
+ * Fixed #8012: Privacy plugin crashes if HTTP download fails
+
+-------------------------------------------------------------------
Old:
----
mkdocs_material-9.6.4.tar.gz
New:
----
mkdocs_material-9.6.5.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-mkdocs-material.spec ++++++
--- /var/tmp/diff_new_pack.NZhUnY/_old 2025-02-20 17:39:48.435322708 +0100
+++ /var/tmp/diff_new_pack.NZhUnY/_new 2025-02-20 17:39:48.435322708 +0100
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-mkdocs-material
-Version: 9.6.4
+Version: 9.6.5
Release: 0
Summary: Material theme for mkdocs
License: MIT
++++++ mkdocs_material-9.6.4.tar.gz -> mkdocs_material-9.6.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/mkdocs_material-9.6.4/PKG-INFO
new/mkdocs_material-9.6.5/PKG-INFO
--- old/mkdocs_material-9.6.4/PKG-INFO 2020-02-02 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/PKG-INFO 2020-02-02 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.4
Name: mkdocs-material
-Version: 9.6.4
+Version: 9.6.5
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.6.4/material/__init__.py
new/mkdocs_material-9.6.5/material/__init__.py
--- old/mkdocs_material-9.6.4/material/__init__.py 2020-02-02
01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/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.6.4"
+__version__ = "9.6.5"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/plugins/privacy/plugin.py
new/mkdocs_material-9.6.5/material/plugins/privacy/plugin.py
--- old/mkdocs_material-9.6.4/material/plugins/privacy/plugin.py
2020-02-02 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/material/plugins/privacy/plugin.py
2020-02-02 01:00:00.000000000 +0100
@@ -44,6 +44,8 @@
from .config import PrivacyConfig
from .parser import FragmentParser
+DEFAULT_TIMEOUT_IN_SECS = 5
+
# -----------------------------------------------------------------------------
# Classes
# -----------------------------------------------------------------------------
@@ -257,7 +259,7 @@
# quote, we need to catch this here, as we're using pretty basic
# regular expression based extraction
raise PluginError(
- f"Could not parse due to possible syntax error in HTML: \n\n"
+ "Couldn't parse due to possible syntax error in HTML: \n\n"
+ fragment
)
@@ -310,21 +312,24 @@
# Replace external favicon, preload hint or style sheet
if rel in ("icon", "preload", "stylesheet"):
file = self._queue(url, config)
- el.set("href", resolve(file))
+ if file:
+ el.set("href", resolve(file))
# Handle external script or image
if el.tag == "script" or el.tag == "img":
url = urlparse(el.get("src"))
if not self._is_excluded(url, initiator):
file = self._queue(url, config)
- el.set("src", resolve(file))
+ if file:
+ 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))
+ if file:
+ el.set("href", resolve(file))
# Return element as string
return self._print(el)
@@ -380,7 +385,8 @@
# Fetch external asset synchronously, as it either has no extension
# or is fetched from a context in which replacements are done
else:
- self._fetch(file, config)
+ if not self._fetch(file, config):
+ return None
# Register external asset as file - it might have already been
# registered, and since MkDocs 1.6, trigger a deprecation warning
@@ -404,18 +410,30 @@
# Download external asset
log.info(f"Downloading external file: {file.url}")
- res = requests.get(file.url, headers = {
-
- # Set user agent explicitly, so Google Fonts gives us *.woff2
- # files, which according to caniuse.com is the only format we
- # need to download as it covers the entire range of browsers
- # we're officially supporting.
- "User-Agent": " ".join([
- "Mozilla/5.0 (Windows NT 10.0; Win64; x64)",
- "AppleWebKit/537.36 (KHTML, like Gecko)",
- "Chrome/98.0.4758.102 Safari/537.36"
- ])
- })
+ try:
+ res = requests.get(
+ file.url,
+ headers = {
+ # Set user agent explicitly, so Google Fonts gives us
+ # *.woff2 files, which according to caniuse.com is the
+ # only format we need to download as it covers the
range
+ # range of browsers we're officially supporting.
+ "User-Agent": " ".join(
+ [
+ "Mozilla/5.0 (Windows NT 10.0; Win64; x64)",
+ "AppleWebKit/537.36 (KHTML, like Gecko)",
+ "Chrome/98.0.4758.102 Safari/537.36",
+ ]
+ )
+ },
+ timeout=DEFAULT_TIMEOUT_IN_SECS,
+ )
+ res.raise_for_status()
+
+ # Intercept errors of type `ConnectionError` and `HTTPError`
+ except Exception as error:
+ log.warning(f"Couldn't retrieve {file.url}: {error}")
+ return
# Compute expected file extension and append if missing
mime = res.headers["content-type"].split(";")[0]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/plugins/tags/structure/listing/manager/__init__.py
new/mkdocs_material-9.6.5/material/plugins/tags/structure/listing/manager/__init__.py
---
old/mkdocs_material-9.6.4/material/plugins/tags/structure/listing/manager/__init__.py
2020-02-02 01:00:00.000000000 +0100
+++
new/mkdocs_material-9.6.5/material/plugins/tags/structure/listing/manager/__init__.py
2020-02-02 01:00:00.000000000 +0100
@@ -176,6 +176,10 @@
# is unique, so we use the page source file path and the position
# of the match within the page as an identifier.
id = f"{page.file.src_uri}:{match.start()}-{match.end()}"
+
+ # Replace whitespaces in the identifier that we computed, or we
+ # can't just prefix it with "#" - see https://t.ly/U_hfp
+ id = id.replace(" ", "-")
self.data.add(Listing(page, id, config))
# Replace directive with hx headline if listings are enabled, or
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/templates/.icons/octicons/LICENSE
new/mkdocs_material-9.6.5/material/templates/.icons/octicons/LICENSE
--- old/mkdocs_material-9.6.4/material/templates/.icons/octicons/LICENSE
2020-02-02 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/material/templates/.icons/octicons/LICENSE
2020-02-02 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2024 GitHub Inc.
+Copyright (c) 2025 GitHub Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/templates/.icons/octicons/square-circle-16.svg
new/mkdocs_material-9.6.5/material/templates/.icons/octicons/square-circle-16.svg
---
old/mkdocs_material-9.6.4/material/templates/.icons/octicons/square-circle-16.svg
1970-01-01 01:00:00.000000000 +0100
+++
new/mkdocs_material-9.6.5/material/templates/.icons/octicons/square-circle-16.svg
2020-02-02 01:00:00.000000000 +0100
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 16A8 8
0 1 1 8 0a8 8 0 0 1 0 16m0-1.5a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13"/><path
d="M5 5.75A.75.75 0 0 1 5.75 5h4.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0
1-.75.75h-4.5a.75.75 0 0 1-.75-.75Z"/></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/templates/.icons/octicons/square-circle-24.svg
new/mkdocs_material-9.6.5/material/templates/.icons/octicons/square-circle-24.svg
---
old/mkdocs_material-9.6.4/material/templates/.icons/octicons/square-circle-24.svg
1970-01-01 01:00:00.000000000 +0100
+++
new/mkdocs_material-9.6.5/material/templates/.icons/octicons/square-circle-24.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="M12
23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11-4.925 11-11 11m0-1.5a9.5
9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12a9.5 9.5 0 0 0 9.5
9.5"/><path d="M7 8.75C7 7.784 7.784 7 8.75 7h6.5c.966 0 1.75.784 1.75
1.75v6.5A1.75 1.75 0 0 1 15.25 17h-6.5A1.75 1.75 0 0 1 7 15.25z"/></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/templates/.icons/simple/cnes.svg
new/mkdocs_material-9.6.5/material/templates/.icons/simple/cnes.svg
--- old/mkdocs_material-9.6.4/material/templates/.icons/simple/cnes.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/material/templates/.icons/simple/cnes.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="M10.173
0h.953v13.798c0 2.88 3.682 8.73 9.726 4.83l.122-.068C19.621 21.744 16.256 24
12.317 24c-5.132 0-9.292-3.83-9.292-8.556 0-4.046 3.05-7.436
7.148-8.327zm10.399 11.51c-1.525-2.707-4.575-4.569-8.103-4.62-.064 1.107.825
7.134 4.96 7.471 1.078.088 3.84-.55 3.143-2.85"/></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/templates/.icons/simple/devbox.svg
new/mkdocs_material-9.6.5/material/templates/.icons/simple/devbox.svg
--- old/mkdocs_material-9.6.4/material/templates/.icons/simple/devbox.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/material/templates/.icons/simple/devbox.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="m19.546
7.573-1.531-1.57-1.442 1.291-.959.86 3.876 3.987-2.426 2.496-1.451
1.492c.55.499 1.091.99 1.64 1.486l.764.694 2.21-2.277L24 12.14v-.001zM2.992
9.072 0 12.14c2.01 2.073 3.993 4.115 5.984 6.167l.51-.464 1.893-1.715L6.94
14.64 4.51 12.14l3.109-3.196.767-.789c-.434-.39-.86-.772-1.288-1.154L5.984
6v.001zm12.585-6.038L11.632 21.6l-.196-.039-3.029-.595 2.555-12.02L12.353
2.4z"/></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/templates/.icons/simple/filen.svg
new/mkdocs_material-9.6.5/material/templates/.icons/simple/filen.svg
--- old/mkdocs_material-9.6.4/material/templates/.icons/simple/filen.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/material/templates/.icons/simple/filen.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="M12
0C5.387 0 0 5.387 0 12s5.387 12 12 12 12-5.387 12-12S18.613 0 12 0m0
1.531a10.47 10.47 0 0 1 6.384 2.196v3.92H8.052a.75.75 0 0
0-.749.748v2.373c-.425.26-.69.719-.7 1.217A1.464 1.464 0 1 0 8.83
10.74V9.172h10.332a.75.75 0 0 0 .748-.75V5.193A10.47 10.47 0 0 1 22.47
12l-.012.151h-3.324a.75.75 0 0 0-.749.749v7.372a10.5 10.5 0 0 1-1.963
1.193V14.12c.425-.26.69-.718.7-1.217a1.464 1.464 0 0 0-2.927
0c.01.499.275.957.7 1.217v7.92a10.5 10.5 0 0 1-2.894.43 10.5 10.5 0 0
1-3.19-.502v-6.024h1.83c.259.426.718.69 1.216.7a1.464 1.464 0 0 0 0-2.927 1.46
1.46 0 0 0-1.217.7H8.033a.75.75 0 0 0-.749.75v6.177A10.5 10.5 0 0 1 4.8
19.576V5.252h8.314c.26.425.718.69 1.216.7a1.464 1.464 0 0 0 0-2.928 1.46 1.46 0
0 0-1.216.701H5.619A10.47 10.47 0 0 1 12 1.532zM3.274 6.266v11.468A10.47 10.47
0 0 1 1.53 12c.01-2.04.615-4.033 1.743-5.734zm16.637 7.412h2.42a10.47 10.47 0 0
1-2.42 5.13z"/></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/templates/.icons/simple/gldotinet.svg
new/mkdocs_material-9.6.5/material/templates/.icons/simple/gldotinet.svg
--- old/mkdocs_material-9.6.4/material/templates/.icons/simple/gldotinet.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/material/templates/.icons/simple/gldotinet.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="M12.242
8.576a3.5 3.5 0 0
0-1.752.469l-.076.047c-.068.038-.08.132-.025.183l.248.248c.038.039.098.048.14.018a2.9
2.9 0 0 1 1.46-.393c.512 0 1.016.137 1.46.393h.004a.12.12 0 0 0
.14-.018l.253-.248a.115.115 0 0 0-.026-.183l-.08-.047a3.5 3.5 0 0
0-1.746-.469m-.006 1.012c-.375 0-.747.094-1.076.273a.12.12 0 0 0-.055.084c0
.026.009.057.026.074l.273.274a.12.12 0 0 0 .133.025 1.6 1.6 0 0 1
.695-.154c.244 0 .484.056.701.154a.115.115 0 0 0 .131-.025l.266-.266a.11.11 0 0
0 .03-.082v-.008c.004-.025-.014-.055-.044-.072a2.26 2.26 0 0 0-1.08-.277m.01
1.123a.43.43 0 0 0-.44.44c0 .247.183.435.426.435a.46.46 0 0 0 .334-.133.41.41 0
0 0 .116-.303.43.43 0 0 0-.436-.44m-9.77.346c-1.472 0-2.472.884-2.476 2.199 0
.64.235 1.22.644 1.588.427.38.988.562 1.71.562.572 0 1.06-.122
1.372-.224l.057-.018a.04.04 0 0 0
.03-.039v-2.07c.008-.03-.008-.047-.034-.047H2.178a.04.04 0 0
0-.043.043v.576a.04.04 0 0 0 .043.043h.836v.99a2.3 2.3 0 0 1-.62.068c-.
952 0-1.544-.575-1.544-1.498 0-.922.618-1.496 1.613-1.496.452 0
.722.088.91.164l.09.038a.04.04 0 0 0 .033
0c.013-.005.017-.013.022-.026l.183-.576c.009-.021-.004-.042-.021-.05l-.069-.032c-.213-.094-.622-.195-1.134-.195m2.895.039c-.026
0-.043.015-.043.04v4.182c0
.026.017.041.043.041H7.96q.041-.001.043-.04v-.598c0-.017-.017-.04-.043-.04h-1.81v-3.544c0-.026-.018-.041-.044-.041zm8.51.004a.04.04
0 0 0-.043.043v4.18a.04.04 0 0 0 .043.042h.7a.04.04 0 0 0
.042-.043v-1.799c0-.448-.003-.81-.016-1.148.154.265.34.56.567.893l1.4
2.08a.04.04 0 0 0 .035.017h.7a.04.04 0 0 0 .043-.043v-4.18a.04.04 0 0
0-.043-.042h-.7a.04.04 0 0 0-.043.043v1.761q-.002.514.022
1.098-.224-.39-.512-.81l-1.414-2.077c-.008-.013-.02-.015-.033-.015zm9.248.277-.727.18a.05.05
0 0 0-.033.043v.63h-.44a.04.04 0 0 0-.042.043v.559a.04.04 0 0 0
.043.043h.443v1.451c0 .401.081.672.252.834.162.17.406.26.709.26.218 0
.414-.029.55-.08l.055-.022c.017-.008.032-.026.028-.043l-.035-.55c0-.013-.01-.027-.018-.032-.008-.008-.02-.007-.033-.007l-
.104.025c-.055.013-.154.03-.295.03-.149
0-.293-.035-.293-.44v-1.434h.768a.04.04 0 0 0 .043-.043v-.558a.05.05 0 0
0-.047-.036h-.77v-.81c0-.013-.002-.027-.015-.035-.008-.009-.026-.012-.04-.008m-3.229.789c-.935
0-1.588.691-1.588 1.678 0 .96.655 1.58 1.663 1.58.525 0 .883-.102
1.087-.188l.065-.025c.021-.009.03-.03.025-.05l-.136-.536a.04.04 0 0
0-.022-.025q-.02-.008-.033 0l-.096.039c-.183.072-.409.14-.81.14-.257
0-.855-.077-.932-.756h2.127a.044.044 0 0 0 .043-.037l.014-.095a1.6 1.6 0 0 0
.015-.235c-.004-.691-.376-1.49-1.422-1.49m-8.025.064a.04.04 0 0
0-.043.043v3.05a.04.04 0 0 0 .043.042h.738a.04.04 0 0 0 .043-.043v-3.049a.04.04
0 0 0-.043-.043zm7.982.555c.188 0
.343.052.45.154.14.133.188.325.2.453h-1.362c.05-.192.222-.607.713-.607zm-10.199.025a.453.453
0 0 0-.453.454.453.453 0 0 0 .453.453.453.453 0 0 0 .453-.453.453.453 0 0
0-.453-.453"/></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/templates/.icons/simple/mealie.svg
new/mkdocs_material-9.6.5/material/templates/.icons/simple/mealie.svg
--- old/mkdocs_material-9.6.4/material/templates/.icons/simple/mealie.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/material/templates/.icons/simple/mealie.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="M6.619
13.59 1.444 8.427c-1.925-1.939-1.925-5.063 0-6.989l8.666 8.642zm6.551-.42 8.51
8.49-1.76 1.74-8.48-8.48-8.502 8.48-1.741-1.74L13.12 9.739l-.25-.272a2.45 2.45
0 0 1 0-3.472L18.23.6l1.14 1.135-3.99 4.024 1.18 1.161 3.99-4.012 1.15
1.136-4.01 4 1.15 1.189 4.03-4.017L24 6.377l-5.4 5.353c-.95.96-2.51.96-3.46
0l-.27-.25z"/></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/templates/.icons/simple/open3d.svg
new/mkdocs_material-9.6.5/material/templates/.icons/simple/open3d.svg
--- old/mkdocs_material-9.6.4/material/templates/.icons/simple/open3d.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/material/templates/.icons/simple/open3d.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="M5.998
1.606 0 12l5.998 10.394h2.094l1.954-3.383H7.952L4.06 12.268h8.149l3.56
6.157L19.483 12l-3.715-6.444-3.56 6.18H4.055l3.893-6.747h2.098L8.088
1.606Zm2.71 0 1.954 3.383h5.386L20.096 12l-4.044 7.011h-5.394l-1.954
3.383h9.294l.488-.847L24 12 18.002 1.606Z"/></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/templates/.icons/simple/torizon.svg
new/mkdocs_material-9.6.5/material/templates/.icons/simple/torizon.svg
--- old/mkdocs_material-9.6.4/material/templates/.icons/simple/torizon.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/material/templates/.icons/simple/torizon.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="M11.63.349a.56.56 0 0 0-.304.09L8.719 2.132a.274.274 0 0 0 0 .457l2.607
1.693a.56.56 0 0 0 .607 0L14.54 2.59a.274.274 0 0 0 0-.457L11.933.439a.56.56 0
0 0-.303-.09M7.437 3.054a.56.56 0 0 0-.302.09L4.53 4.837a.274.274 0 0 0 0
.46L7.135 6.99a.56.56 0 0 0 .604 0l2.606-1.693a.274.274 0 0 0 0-.46L7.74
3.144a.56.56 0 0 0-.302-.09m8.852.316a.56.56 0 0 0-.302.09l-2.606 1.69a.274.274
0 0 0 0 .46l2.606 1.693a.56.56 0 0 0 .605 0l2.606-1.693a.274.274 0 0 0
0-.46l-2.606-1.69a.56.56 0 0 0-.303-.09M3.043 5.924a.56.56 0 0 0-.303.09L.134
7.707a.274.274 0 0 0 0 .46l2.606 1.69a.56.56 0 0 0 .605 0l2.606-1.69a.274.274 0
0 0 0-.46L3.345 6.014a.56.56 0 0 0-.302-.09m9.055.155a.56.56 0 0 0-.301.09l-2.6
1.689a.274.274 0 0 0 0 .46l2.6 1.693a.56.56 0 0 0 .603.003l2.607-1.692a.274.274
0 0 0 0-.46L12.4 6.167a.56.56 0 0 0-.302-.089m8.858.309a.56.56 0 0
0-.304.09L18.045 8.17a.274.274 0 0 0 0 .457l2.607 1.697a.56.56 0 0 0 .608
0l2.606-1.694a.274.2
74 0 0 0 0-.46L21.26 6.478a.56.56 0 0 0-.304-.09M7.702 8.945a.56.56 0 0
0-.303.09l-2.607 1.693a.274.274 0 0 0 0 .456L7.4 12.877a.56.56 0 0 0 .607
0l2.596-1.685a.274.274 0 0 0 0-.457l-2.596-1.7a.56.56 0 0
0-.304-.09m9.063.15a.56.56 0 0 0-.304.09l-2.606 1.694a.274.274 0 0 0 0
.457l2.606 1.692a.56.56 0 0 0 .608 0l2.606-1.692a.274.274 0 0 0 0-.457L17.07
9.186a.56.56 0 0 0-.304-.09M24 10.585a1.2 1.2 0 0 1-.351.611L12.973 18.13a1.83
1.83 0 0 1-1.992 0L.334 11.212a1.15 1.15 0 0 1-.333-.6v1.657a.74.74 0 0 0
.351.665l10.63 6.913a1.83 1.83 0 0 0 1.991 0l10.676-6.935a.74.74 0 0 0
.35-.643Zm-11.631 1.379a.56.56 0 0 0-.302.089L9.46 13.745a.274.274 0 0 0 0
.46l2.607 1.693a.56.56 0 0 0 .604 0l2.607-1.692a.274.274 0 0 0
0-.46l-2.607-1.694a.56.56 0 0 0-.302-.09m11.63 2.134a1.2 1.2 0 0
1-.35.607l-10.676 6.92a1.83 1.83 0 0 1-1.992 0L.334 14.722a1.15 1.15 0 0
1-.333-.597v1.654a.74.74 0 0 0 .351.66l10.63 6.917a1.83 1.83 0 0 0 1.991
0l10.676-6.934a.74.74 0 0 0 .35-.643z"/></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/mkdocs_material-9.6.4/material/templates/.icons/simple/velocity.svg
new/mkdocs_material-9.6.5/material/templates/.icons/simple/velocity.svg
--- old/mkdocs_material-9.6.4/material/templates/.icons/simple/velocity.svg
1970-01-01 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/material/templates/.icons/simple/velocity.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="m7.623
6.719-4.752.959a.65.65 0 0 0-.44.324L.083 12.248a.65.65 0 0 0 .045.701l2.986
4.076a.66.66 0 0 0 .657.256l4.736-.957a.65.65 0 0 0 .363-.215h11.694a.542.542 0
0 0 0-1.084h-2.95a.53.53 0 0 1-.394-.152.545.545 0 0 1 0-.78.55.55 0 0 1
.394-.152h5.875a.53.53 0 0 0 .512-.33v-.422a.53.53 0 0
0-.512-.33h-9.79a.547.547 0 0 1-.544-.543.54.54 0 0 1 .543-.54h5.85a.544.544 0
0 0 .525-.542.54.54 0 0 0-.525-.543H15.68a.54.54 0 1 1 0-1.082h5.86a.546.546 0
0 0 .524-.543.54.54 0 0 0-.525-.54H9.416L8.279 6.972a.65.65 0 0
0-.656-.254M7.576 7.77a.527.527 0 0 1 .207.715l-1.451 2.631a.88.88 0 0 0
.059.945L8.1 14.39a.528.528 0 0 1-.854.623l-1.709-2.326a.88.88 0 0
0-.88-.344l-2.897.586a.523.523 0 0 1-.621-.412.525.525 0 0 1
.41-.621l3.14-.635a.9.9 0 0 0 .596-.438l1.576-2.845a.524.524 0 0 1
.715-.206m13.608 2.92a.54.54 0 1 0-.001 1.082.54.54 0 0 0 0-1.082"/></svg>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/mkdocs_material-9.6.4/material/templates/base.html
new/mkdocs_material-9.6.5/material/templates/base.html
--- old/mkdocs_material-9.6.4/material/templates/base.html 2020-02-02
01:00:00.000000000 +0100
+++ new/mkdocs_material-9.6.5/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.6.4">
+ <meta name="generator" content="mkdocs-{{ mkdocs_version }},
mkdocs-material-9.6.5">
{% endblock %}
{% block htmltitle %}
{% if page.meta and page.meta.title %}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/mkdocs_material-9.6.4/package.json
new/mkdocs_material-9.6.5/package.json
--- old/mkdocs_material-9.6.4/package.json 2020-02-02 01:00:00.000000000
+0100
+++ new/mkdocs_material-9.6.5/package.json 2020-02-02 01:00:00.000000000
+0100
@@ -1,6 +1,6 @@
{
"name": "mkdocs-material",
- "version": "9.6.4",
+ "version": "9.6.5",
"description": "Documentation that simply works",
"keywords": [
"mkdocs",
@@ -53,24 +53,24 @@
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@mdi/svg": "^7.4.47",
- "@primer/octicons": "^19.14.0",
- "@stylistic/eslint-plugin-ts": "^3.0.1",
+ "@primer/octicons": "^19.15.0",
+ "@stylistic/eslint-plugin-ts": "^3.1.0",
"@stylistic/stylelint-config": "^2.0.0",
- "@stylistic/stylelint-plugin": "^3.1.1",
+ "@stylistic/stylelint-plugin": "^3.1.2",
"@types/css-modules": "^1.0.5",
"@types/escape-html": "^1.0.4",
"@types/fuzzaldrin-plus": "^0.6.5",
"@types/html-minifier-terser": "^7.0.2",
"@types/lunr": "^2.3.7",
- "@types/node": "^22.12.0",
+ "@types/node": "^22.13.1",
"@types/resize-observer-browser": "^0.1.11",
"@types/sass": "^1.45.0",
- "@typescript-eslint/eslint-plugin": "^8.22.0",
- "@typescript-eslint/parser": "^8.22.0",
+ "@typescript-eslint/eslint-plugin": "^8.24.0",
+ "@typescript-eslint/parser": "^8.24.0",
"autoprefixer": "^10.4.20",
"chokidar": "^4.0.3",
"cssnano": "5.1.0",
- "esbuild": "^0.24.2",
+ "esbuild": "^0.25.0",
"eslint": "8.57.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
@@ -84,15 +84,15 @@
"material-shadows": "^3.0.1",
"npm-check-updates": "^17.1.14",
"npm-run-all": "^4.1.5",
- "postcss": "^8.5.1",
+ "postcss": "^8.5.2",
"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.25.4",
"rimraf": "^6.0.1",
- "sass": "^1.83.4",
- "simple-icons": "^14.4.0",
+ "sass": "^1.84.0",
+ "simple-icons": "^14.6.0",
"stylelint": "16.12.0",
"stylelint-config-recess-order": "5.1.1",
"stylelint-config-recommended": "14.0.1",