Skip to content

Commit eb247cb

Browse files
authored
Bump version, changelog for 1.25.2 and cherry pick #3983 (#3984)
* Bump version, changelog for 1.25.2 * Enable only `revealFileInOS` command for container tooltips
1 parent 2558764 commit eb247cb

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.25.2 - 23 June 2023
2+
### Fixed
3+
* Fixed a potential security issue involving Markdown tooltips for containers. [#3983](https://github.com/microsoft/vscode-docker/pull/3983)
4+
15
## 1.25.1 - 16 May 2023
26
### Fixed
37
* The extension was not activating when a Dockerfile was opened. [#3928](https://github.com/microsoft/vscode-docker/pull/3928)

package-lock.json

Lines changed: 2 additions & 2 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
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-docker",
3-
"version": "1.25.1",
3+
"version": "1.25.2",
44
"publisher": "ms-azuretools",
55
"displayName": "Docker",
66
"description": "Makes it easy to create, manage, and debug containerized applications.",

src/tree/resolveTooltipMarkdown.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export async function resolveTooltipMarkdown(templateString: string, context: un
1313

1414
const markdownString = template(context);
1515
const result = new MarkdownString(markdownString, true);
16-
result.isTrusted = true;
16+
result.isTrusted = { enabledCommands: ['revealFileInOS'] }; // revealFileInOS is used in container tooltips
1717
return result;
1818
}
1919

0 commit comments

Comments
 (0)