Skip to content

Commit 4455f82

Browse files
Esbonio Language Server Release v1.0.0b12
1 parent ac66445 commit 4455f82

File tree

8 files changed

+20
-9
lines changed

8 files changed

+20
-9
lines changed

lib/esbonio/CHANGES.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## v1.0.0b12 - 2025-07-03
2+
3+
### Features
4+
5+
- Re-implement support for hover requests, where the hover reveals the documentation behind cross-references like ```:class:`HoverContext` ``` ([#1008](https://github.com/swyddfa/esbonio/issues/1008))
6+
7+
### Fixes
8+
9+
- Rather than trying to generate unique urls across projects (which broke many links), the preview server now sets the `Cache-Control` header in an attempt to ensure the preview always updates correctly. ([#951](https://github.com/swyddfa/esbonio/issues/951), [#987](https://github.com/swyddfa/esbonio/issues/987))
10+
- The sphinx agent no longer crashes when saving a configuration value that is a list containing exactly three items ([#969](https://github.com/swyddfa/esbonio/issues/969))
11+
- Improve diagnostic experience in editors like neovim which do not support `workspace/diagnostic/refresh` requests ([#998](https://github.com/swyddfa/esbonio/issues/998))
12+
13+
### Misc
14+
15+
- Update to pygls v2.0.0a4
16+
17+
Add support for Python 3.14 ([#1007](https://github.com/swyddfa/esbonio/issues/1007))
18+
19+
120
## v1.0.0b11 - 2025-04-02
221

322
### Features

lib/esbonio/changes/1007.misc.md

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

lib/esbonio/changes/1008.feature.md

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

lib/esbonio/changes/951.fix.md

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

lib/esbonio/changes/969.fix.md

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

lib/esbonio/changes/987.fix.md

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

lib/esbonio/changes/998.fix.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
@@ -28,7 +28,7 @@
2828

2929
from .feature import LanguageFeature
3030

31-
__version__ = "1.0.0b11"
31+
__version__ = "1.0.0b12"
3232
T = TypeVar("T")
3333
LF = TypeVar("LF", bound="LanguageFeature")
3434

0 commit comments

Comments
 (0)