Skip to content

Commit 8389289

Browse files
authored
Merge pull request #83 from mathworks/dklilley/release/1.3.10
MATLAB language server - v1.3.10
2 parents 19438c8 + a35f258 commit 8389289

6 files changed

Lines changed: 703 additions & 307 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.3.10] - 2026-04-02
11+
12+
### Fixed
13+
- Applied patches for CVE-2026-32141
14+
1015
## [1.3.9] - 2026-03-09
1116

1217
### Fixed

matlab/initmatlabls.m

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,14 @@ function initmatlabls (outFile)
1616
matlabls.setupShadows(folder);
1717

1818
try
19+
% Disable specific settings which may cause editor windows to open
1920
s = settings;
2021
s.matlab.editor.OpenFileAtBreakpoint.TemporaryValue = false;
2122
s.matlab.editor.ReopenFilesOnRestart.TemporaryValue = false;
23+
if ~isMATLABReleaseOlderThan('R2022a')
24+
% setting introduced in R2022a
25+
s.matlab.desktop.RestoreDesktopConfig.TemporaryValue = false;
26+
end
2227
catch ME
2328
end
2429

0 commit comments

Comments
 (0)