Releases: Azure/azure-functions-dotnet-worker
Releases · Azure/azure-functions-dotnet-worker
Microsoft.Azure.Functions.Worker 1.12.1-preview1
What's Changed
Full Changelog: 1.12.0-preview1...1.12.1-preview1
Microsoft.Azure.Functions.Worker.Extensions.Storage 5.1.0-preview1
What's Changed
Blob
- Add support for SDK-type bindings via deferred binding feature @liliankasem @surgupta-msft #1108
- Assign cardinality correctly for Blob collection scenarios @surgupta-msft #1271
Full Changelog: storage-extension-5.0.1...storage-extension-5.1.0-preview1
Microsoft.Azure.Functions.Worker 1.12.0-preview1
What's Changed
- Use a consistent function ID via code gen @jviau #1103
- Support sdk-type binding reference type @liliankasem @surgupta-msft #1107
- Bump protobuf version to v1.7.0-protofile @surgupta-msft #1206
- Support sdk-type binding collection reference type @surgupta-msft #1207
- Native host integration @fabiocav #1213
- WorkerMetadata: Update runtime name to exclude the version @liliankasem #1248
- Adding ability to manipulate capabilities @brettsam #1183
Full Changelog: 1.11.0-preview2...1.12.0-preview1
Microsoft.Azure.Functions.Worker.Sdk 1.9.0-preview1
What's Changed
- Use a consistent function ID via code gen @jviau #1103
- Support sdk-type binding reference type @liliankasem @surgupta-msft #1107
- [SourceGen] Add support for overriding binding property name @satvu #1130
- [SourceGen] Handle default values in binding attributes @satvu #1131
- [SourceGen] Create JSON directly instead of using anonymous type @satvu #1191
- [SourceGen] Add MSBuild prop to disable source-generated function metadata @satvu #1200
- Property name: FunctionsMetadataSourceGen_Enabled
- Replacing TextWriter with raw string literals @fabiocav 1209
- Updating source generator to use raw literal strings @fabiocav 1211
- Avoid registering metadata loader extension when running in the native worker @kshyju #1258
- Implement SupportsDeferredBindingAttribute @liliankasem #1275
Full Changelog: sdk-1.8.0-preview2...sdk-1.9.0-preview1
Microsoft.Azure.Functions.Worker.Extensions.Abstractions 1.2.0-preview1
What's Changed
- Implement SupportsDeferredBindingAttribute @liliankasem #1275
Microsoft.Azure.Functions.Worker.Extensions.CosmosDB 4.0.1
4.0.1 release of Microsoft.Azure.Functions.Worker.Extensions.CosmosDB
- Fixed incorrect type of CosmosDBTriggerAttribute's
StartFromTime
property. (#1298)
Microsoft.Azure.Functions.Worker.Extensions.CosmosDB 4.0.0
- 4.0.0 release of Microsoft.Azure.Functions.Worker.Extensions.CosmosDB
Microsoft.Azure.Functions.Worker 1.11.0-preview2
What's Changed
- Adding a new worker option property to opt-in the behavior to get empty entries in trigger payload by @kshyju in #1091
Sample usage
var host = new HostBuilder()
.ConfigureFunctionsWorkerDefaults((builder) => { }, (options) =>
{
options.IncludeEmptyEntriesInMessagePayload = true;
})
.Build();
host.Run();
Full Changelog: 1.11.0-preview1...1.11.0-preview2
Microsoft.Azure.Functions.Worker.Extensions.EventGrid 3.2.1
- 3.2.1 version of Microsoft.Azure.Functions.Worker.Extensions.EventGrid package which uses 3.2.1 version of Microsoft.Azure.WebJobs.Extensions.EventGrid
Microsoft.Azure.Functions.Worker.Extensions.Storage 5.0.1
What's Changed
- Overriding binding property name for
BlobPath
property topath
of BlobTrigger (#1086). This change does not directly impact end users, but helps improving reliability of internal components handling scaling.