Skip to content

Commit 8f7b1d3

Browse files
authored
Merge pull request #246 from mathworks/dklilley/release/1.3.3
MATLAB extension for VS Code - v1.3.3
2 parents 4981e5c + 85be5e0 commit 8f7b1d3

File tree

13 files changed

+246
-40
lines changed

13 files changed

+246
-40
lines changed

.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"@typescript-eslint/no-inferrable-types": "off",
2222
"@typescript-eslint/promise-function-async": "off",
2323
"@typescript-eslint/consistent-type-assertions": "off",
24+
"object-shorthand": "off",
2425
"@typescript-eslint/indent": ["error", 4, {
2526
"SwitchCase": 1,
2627
"VariableDeclarator": 1,

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ A clear and concise description of what you expected to happen.
2424
If applicable, add screenshots to help explain your problem.
2525

2626
**Useful Information**
27+
- MATLAB Version:
2728
- OS Version:
2829
- VS Code Version:
2930

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.3.3] - 2025-05-15
11+
12+
### Added
13+
- Use automatic code completion to complete commands in the MATLAB terminal
14+
- Move the cursor in the MATLAB terminal using `Alt+Click`
15+
- Support for debugging P-coded files when the corresponding source file is available
16+
- Filter the commands in the MATLAB terminal history by entering text in the terminal (Thanks @robertoffmoura!)
17+
18+
### Fixed
19+
- Resolves issues with the MATLAB workspace not updating correctly when switching contexts in the call stack
20+
- Resolves potential crashes when using code completion in files without a .m file extension
21+
- Patches CVE-2024-12905
22+
1023
## [1.3.2] - 2025-03-06
1124

1225
### Fixed

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Edit MATLAB code with syntax highlighting, linting, navigation support, and more",
55
"icon": "public/L-Membrane_RGB_128x128.png",
66
"license": "MIT",
7-
"version": "1.3.2",
7+
"version": "1.3.3",
88
"engines": {
99
"vscode": "^1.67.0"
1010
},

src/Notifications.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023-2024 The MathWorks, Inc.
1+
// Copyright 2023-2025 The MathWorks, Inc.
22

33
enum Notification {
44
// Connection Status Updates
@@ -15,6 +15,8 @@ enum Notification {
1515

1616
// Execution
1717
MatlabRequestInstance = 'matlab/request',
18+
TerminalCompletionRequest = 'TerminalCompletionRequest',
19+
TerminalCompletionResponse = 'TerminalCompletionResponse',
1820

1921
MVMEvalRequest = 'evalRequest',
2022
MVMEvalComplete = 'evalResponse',

0 commit comments

Comments
 (0)