Skip to content

Commit 486d353

Browse files
authored
chore(main): release 1.6.0 (#186)
1 parent 5d315c1 commit 486d353

2 files changed

Lines changed: 54 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [1.6.0](https://github.com/hverlin/mise-vscode/compare/v1.5.0...v1.6.0) (2026-02-24)
4+
5+
6+
### Features
7+
8+
* (add symbol provider) ([#182](https://github.com/hverlin/mise-vscode/issues/182)) ([324ccfa](https://github.com/hverlin/mise-vscode/commit/324ccfa128aae41d9d68a22294829c6af4c6963b))
9+
* add `mise.enableTaskSymbolProvider` setting to toggle document symbol provider ([9f44a3d](https://github.com/hverlin/mise-vscode/commit/9f44a3d3450cd28d09d6e0e10dee8691468f57d8))
10+
11+
12+
### Bug Fixes
13+
14+
* deduplicate PATH entries (fix [#184](https://github.com/hverlin/mise-vscode/issues/184)) ([5d315c1](https://github.com/hverlin/mise-vscode/commit/5d315c16cb3a2dbdc5a9e3346ffda6ecfcde9f4b))
15+
316
## [1.5.0](https://github.com/hverlin/mise-vscode/compare/v1.4.0...v1.5.0) (2026-02-22)
417

518

package.json

Lines changed: 41 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Mise VSCode",
44
"publisher": "hverlin",
55
"description": "mise support for Visual Studio code (dev-tools, tasks and environment variables)",
6-
"version": "1.5.0",
6+
"version": "1.6.0",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/hverlin/mise-vscode"
@@ -382,25 +382,38 @@
382382
"markdownDescription": "Custom binary extensions to automatically configure VSCode extensions with mise tool binaries.\n\nEach entry requires:\n- `extensionId`: VSCode extension ID\n- `toolSources`: Array of mise tool registry sources to match\n- `vscodeSetting.key`: VSCode setting key to write\n\nOptional:\n- `binName`: Binary name (defaults to first tool name)\n- `vscodeSetting.subdirs`: Subdirectories to append to the path\n- `supportsShims`: Whether extension supports shims (default: true)\n- `supportsSymlinks`: Whether extension supports symlinks (default: true)",
383383
"items": {
384384
"type": "object",
385-
"required": ["extensionId", "toolSources", "vscodeSetting"],
385+
"required": [
386+
"extensionId",
387+
"toolSources",
388+
"vscodeSetting"
389+
],
386390
"properties": {
387391
"extensionId": {
388392
"type": "string",
389393
"description": "VSCode extension ID (e.g., 'ms-python.python')"
390394
},
391395
"toolSources": {
392396
"type": "array",
393-
"items": { "type": "string" },
397+
"items": {
398+
"type": "string"
399+
},
394400
"description": "Mise tool registry sources to find the tool (e.g., ['python'], ['node', 'aqua:bufbuild/buf'])"
395401
},
396402
"vscodeSetting": {
397403
"type": "object",
398-
"required": ["key"],
404+
"required": [
405+
"key"
406+
],
399407
"properties": {
400-
"key": { "type": "string", "description": "VSCode setting key (e.g., 'python.defaultInterpreterPath')" },
408+
"key": {
409+
"type": "string",
410+
"description": "VSCode setting key (e.g., 'python.defaultInterpreterPath')"
411+
},
401412
"subdirs": {
402413
"type": "array",
403-
"items": { "type": "string" },
414+
"items": {
415+
"type": "string"
416+
},
404417
"description": "Subdirectories to append to the tool path (e.g., ['bin'] to point to bin folder)"
405418
}
406419
}
@@ -429,25 +442,39 @@
429442
"markdownDescription": "Custom folder extensions to automatically configure VSCode extensions with mise tool folders.\n\nEach entry requires:\n- `extensionId`: VSCode extension ID\n- `toolSources`: Array of mise tool registry sources to match\n- `vscodeSetting.key`: VSCode setting key to write\n- `folderName`: Name for the symlink folder\n\nOptional:\n- `vscodeSetting.subdirs`: Subdirectories to append to the path written to VSCode setting\n- `sourceSubdirs`: Additional subdirs to find the tool source folder\n- `supportsSymlinks`: Whether extension supports symlinks (default: true)",
430443
"items": {
431444
"type": "object",
432-
"required": ["extensionId", "toolSources", "vscodeSetting", "folderName"],
445+
"required": [
446+
"extensionId",
447+
"toolSources",
448+
"vscodeSetting",
449+
"folderName"
450+
],
433451
"properties": {
434452
"extensionId": {
435453
"type": "string",
436454
"description": "VSCode extension ID (e.g., 'ms-python.python')"
437455
},
438456
"toolSources": {
439457
"type": "array",
440-
"items": { "type": "string" },
458+
"items": {
459+
"type": "string"
460+
},
441461
"description": "Mise tool registry sources to find the tool (e.g., ['python'], ['node', 'aqua:bufbuild/buf'])"
442462
},
443463
"vscodeSetting": {
444464
"type": "object",
445-
"required": ["key"],
465+
"required": [
466+
"key"
467+
],
446468
"properties": {
447-
"key": { "type": "string", "description": "VSCode setting key (e.g., 'java.jdkHome')" },
469+
"key": {
470+
"type": "string",
471+
"description": "VSCode setting key (e.g., 'java.jdkHome')"
472+
},
448473
"subdirs": {
449474
"type": "array",
450-
"items": { "type": "string" },
475+
"items": {
476+
"type": "string"
477+
},
451478
"description": "Subdirectories to append to the path (e.g., ['bin'] to point to bin subfolder)"
452479
}
453480
}
@@ -458,7 +485,9 @@
458485
},
459486
"sourceSubdirs": {
460487
"type": "array",
461-
"items": { "type": "string" },
488+
"items": {
489+
"type": "string"
490+
},
462491
"description": "Additional subdirs to find the tool source folder (e.g., ['lib'] to use parent/lib as base)"
463492
},
464493
"supportsSymlinks": {

0 commit comments

Comments
 (0)