Skip to content

Commit

Permalink
Esbonio Language Server Release v1.0.0b8
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 20, 2024
1 parent d3aae44 commit dcd9b3a
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 8 deletions.
16 changes: 16 additions & 0 deletions lib/esbonio/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## v1.0.0b8 - 2024-10-20

### Enhancements

- When clicking on internal links of a previewed page, the corresponding source file will be automatically opened in the editor ([#704](https:/swyddfa/esbonio/issues/704))
- 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:/swyddfa/esbonio/issues/913))
- 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:/swyddfa/esbonio/issues/916))

### Fixes

- The `esbonio.preview.showLineMarkers` option should now work again.

When clicking on internal links of a previewed page, the websocket connection to the language server is now preserved. ([#906](https:/swyddfa/esbonio/issues/906))
- Esbonio should once again be able to parse `sphinx-build` command line arguments for versions of Sphinx `>=8.1` ([#912](https:/swyddfa/esbonio/issues/912))


## v1.0.0b7 - 2024-09-22

### Enhancements
Expand Down
1 change: 0 additions & 1 deletion lib/esbonio/changes/704.enhancement.md

This file was deleted.

3 changes: 0 additions & 3 deletions lib/esbonio/changes/906.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/912.fix.md

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/913.enhancement.md

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/916.enhancement.md

This file was deleted.

2 changes: 1 addition & 1 deletion lib/esbonio/esbonio/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

from .feature import LanguageFeature

__version__ = "1.0.0b7"
__version__ = "1.0.0b8"
T = TypeVar("T")
LF = TypeVar("LF", bound="LanguageFeature")

Expand Down

0 comments on commit dcd9b3a

Please sign in to comment.