Functions 2.0.11933-alpha
Pre-release
Pre-release
Visual Studio Availability
This release has not yet been made available to Visual Studio users.
NOTE: Visual Studio users will need to install .NET Core 2.1 to run the updated Azure Functions Core Tools.
Change Log
- Fix response payload issue:
HttpTrigger
does not return response content properly. For example following code will return "Bad Request" instead of "Please pass a name on the query string or in the request body":
return new BadRequestObjectResult("Please pass a name on the query string or in the request body");
- Next release will automatically migrate your function app secret keys from file system to azure storage blobs. You can migrate your secrets keys manually by setting AzureWebJobsSecretStorageType=Blob.
- In this release 64-bit platform option is still not supported, this option worked for previous versions but actually w3wp.exe process started as 32-bit. Please switch to 32-bit in "General Settings" or you can use previous version by setting FUNCTIONS_EXTENSION_VERSION=2.0.11857-alpha. Next release will have true 64-bit support.
- Java Language worker has been moved to use Generic Worker Config. Debug options for Java.exe are not hard coded in the runtime anymore. To configure debug port on java.exe, set environment variable languageWorkers:java:arguments with value -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address={portNumber}