mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-23 23:21:00 +01:00
Prepare 9.2.6 release
This commit is contained in:
parent
d0ac21e98d
commit
aabc68dd8f
15
CHANGELOG
15
CHANGELOG
@ -1,3 +1,18 @@
|
|||||||
|
mkdocs-material-9-2.6+insiders-4.40.2 (2023-08-31)
|
||||||
|
|
||||||
|
* Added configurable error handling capabilities for social plugin
|
||||||
|
* Fixed #5922: Blog plugin shows no posts when building a standalone blog
|
||||||
|
* Fixed #5914: Tags plugin tags_extra_files errors (4.39.3 regression)
|
||||||
|
* Fixed #5904: Blog plugin sometimes excludes files (4.40.1 regression)
|
||||||
|
|
||||||
|
mkdocs-material-9-2.6 (2023-08-31)
|
||||||
|
|
||||||
|
* Added Basque translations
|
||||||
|
* Added template for simple redirects
|
||||||
|
* Improved blog plugin interop by moving view generation to on_files
|
||||||
|
* Fixed #5924: Social plugin still checks dependencies when disabled
|
||||||
|
* Fixed #5916: Blog plugin crashes on Python 3.8 (9.2.0 regression)
|
||||||
|
|
||||||
mkdocs-material-9-2.5+insiders-4.40.1 (2023-08-27)
|
mkdocs-material-9-2.5+insiders-4.40.1 (2023-08-27)
|
||||||
|
|
||||||
* Fixed #5902: ResizeObserver polyfill not detected by privacy plugin
|
* Fixed #5902: ResizeObserver polyfill not detected by privacy plugin
|
||||||
|
@ -2,6 +2,14 @@
|
|||||||
|
|
||||||
## Material for MkDocs
|
## Material for MkDocs
|
||||||
|
|
||||||
|
### 9.2.6 <small>August 31, 2023</small> { id="9.2.6" }
|
||||||
|
|
||||||
|
- Added Basque translations
|
||||||
|
- Added template for simple redirects
|
||||||
|
- Improved blog plugin interop by moving view generation to `on_files`
|
||||||
|
- Fixed #5924: Social plugin still checks dependencies when disabled
|
||||||
|
- Fixed #5916: Blog plugin crashes on Python 3.8 (9.2.0 regression)
|
||||||
|
|
||||||
### 9.2.5 <small>August 27, 2023</small> { id="9.2.5" }
|
### 9.2.5 <small>August 27, 2023</small> { id="9.2.5" }
|
||||||
|
|
||||||
- Fixed error in dirty serve mode when using blog plugin
|
- Fixed error in dirty serve mode when using blog plugin
|
||||||
|
@ -2,6 +2,13 @@
|
|||||||
|
|
||||||
## Material for MkDocs Insiders
|
## Material for MkDocs Insiders
|
||||||
|
|
||||||
|
### 4.40.2 <small>August 31, 2023</small> { id="4.40.2" }
|
||||||
|
|
||||||
|
- Added configurable error handling capabilities for social plugin
|
||||||
|
- Fixed #5922: Blog plugin shows no posts when building a standalone blog
|
||||||
|
- Fixed #5914: Tags plugin tags_extra_files errors (4.39.3 regression)
|
||||||
|
- Fixed #5904: Blog plugin sometimes excludes files (4.40.1 regression)
|
||||||
|
|
||||||
### 4.40.1 <small>August 27, 2023</small> { id="4.40.1" }
|
### 4.40.1 <small>August 27, 2023</small> { id="4.40.1" }
|
||||||
|
|
||||||
- Fixed #5902: ResizeObserver polyfill not detected by privacy plugin
|
- Fixed #5902: ResizeObserver polyfill not detected by privacy plugin
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
<link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
|
<link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<link rel="icon" href="{{ config.theme.favicon | url }}">
|
<link rel="icon" href="{{ config.theme.favicon | url }}">
|
||||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.2.5">
|
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.2.6">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block htmltitle %}
|
{% block htmltitle %}
|
||||||
{% if page.meta and page.meta.title %}
|
{% if page.meta and page.meta.title %}
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "9.2.5",
|
"version": "9.2.6",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "9.2.5",
|
"version": "9.2.6",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"clipboard": "^2.0.11",
|
"clipboard": "^2.0.11",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "9.2.5",
|
"version": "9.2.6",
|
||||||
"description": "Documentation that simply works",
|
"description": "Documentation that simply works",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"mkdocs",
|
"mkdocs",
|
||||||
|
Loading…
Reference in New Issue
Block a user