diff --git a/changelog.md b/changelog.md index 108b4498e..7a489ddc6 100644 --- a/changelog.md +++ b/changelog.md @@ -7,6 +7,11 @@ Features * Add a `/config` command to inspect configuration values from the REPL. +Bugfixes +--------- +* Downgrade `click` to v8.3.3, since v8.4.2 broke the pager on Windows. + + 2.11.0 (2026/08/07) ============== diff --git a/pyproject.toml b/pyproject.toml index c278ba2db..20d70925e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,9 @@ classifiers = [ ] dependencies = [ - "click ~= 8.4.2", + # click 8.4.2 breaks the pager on Windows; check the next + # version for https://github.com/pallets/click/pull/3739 + "click ~= 8.3.3", "clickdc ~= 0.1.1", "cryptography ~= 50.0.0", "Pygments ~= 2.20.0",