We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd8253d commit 62d255cCopy full SHA for 62d255c
2 files changed
docs/about/release-notes.md
@@ -27,6 +27,7 @@ The current members of the MkDocs-NG team.
27
28
### Fixed
29
30
+* Fix `mkdocs serve` file watching by avoiding Click 8.3.0 and newer, which can prevent live reload rebuilds from triggering.
31
* Fix dropdown submenu arrow invisible in the navigation menu. #44
32
* Fix malformed URLs (e.g., unterminated IPv6 literals) crashing the entire build. #45
33
* Fix build crash caused by broken (dangling) symlinks in the docs directory. #46
pyproject.toml
@@ -36,7 +36,7 @@ classifiers = [
36
dynamic = ["version"]
37
requires-python = ">=3.8"
38
dependencies = [
39
- "click >=7.0",
+ "click >=7.0, <8.3.0",
40
"Jinja2 >=2.11.1",
41
"markupsafe >=2.0.1",
42
"Markdown >=3.3.6",
0 commit comments