mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03: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)
|
||||
|
||||
* Fixed #5902: ResizeObserver polyfill not detected by privacy plugin
|
||||
|
@ -2,6 +2,14 @@
|
||||
|
||||
## 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" }
|
||||
|
||||
- Fixed error in dirty serve mode when using blog plugin
|
||||
|
@ -2,6 +2,13 @@
|
||||
|
||||
## 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" }
|
||||
|
||||
- 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 }}">
|
||||
{% endif %}
|
||||
<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 %}
|
||||
{% block htmltitle %}
|
||||
{% if page.meta and page.meta.title %}
|
||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "9.2.5",
|
||||
"version": "9.2.6",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mkdocs-material",
|
||||
"version": "9.2.5",
|
||||
"version": "9.2.6",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"clipboard": "^2.0.11",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "9.2.5",
|
||||
"version": "9.2.6",
|
||||
"description": "Documentation that simply works",
|
||||
"keywords": [
|
||||
"mkdocs",
|
||||
|
Loading…
Reference in New Issue
Block a user