Releases: Azure/azure-functions-dotnet-worker
Releases · Azure/azure-functions-dotnet-worker
Microsoft.Azure.Functions.Worker.Sdk 1.8.0-preview2
What's Changed
- [SDK] Improvements to WebJobsAttributesNotSupported analyzer by @kshyju in #1092
- Adding support for overriding the binding property name in function metadata by @kshyju in #1086
Full Changelog: 1.11.0-preview1...sdk-1.8.0-preview2
Microsoft.Azure.Functions.Worker 1.11.0-preview1
What's Changed
- Added support for surfacing user-thrown exception to App Insights (#939)
- Source-generated function metadata: implementation change to improve cold-start performance (#956)
- This functionality requires version
1.8.0-preview1
ofMicrosoft.Azure.Functions.Worker.Sdk
or higher.
- This functionality requires version
Steps for opting into the source-generation preview:
- Add MSBuild property
<FunctionsEnableWorkerIndexing>true</FunctionsEnableWorkerIndexing>
app's.csproj
file. - In
local.settings.json
add the property"AzureWebJobsFeatureFlags": "EnableWorkerIndexing"
to configure the Azure Functions host to use worker-indexing. - Call the
IHostBuilder
extension,ConfigureGeneratedFunctionMetadataProvider
inProgram.cs
:
class Program
{
static async Task Main(string[] args)
{
var host = new HostBuilder()
.ConfigureFunctionsWorkerDefaults()
.ConfigureGeneratedFunctionMetadataProvider()
.Build();
await host.RunAsync();
}
}
Full change log:
1.10.0...1.11.0-preview1
Microsoft.Azure.Functions.Worker.Sdk 1.8.0-preview1
What's Changed
- Source-generated function metadata: implementation change to improve cold-start performance (#956)
Microsoft.Azure.Functions.Worker 1.10.0
What's Changed
- Bump gRPC dependencies to latest version (#1085)
Microsoft.Azure.Functions.Worker 1.9.0
What's Changed
- Fix GetOutputBindings method to return correct output when OutputBindingData is not set by @kshyju in #987
- Define Retry Policy Attributes by @satvu in #977
- Populating WorkerMetadata in init response by @fabiocav in #1022
- Handle InvocationCancel message and signal cancellation for in-flight invocations by @liliankasem in #972
Full Changelog: 1.8.0...1.9.0
Microsoft.Azure.Functions.Worker.ApplicationInsights 1.0.0-preview3
What's Changed
Full Changelog: application-insights-1.0.0-preview2...application-insights-1.0.0-preview3
Nuget package: https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.ApplicationInsights/1.0.0-preview3
Microsoft.Azure.Functions.Worker.ApplicationInsights 1.0.0-preview2
What's Changed
Full Changelog: application-insights-1.0.0-preview1...application-insights-1.0.0-preview2
Nuget package: https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.ApplicationInsights/1.0.0-preview2
Microsoft.Azure.Functions.Worker.ApplicationInsights 1.0.0-preview1
Package: https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.ApplicationInsights/1.0.0-preview1
For explanation and usage, see #944.
Microsoft.Azure.Functions.Worker 1.8.0
Release notes
- Added support for .NET Standard 2.0. This enables Workers built using .NET Framework
- Bug fix: Handle = character in cookie value (#838)
- Error handling for in-proc SDK usage inside isolated app. (#824)
- APIs for reading and updating input binding data, output binding data and invocation result.(#814)
- Startup hook for extensions. (#830)
- Exposing FunctionInputConverterException and FunctionWorkerException. (#843)
- Adding DateTimeConverter which will handle binding of DateTime/DateTimeOffset type parameters. (#852)
- Adding UseWhen extension methods for middleware registration. (#865)
- Added opt-in worker-driven function indexing. (#676)
- Add the MSBuild property
<FunctionsEnableWorkerIndexing>true<FunctionsEnableWorkerIndexing/>
to a Function App's.csproj
file. - In
local.settings.json
add the host feature flag ("AzureWebJobsFeatureFlags": "EnableWorkerIndexing"
).
- Add the MSBuild property
- Implemented WorkerStatus message and capability (#925)
- Handling WorkerTerminate signal for graceful termination. (#918)