Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
version: [R2021b, R2022a, R2022b, latest]
os: [windows-latest, ubuntu-latest, macos-13]
os: [windows-latest, ubuntu-latest, macos-14]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
version: [R2021b, R2022a, R2022b, latest]
os: [windows-latest, ubuntu-latest, macos-13]
os: [windows-latest, ubuntu-latest, macos-14]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -70,5 +70,5 @@ jobs:
if: always()
with:
name: screenshots-${{ matrix.os }}-${{ matrix.version }}
path: ${{ github.workspace }}/s/screenshots
path: ${{ github.workspace }}/.s/screenshots
if-no-files-found: ignore
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:

build-macos:
name: build-macos
runs-on: macos-13
runs-on: macos-14
steps:
- *checkout
- *setup-node
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
test-smoke-macos:
name: Smoke Test ${{ matrix.version }}-macos
needs: build-macos
runs-on: macos-13
runs-on: macos-14
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
if: always()
with:
name: screenshots-linux-${{ matrix.version }}
path: ${{ github.workspace }}/s/screenshots
path: ${{ github.workspace }}/.s/screenshots
if-no-files-found: ignore

test-ui-windows:
Expand All @@ -203,7 +203,7 @@ jobs:
if: always()
with:
name: screenshots-windows-${{ matrix.version }}
path: ${{ github.workspace }}/s/screenshots
path: ${{ github.workspace }}/.s/screenshots
if-no-files-found: ignore

test-ui-macos:
Expand All @@ -226,5 +226,5 @@ jobs:
if: always()
with:
name: screenshots-macos-${{ matrix.version }}
path: ${{ github.workspace }}/s/screenshots
path: ${{ github.workspace }}/.s/screenshots
if-no-files-found: ignore
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.3.8] - 2026-01-08

Added:
- Temporarily pause MATLAB execution by clicking the Pause button (Addresses [mathworks/MATLAB-extension-for-vscode#263](https://github.com/mathworks/MATLAB-extension-for-vscode/issues/263))
- Improvements to symbol renaming, symbol highlighting, find references, and go to definitions as a result of advanced MATLAB program file indexing (Addresses [mathworks/MATLAB-extension-for-vscode#94](https://github.com/mathworks/MATLAB-extension-for-vscode/issues/94))
- Default initial MATLAB debugger configuration

Fixed:
- Changes the default value of `MATLAB.defaultEditor` to `true`
- Resolves an issue where the Run button displays an incorrect reason when a file cannot be run (Addresses [mathworks/MATLAB-extension-for-vscode#282](https://github.com/mathworks/MATLAB-extension-for-vscode/issues/282))
- Resolves issues with the `savepath` function by ensuring that MATLAB language server files are not saved to the MATLAB search path (Addresses [mathworks/MATLAB-extension-for-vscode#299](https://github.com/mathworks/MATLAB-extension-for-vscode/issues/299))
- Resolves potential crashes when breakpoints are set
- Applied patches for CVE-2025-15284, CVE-2025-64718, CVE-2025-64756, and CVE-2025-65945

## [1.3.7] - 2025-11-12

### Fixed
Expand Down
Loading