Skip to content

Commit ca1f49b

Browse files
committed
0.10.2
1 parent 4fc6161 commit ca1f49b

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

changelog.md

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

3+
## 0.10.2 - 2025/08/12 - Update code and fix
4+
5+
### Upgrade
6+
7+
- Update the code to use node_indexes from ruff_python_parser (available since last update) instead of our own ast index implementation to avoid duplicating computation
8+
9+
### Fixes
10+
11+
- Invalid context value type that cause crashes (in Odoo < 18.0)
12+
- Fix the hook for the field 'global' on IrRule for versions < 18.1
13+
314
## 0.10.1 - 2025/08/11 - Quick fix
415

516
### Fixes

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.10.1"
3+
version = "0.10.2"
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.10.1";
7+
pub const EXTENSION_VERSION: &str = "0.10.2";
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.10.1",
5+
"version": "0.10.2",
66
"publisher": "Odoo",
77
"repository": {
88
"type": "git",

0 commit comments

Comments
 (0)