Skip to content

Commit 7e58e36

Browse files
committed
0.12.1
1 parent 98458ee commit 7e58e36

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

changelog.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# Changelog
22

3+
## [0.12.1] - 2025/09/05 - Hotfixes
4+
5+
### PyCharm
6+
7+
- Fix the button that lead to OdooLS settings
8+
9+
### VsCode
10+
11+
- Update the version check that display the "Beta warning" to fit the post 1.0 format
12+
13+
### Server
14+
15+
- Upgrade Rust edition from 2021 to 2024
16+
- Configuration files: Diagnostics filter paths is now an array instead of a String, and we can choose if the filter is applied to any file in the list of paths or not in the list of path
17+
- Improve the the origin_range (the underlined part of the test) in chains of relational fields when doing a gotodefinition on a String
18+
- Improve the detection of the detection of python (choose python or python3 depending on availability)
19+
- Remove self from list of models implementation in gotodefinition
20+
- Improve the line breaks in Hovers depending on the capabilities of the client. VsCode is supporting markdown and so ` \n`, but PyCharm only support `<br/>` that VsCode is escaping. The server now uses the given parser name from the client to choose the right line break
21+
- Force color background and font for 'all configuration page' to ensure clear visibility on all clients.
22+
- Log the full config of the user in the logs to help debugging
23+
- Remove compilation warnings
24+
25+
### Fixes
26+
27+
- New $autoDetectAddons was not always properly detected
28+
- Fix launch.json on linux since the repository structure update
29+
- Refactor the threadpool to fix concurrency issue in the way some LSP messages were handled, causing random rare crashes.
30+
331
## [0.12.0] - 2025/08/28 - PyCharm, Csv and configurations
432

533
This patch includes somes changes required for the new [PyCharm](https://github.com/odoo/odoo-ls-pycharm) plugin.

server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "odoo_ls_server"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
edition = "2024"
55
authors = ["Odoo"]
66
readme = "../README.md"

server/src/constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use core::fmt;
33

44

55
pub const EXTENSION_NAME: &str = "Odoo";
6-
pub const EXTENSION_VERSION: &str = "0.12.0";
6+
pub const EXTENSION_VERSION: &str = "0.12.1";
77

88
pub const DEBUG_ODOO_BUILDER: bool = false;
99
pub const DEBUG_MEMORY: bool = false;

0 commit comments

Comments
 (0)