Skip to content

Commit dcd9b3a

Browse files
Esbonio Language Server Release v1.0.0b8
1 parent d3aae44 commit dcd9b3a

File tree

7 files changed

+17
-8
lines changed

7 files changed

+17
-8
lines changed

lib/esbonio/CHANGES.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## v1.0.0b8 - 2024-10-20
2+
3+
### Enhancements
4+
5+
- When clicking on internal links of a previewed page, the corresponding source file will be automatically opened in the editor ([#704](https://github.com/swyddfa/esbonio/issues/704))
6+
- The language server should now also work with an incomplete Python environment. If one or more Sphinx extensions are missing, esbonio will still be able to run a build and report the missing extensions as a diagnostic ([#913](https://github.com/swyddfa/esbonio/issues/913))
7+
- When asking for a `html_theme` that is not available in the current environment, the server will now fallback to Sphinx's `alabaster` theme and report the error as a diagnostic ([#916](https://github.com/swyddfa/esbonio/issues/916))
8+
9+
### Fixes
10+
11+
- The `esbonio.preview.showLineMarkers` option should now work again.
12+
13+
When clicking on internal links of a previewed page, the websocket connection to the language server is now preserved. ([#906](https://github.com/swyddfa/esbonio/issues/906))
14+
- Esbonio should once again be able to parse `sphinx-build` command line arguments for versions of Sphinx `>=8.1` ([#912](https://github.com/swyddfa/esbonio/issues/912))
15+
16+
117
## v1.0.0b7 - 2024-09-22
218

319
### Enhancements

lib/esbonio/changes/704.enhancement.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/esbonio/changes/906.fix.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

lib/esbonio/changes/912.fix.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/esbonio/changes/913.enhancement.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/esbonio/changes/916.enhancement.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/esbonio/esbonio/server/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
from .feature import LanguageFeature
2929

30-
__version__ = "1.0.0b7"
30+
__version__ = "1.0.0b8"
3131
T = TypeVar("T")
3232
LF = TypeVar("LF", bound="LanguageFeature")
3333

0 commit comments

Comments
 (0)