Skip to content

Commit aa4ef56

Browse files
committed
Prepare 9.5.44 release
1 parent eb63b60 commit aa4ef56

File tree

7 files changed

+14
-6
lines changed

7 files changed

+14
-6
lines changed

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
mkdocs-material-9.5.44 (2024-11-05)
2+
3+
* Fixed #7672: Font CSS 404's when using privacy plugin (9.5.43 regression)
4+
15
mkdocs-material-9.5.43 (2024-10-31)
26

37
* Added support for external images in SVGs in privacy plugin

docs/changelog/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Material for MkDocs
44

5+
### 9.5.44 <small>October 31, 2024</small> { id="9.5.44" }
6+
7+
- Fixed #7672: Font CSS 404's when using privacy plugin (9.5.43 regression)
8+
59
### 9.5.43 <small>October 31, 2024</small> { id="9.5.43" }
610

711
- Added support for external images in SVGs in privacy plugin

material/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
1919
# IN THE SOFTWARE.
2020

21-
__version__ = "9.5.43"
21+
__version__ = "9.5.44"

material/plugins/privacy/plugin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ def _patch(self, initiator: File):
467467

468468
# Replace callback
469469
def replace(match: Match):
470-
value = match.group(1)
470+
value = match.group("url")
471471

472472
# Map URL to canonical path
473473
path = self._path_from_url(urlparse(value))

material/templates/base.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
3333
{% endif %}
3434
<link rel="icon" href="{{ config.theme.favicon | url }}">
35-
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.5.43">
35+
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.5.44">
3636
{% endblock %}
3737
{% block htmltitle %}
3838
{% if page.meta and page.meta.title %}

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mkdocs-material",
3-
"version": "9.5.43",
3+
"version": "9.5.44",
44
"description": "Documentation that simply works",
55
"keywords": [
66
"mkdocs",

0 commit comments

Comments
 (0)