Skip to content
Merged

3.5.0 #766

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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [3.5.0] - 2025-09-10

- Improved exercise submission packaging to avoid overly large archives
- Improved extension data migration from one version to the next

## [3.4.2] - 2025-08-21

- Fixed unnecessary dynamic library dependency causing errors when the library was missing on the user's computer.
Expand Down
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

const path = require("path");

const TMC_LANGS_RUST_VERSION = "0.38.3";
const TMC_LANGS_RUST_VERSION = "0.39.1";

const mockTmcLocalMooc = {
__TMC_BACKEND_URL__: JSON.stringify("http://localhost:4001"),
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "test-my-code",
"displayName": "TestMyCode",
"version": "3.4.2",
"version": "3.5.0",
"description": "TestMyCode extension for Visual Studio Code",
"categories": [
"Education",
Expand Down
13 changes: 13 additions & 0 deletions webview-ui/src/panels/Welcome.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,19 @@
<!-- This list should generally contain only the last couple versions/months worth of updates -->

<div class="content_section">
<h3>3.5.0 - 2025-09-10</h3>
<h4>Improved exercise submission packaging to avoid overly large archives</h4>
<p>
Previously, some unnecessary files were included when packaging exercise
submissions, sometimes leading to very large archives if a large file happened to be
in the exercise directory.
</p>
<h4>Improved extension data migration from one version to the next</h4>
<p>
The format of the extension data may change between extension releases, and in such
cases it's necessary to migrate data from the previous format to the new one. This
operation has been made more robust in preparation for a future update.
</p>
<h3>3.4.2 - 2025-08-25</h3>
<h4>Removed an unnecessary dependency which could cause errors</h4>
<p>
Expand Down
Loading