Anatoli Beliaev
Anatoli Beliaev
### Issue describing the changes in this PR resolves #issue_for_this_pr ### Pull request checklist * [ ] My changes **do not** require documentation changes * [ ] Otherwise: Documentation issue...
PowerShell runspaces may be reused between function executions. This improves the warm start time, but may also lead to unexpected and undesirable consequences when a function execution encounters leftovers from...
https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob and other topics under "Triggers and bindings" have examples for every language except PowerShell.
Even though user-managed identity works after closing #235, we keep getting user complaints about it not working. It turns out that our users don't realize they need to do some...
**Problem** Creating and initializing a PowerShell runspace (potentially involving `profile.ps1` invocation) may take long time (for example, because of a Connect-AzAccount call). This is perceived as a cold start issue...
When authoring PowerShell functions, the Functions-specific commands (such as `Push-OutputBinding`, `Invoke-ActivityFunction`, etc.) are difficult to discover. The user must find the names and invocation syntax in the documentation and type...
Repro steps: 1. Start a PowerShell Function app in VS Code by F5. 2. Wait for the app to start. Invoke a function or do not invoke any function -...
 There are API sections for other languages, e.g. https://docs.microsoft.com/en-us/python/api/azure-functions-durable/azure.durable_functions?view=azure-python
See https://docs.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-bindings?tabs=csharp
`Enable-ExperimentalFeature` fails with the "access denied" error. As a result, Azure Functions users cannot enable experimental PowerShell features. Apparently, `Enable-ExperimentalFeature` needs write access to the `$env:HOME` directory, and this path...