Skip to content

Commit 00b648f

Browse files
authored
Release 1.5.3 (#3392)
1 parent 63b5045 commit 00b648f

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

docs/about/release-notes.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,29 @@ The current and past members of the MkDocs team.
2727
* [@oprypin](https://github.com/oprypin/)
2828
* [@ultrabug](https://github.com/ultrabug/)
2929

30+
## Version 1.5.3 (2023-09-18)
31+
32+
* Fix `mkdocs serve` sometimes locking up all browser tabs when navigating quickly (#3390)
33+
34+
* Add many new supported languages for "search" plugin - update lunr-languages to 1.12.0 (#3334)
35+
36+
* Bugfix (regression in 1.5.0): In "readthedocs" theme the styling of "breadcrumb navigation" was broken for nested pages (#3383)
37+
38+
* Built-in themes now also support Chinese (Traditional, Taiwan) language (#3154)
39+
40+
* Plugins can now set `File.page` to their own subclass of `Page`. There is also now a warning if `File.page` is set to anything other than a strict subclass of `Page`. (#3367, #3381)
41+
42+
Note that just instantiating a `Page` [sets the file automatically](https://github.com/mkdocs/mkdocs/blob/f94ab3f62d0416d484d81a0c695c8ca86ab3b975/mkdocs/structure/pages.py#L34), so care needs to be taken not to create an unneeded `Page`.
43+
44+
Other small improvements; see [commit log](https://github.com/mkdocs/mkdocs/compare/1.5.2...1.5.3).
45+
3046
## Version 1.5.2 (2023-08-02)
3147

3248
* Bugfix (regression in 1.5.0): Restore functionality of `--no-livereload`. (#3320)
3349

3450
* Bugfix (regression in 1.5.0): The new page title detection would sometimes be unable to drop anchorlinks - fix that. (#3325)
3551

36-
* Partly bring back pre-1.5 API: `extra_javascript` items will once again be mostly strings, and only sometimes `ExtraStringValue` (when the extra `script` functionality is used).
52+
* Partly bring back pre-1.5 API: `extra_javascript` items will once again be mostly strings, and only sometimes `ExtraScriptValue` (when the extra `script` functionality is used).
3753

3854
Plugins should be free to append strings to `config.extra_javascript`, but when reading the values, they must still make sure to read it as `str(value)` in case it is an `ExtraScriptValue` item. For querying the attributes such as `.type` you need to check `isinstance` first. Static type checking will guide you in that. (#3324)
3955

mkdocs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
# For acceptable version formats, see https://www.python.org/dev/peps/pep-0440/
5-
__version__ = '1.5.2'
5+
__version__ = '1.5.3'

0 commit comments

Comments
 (0)