Skip to content

Commit 38f61a7

Browse files
committed
1.1.1
1 parent 2280449 commit 38f61a7

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
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+
## [1.1.1] - 2025/11/24 - Untitled files and Encoding
4+
5+
### Server
6+
7+
- Support for encoding UTF-8, UTF-16 and UTF-32.
8+
- Support for "untitled" files for VsCode.
9+
- Add tests for diagnostics
10+
11+
### Fixs
12+
13+
- Fix crash when a file is importing a .pyd with the same name (avoid self referencing)
14+
- Fix OLS01002 not emitted on valued variables
15+
- FIX OLS01004 that should not be emitted on `classmethod`
16+
- FIX OLS01007 and OLS01010 on evaluation of function calls when keyword-only arguments are used.
17+
- XML Syntax error is now OLS05000
18+
- Fix range for diagnostic OLS05009
19+
- Fix OLS01009 that could be emitted on valid cases.
20+
- Fix detection of `search` and `inverse` keyword on fields declaration
21+
- Fix detection of `inverse_name` on One2Many if the keyword was missing
22+
- Fix deprecation warning OLS03301 that was not emitted
23+
- Fix crash on data not being string in `__manifest__.py`
24+
- Fix validation of `__manifest__.py` files even if the folder does not contain any `__init__.py`
25+
- Functions will not expose their internal function in an autocompletion anymore
26+
27+
328
## [1.1.0] - 2025/11/06 - Workspace Symbols / WSL support
429

530
This Beta update improves the QoL on various IDEs and brings some new 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 = "1.1.0"
3+
version = "1.1.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 = "1.1.0";
6+
pub const EXTENSION_VERSION: &str = "1.1.1";
77

88
pub const MAX_WATCHED_FILES_UPDATES_BEFORE_RESTART: u32 = 10;
99

0 commit comments

Comments
 (0)