Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 1.14.2 - 2024-04-26
### Changed
* [[4096]](https://github.com/microsoft/vscode-azurefunctions/pull/4096) Update initial launch.json for Python to use debugpy

### Fixed
* Minor text fixes

## 1.14.1 - 2024-04-04

### Fixed
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
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-azurefunctions",
"displayName": "Azure Functions",
"description": "%azureFunctions.description%",
"version": "1.14.2-alpha.0",
"version": "1.14.2",
"publisher": "ms-azuretools",
"icon": "resources/azure-functions.png",
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
Expand Down
3 changes: 2 additions & 1 deletion src/tree/ResolvedFunctionAppResource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,10 @@ export class ResolvedFunctionAppResource extends ResolvedFunctionAppBase impleme
this._functionsTreeItem = await RemoteFunctionsTreeItem.createFunctionsTreeItem(context, proxyTree);
}

const children: AzExtTreeItem[] = [this._functionsTreeItem, this.appSettingsTreeItem, this._siteFilesTreeItem, this._logFilesTreeItem];
const children: AzExtTreeItem[] = [this._functionsTreeItem, this.appSettingsTreeItem, this._siteFilesTreeItem];
// Deployment configuration not supported by flex consumption at the time
if (!this._isFlex) {
children.push(this._logFilesTreeItem);
children.push(this.deploymentsNode);
}

Expand Down