Skip to content

Releases: Azure/azure-functions-dotnet-worker

Microsoft.Azure.Functions.Worker 1.12.1-preview1

10 Feb 01:38
a7743bd
Compare
Choose a tag to compare

What's Changed

  • Updating environment variable used for root path resolution @fabiocav #1330

Full Changelog: 1.12.0-preview1...1.12.1-preview1

Microsoft.Azure.Functions.Worker.Extensions.Storage 5.1.0-preview1

09 Feb 20:06
2b78e7b
Compare
Choose a tag to compare

What's Changed

Blob

Full Changelog: storage-extension-5.0.1...storage-extension-5.1.0-preview1

Microsoft.Azure.Functions.Worker 1.12.0-preview1

07 Feb 02:51
470f909
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.11.0-preview2...1.12.0-preview1

Microsoft.Azure.Functions.Worker.Sdk 1.9.0-preview1

07 Feb 02:51
470f909
Compare
Choose a tag to compare

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

07 Feb 02:52
470f909
Compare
Choose a tag to compare

What's Changed

Microsoft.Azure.Functions.Worker.Extensions.CosmosDB 4.0.1

30 Jan 19:03
e8a2cb9
Compare
Choose a tag to compare

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

13 Jan 18:54
7b0860a
Compare
Choose a tag to compare
  • 4.0.0 release of Microsoft.Azure.Functions.Worker.Extensions.CosmosDB

Microsoft.Azure.Functions.Worker 1.11.0-preview2

12 Oct 19:45
853fc0a
Compare
Choose a tag to compare

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();
  • New overloads for WriteStringAsync and WriteBytesAsync methods by @kshyju in #1111

Full Changelog: 1.11.0-preview1...1.11.0-preview2

Microsoft.Azure.Functions.Worker.Extensions.EventGrid 3.2.1

12 Oct 18:02
3149102
Compare
Choose a tag to compare
  • 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

12 Oct 21:41
14cc888
Compare
Choose a tag to compare

What's Changed

  • Overriding binding property name for BlobPath property to path of BlobTrigger (#1086). This change does not directly impact end users, but helps improving reliability of internal components handling scaling.