Skip to content

Commit 13f40c3

Browse files
dklilleyGitHub Enterprise
authored andcommitted
Merge pull request mathworks#54 from development/dlilley/release/1.3.0
Release v1.3.0
2 parents 49cccb0 + e243a85 commit 13f40c3

File tree

4 files changed

+66
-46
lines changed

4 files changed

+66
-46
lines changed

README.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33

44
MATLAB® language server implements the Microsoft® [Language Server Protocol](https://github.com/Microsoft/language-server-protocol) for the MATLAB language.
55

6-
MATLAB language server requires MATLAB version R2021a or later.
7-
8-
**Note:** This language server will no longer support MATLAB R2021a in a future release. To use advanced features or run MATLAB code, you will need to have MATLAB R2021b or later installed.
6+
MATLAB language server requires MATLAB version R2021b or later.
97

108
## Features Implemented
119
MATLAB language server implements several Language Server Protocol features and their related services:
@@ -28,6 +26,20 @@ MATLAB language server supports these editors by installing the corresponding ex
2826

2927
### Unreleased
3028

29+
### 1.3.0
30+
Release date: 2024-12-18
31+
32+
Notice:
33+
* The MATLAB language server no longer supports MATLAB R2021a. To make use of the advanced features of the extension or run and debug MATLAB code, you must have MATLAB R2021b or later installed.
34+
35+
Added:
36+
* Debugging support
37+
* Include snippets defined within MATLAB (requires MATLAB R2025a or later)
38+
39+
Fixed:
40+
* Use default values when settings are missing from configuration
41+
* Patches CVE-2024-52798
42+
3143
### 1.2.7
3244
Release date: 2024-11-07
3345

package-lock.json

Lines changed: 14 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/licensing/gui/package-lock.json

Lines changed: 36 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils/DeprecationUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Logger from '../logging/Logger'
44
import NotificationService, { Notification } from '../notifications/NotificationService'
55

66
const ORIGINAL_MIN_RELEASE = 'R2021a'
7-
const CURRENT_MIN_RELEASE = 'R2021a'
7+
const CURRENT_MIN_RELEASE = 'R2021b'
88
const FUTURE_MIN_RELEASE = 'R2021b'
99

1010
enum DeprecationType {

0 commit comments

Comments
 (0)