Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
6e5b61c
Implementation for debug-isolated flag and streaming func CLI output
nturinski Oct 24, 2025
e9c255d
Update src/utils/stream.ts
nturinski Oct 24, 2025
067e04d
Address copilot feedback
nturinski Oct 24, 2025
d046ac9
Merge branch 'nat/fileBasedPickProcess' of https://github.com/microso…
nturinski Oct 24, 2025
606f130
Refactor to set up stream in funcHostTasks
nturinski Oct 24, 2025
44e8382
Delete test snippet
nturinski Oct 24, 2025
9726543
Add headerto stream file
nturinski Oct 24, 2025
d4f3b56
Remove the done call
nturinski Oct 24, 2025
c7618c7
Update src/debug/FuncTaskProvider.ts
nturinski Oct 24, 2025
b8dd0bf
WIP waiting for VSCode insiders fix
nturinski Oct 29, 2025
d673a73
Use onDidStartTerminalShellExecution API instead of proposed
nturinski Oct 30, 2025
2dfd68d
Remove proposed files
nturinski Oct 30, 2025
5035c9a
Merge branch 'nat/fileBasedPickProcess' of https://github.com/microso…
nturinski Oct 30, 2025
8a751c8
Add note
nturinski Oct 30, 2025
e5adbb9
Remove unused async moniker
nturinski Oct 30, 2025
6454ca8
Whoops, wrong async
nturinski Oct 30, 2025
544cd45
Little bit of cleaning
nturinski Oct 30, 2025
52780f7
Remove unusued function helper
nturinski Oct 30, 2025
3dc0fc5
Last commit, I swears it
nturinski Oct 30, 2025
e36604c
Move event handler, added note
nturinski Nov 3, 2025
5bfbb42
Rename function due to PR feedback
nturinski Nov 3, 2025
a9c1f08
Merge branch 'main' of https://github.com/microsoft/vscode-azurefunct…
nturinski Nov 19, 2025
e1ee414
Merge branch 'nat/fileBasedPickProcess' of https://github.com/microso…
nturinski Nov 21, 2025
bc365fa
Push up WIP
nturinski Nov 21, 2025
5d5b38f
Push up WIP
nturinski Nov 21, 2025
192b107
Merge branch 'nat/fileBasedPickProcess' of https://github.com/microso…
Nov 21, 2025
577a57d
WIP for postDebug copilot analysis
Nov 25, 2025
e8b519d
Add debug command activity
Nov 25, 2025
e0e5c03
WIP for copilot postdebug
Dec 1, 2025
8786288
Merge branch 'main' of https://github.com/microsoft/vscode-azurefunct…
Jan 7, 2026
adc4bc4
Merge with main
Jan 7, 2026
df16af2
Fix linter
Jan 7, 2026
8707910
MVP for func debugger view
Jan 8, 2026
6dff88e
Setting for debugger view, show first error
Jan 14, 2026
412b751
Refactoring/cleaning up
Jan 14, 2026
8fae446
Remove the stop action and implement clear errors
Jan 14, 2026
9e897af
Clean up some code
Jan 14, 2026
d30fda1
Remove the terminal dispose since it is not reinstantiated later
Jan 14, 2026
759fb6a
Update src/funcCoreTools/funcHostTask.ts
nturinski Jan 15, 2026
8ac0664
Update src/funcCoreTools/funcHostErrorUtils.ts
nturinski Jan 15, 2026
4213222
Add JSDoc documentation for IStartFuncProcessResult stream property (…
Copilot Jan 15, 2026
db407f4
Prevent infinite stream iteration when func host task terminates (#4887)
Copilot Jan 15, 2026
24d396e
Update src/debug/FunctionHostDebugView.ts
nturinski Jan 15, 2026
2ebf2b6
Remove exhaustive check from switch statement
nturinski Jan 15, 2026
a3fe41a
merge main
Feb 25, 2026
ac14622
npm install to update package-lock
Feb 25, 2026
a479f07
pull from remote
Feb 25, 2026
26a9e6b
Convert shell args to be an array
Feb 25, 2026
2b81dd2
Merge main
Mar 9, 2026
a331ddc
Fix duplicate log entries, fix func start tasks with args not being r…
Mar 11, 2026
383bfff
Clean up some of the code
Mar 12, 2026
70b0414
Fix imports in tests
Mar 12, 2026
55a50cf
Apply suggestion from @Copilot
nturinski Mar 12, 2026
2ebe523
PR feedback
Mar 12, 2026
ef1dadc
Merge branch 'nat/debuggerView' of https://github.com/microsoft/vscod…
Mar 12, 2026
853cc97
Merge branch 'main' of https://github.com/microsoft/vscode-azurefunct…
Mar 24, 2026
5c09c3f
Debugger view always visible but collapsed by default
Mar 24, 2026
9764185
Display stopped hosts as well
Mar 25, 2026
bd6ce2f
Expose ask copilot on top level node
Mar 25, 2026
3a35411
Make labels a bit more descriptive
Mar 26, 2026
ada82e4
Refactor into individual tree items
Mar 26, 2026
8d18412
Remove enums that are not shared
Mar 26, 2026
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
46 changes: 25 additions & 21 deletions package-lock.json

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

108 changes: 108 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,17 @@
]
}
},
"views": {
"debug": [
{
"id": "azureFunctions.funcHostDebugView",
"name": "%azureFunctions.funcHostDebugView.title%",
"when": "!virtualWorkspace",
"visibility": "collapsed",
"icon": "resources/azure-functions.svg"
}
]
},
"commands": [
{
"command": "azureFunctions.addBinding",
Expand Down Expand Up @@ -467,6 +478,36 @@
"command": "azureFunctions.getMcpHostKey",
"title": "%azureFunctions.getMcpHostKey%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.funcHostDebug.refresh",
"title": "%azureFunctions.funcHostDebug.refresh%",
"category": "Azure Functions",
"icon": "$(refresh)"
},
{
"command": "azureFunctions.funcHostDebug.showRecentLogs",
"title": "%azureFunctions.funcHostDebug.showRecentLogs%",
"category": "Azure Functions",
"icon": "$(output)"
},
{
"command": "azureFunctions.funcHostDebug.copyRecentLogs",
"title": "%azureFunctions.funcHostDebug.copyRecentLogs%",
"category": "Azure Functions",
"icon": "$(copy)"
},
{
"command": "azureFunctions.funcHostDebug.askCopilot",
"title": "%azureFunctions.funcHostDebug.askCopilot%",
"category": "Azure Functions",
"icon": "$(sparkle)"
},
{
"command": "azureFunctions.funcHostDebug.clearStoppedSessions",
"title": "%azureFunctions.funcHostDebug.clearStoppedSessions%",
"category": "Azure Functions",
"icon": "$(trash)"
}
],
"submenus": [
Expand Down Expand Up @@ -503,9 +544,54 @@
"submenu": "azureFunctions.submenus.workspaceActions",
"when": "view == azureWorkspace",
"group": "navigation@1"
},
{
"command": "azureFunctions.funcHostDebug.refresh",
"when": "view == azureFunctions.funcHostDebugView",
"group": "navigation@1"
},
{
"command": "azureFunctions.funcHostDebug.clearStoppedSessions",
"when": "view == azureFunctions.funcHostDebugView",
"group": "navigation@2"
}
],
"view/item/context": [
{
"command": "azureFunctions.funcHostDebug.showRecentLogs",
"when": "view == azureFunctions.funcHostDebugView && viewItem == azFunc.funcHostDebug.hostTask",
"group": "inline"
},
{
"command": "azureFunctions.funcHostDebug.copyRecentLogs",
"when": "view == azureFunctions.funcHostDebugView && viewItem == azFunc.funcHostDebug.hostTask",
"group": "inline"
},
{
"command": "azureFunctions.funcHostDebug.showRecentLogs",
"when": "view == azureFunctions.funcHostDebugView && viewItem == azFunc.funcHostDebug.stoppedHostTask",
"group": "inline"
},
{
"command": "azureFunctions.funcHostDebug.copyRecentLogs",
"when": "view == azureFunctions.funcHostDebugView && viewItem == azFunc.funcHostDebug.stoppedHostTask",
"group": "inline"
},
{
"command": "azureFunctions.funcHostDebug.askCopilot",
"when": "view == azureFunctions.funcHostDebugView && viewItem == azFunc.funcHostDebug.hostError",
"group": "1@1"
},
{
"command": "azureFunctions.funcHostDebug.askCopilot",
"when": "view == azureFunctions.funcHostDebugView && viewItem == azFunc.funcHostDebug.hostTask",
"group": "1@1"
},
{
"command": "azureFunctions.funcHostDebug.askCopilot",
"when": "view == azureFunctions.funcHostDebugView && viewItem == azFunc.funcHostDebug.stoppedHostTask",
"group": "1@1"
},
{
"command": "azureFunctions.createFunction",
"when": "view == azureWorkspace && viewItem =~ /azFuncLocalProject/i",
Expand Down Expand Up @@ -947,6 +1033,22 @@
{
"command": "azureFunctions.unassignManagedIdentity",
"when": "never"
},
{
"command": "azureFunctions.funcHostDebug.refresh",
"when": "never"
},
{
"command": "azureFunctions.funcHostDebug.showRecentLogs",
"when": "never"
},
{
"command": "azureFunctions.funcHostDebug.copyRecentLogs",
"when": "never"
},
{
"command": "azureFunctions.funcHostDebug.askCopilot",
"when": "never"
}
],
"editor/context": [
Expand Down Expand Up @@ -990,6 +1092,12 @@
"properties": {
"command": {
"type": "string"
},
"args": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
Expand Down
8 changes: 7 additions & 1 deletion package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,5 +144,11 @@
"azureFunctions.mcpProjectType": "The type of MCP integration the project uses.",
"azureFunctions.mcpProjectType.NoMcpServer": "Runs the standard Azure Functions runtime with no MCP integration.",
"azureFunctions.mcpProjectType.McpExtensionServer": "Runs the Functions host with an embedded MCP server provided by the Azure Functions MCP extension.",
"azureFunctions.mcpProjectType.SelfHostedMcpServer": "Runs the Functions host in custom-handler mode, forwarding requests to a self-hosted MCP server process."
"azureFunctions.mcpProjectType.SelfHostedMcpServer": "Runs the Functions host in custom-handler mode, forwarding requests to a self-hosted MCP server process.",
"azureFunctions.funcHostDebugView.title": "Functions Host Exceptions Debugger",
"azureFunctions.funcHostDebug.refresh": "Refresh",
"azureFunctions.funcHostDebug.showRecentLogs": "Show Recent Host Logs",
"azureFunctions.funcHostDebug.copyRecentLogs": "Copy Recent Host Logs",
"azureFunctions.funcHostDebug.askCopilot": "Ask Copilot",
"azureFunctions.funcHostDebug.clearStoppedSessions": "Clear Stopped Sessions"
}
1 change: 0 additions & 1 deletion src/commands/CommandAttributes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,4 @@ export class CommandAttributes {
"Task hub creation fails — if an existing parent DTS resource was selected, check that the scheduler is not stuck in a provisioning state.",
],
};

}
Loading
Loading