Skip to content

Commit b8be18d

Browse files
committed
0.6.1
1 parent d3e9cf1 commit b8be18d

File tree

4 files changed

+28
-3
lines changed

4 files changed

+28
-3
lines changed

changelog.md

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

3+
## 0.6.1 - 2025/24/04 - File cache option and bugfixs
4+
5+
### Key features
6+
7+
- New option that will move file cache from RAM to disk (reduce memory usage by ~30%, but will increase disk access). It is off by
8+
default to not stress your disk, but you can activate it in your settings if you are on a computer with limited RAM amount.
9+
- This patch focus on bugs you reported from the 0.6.0. Thank you for sending us your crash report, it helps us building a stable tool !
10+
11+
### Server
12+
13+
- New file cache option to move file cache from RAM to disk. Off by default
14+
15+
### Fixs
16+
17+
- Fix an issue that was removing all diagnostics on settings change for no reason
18+
- Fix a crash on evaluation refresh
19+
- Fix transformation of path from addon entry to main entry
20+
- Fix creation of entryPoint for namespace symbols
21+
- Fix an issue that prevented the server to mark files as closed, creating a crash on reopening.
22+
- Fix parsing of `__manifest__.py` and `__init__.py` in custom entry point. It fixes crash when opening files outside of the config
23+
- Fix crash on parsing empty `__manifest__.py` file
24+
- Fix reloading of custom entry point
25+
- Fix path comparison. "account_account" will not be considered below "account" because it shares the same start. Now path components are properly used
26+
for the comparison.
27+
328
## 0.6.0 - 2025/15/04 - Entrypoints and NOQA Update
429

530
### Key features

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.6.0"
3+
version = "0.6.1"
44
edition = "2021"
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
@@ -4,7 +4,7 @@ use core::fmt;
44
use byteyarn::{yarn, Yarn};
55

66
pub const EXTENSION_NAME: &str = "Odoo";
7-
pub const EXTENSION_VERSION: &str = "0.6.0";
7+
pub const EXTENSION_VERSION: &str = "0.6.1";
88

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

vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "odoo",
33
"displayName": "Odoo",
44
"description": "Language Server for Odoo projects",
5-
"version": "0.6.0",
5+
"version": "0.6.1",
66
"publisher": "Odoo",
77
"repository": {
88
"type": "git",

0 commit comments

Comments
 (0)