Skip to content

Releases: Azure/azure-webjobs-sdk

Microsoft.Azure.WebJobs.Extensions.Storage 4.0.3

30 Sep 22:07
bacde74
Compare
Choose a tag to compare
storage-v4.0.3

moving storage to 4.0.3 (#2596)

Microsoft.Azure.WebJobs 3.0.19

08 Jul 20:51
ed4ff86
Compare
Choose a tag to compare

Release Notes

  • Removed the configuration utility
  • Added drain mode capability

This release contains the following packages:

  • Microsoft.Azure.WebJobs 3.0.19

Microsoft.Azure.WebJobs 3.0.18

05 Jun 12:57
6e15511
Compare
Choose a tag to compare

This release contains the following packages:

  • Microsoft.Azure.WebJobs 3.0.18
  • Microsoft.Azure.WebJobs.Host 3.0.18
  • Microsoft.Azure.WebJobs.Logging.ApplicationInsights 3.0.18
  • Microsoft.Azure.WebJobs.Logging 4.0.1
  • Microsoft.Azure.WebJobs.Host.Storage 4.0.1

Microsoft.Azure.WebJobs.Extensions.Storage 4.0.2

04 Jun 13:25
2593d4f
Compare
Choose a tag to compare

This package is not yet available on nuget

Changes in this release:

Microsoft.Azure.WebJobs.Extensions.Storage 4.0.1

01 Jun 21:30
9be0dcb
Compare
Choose a tag to compare

This package is available at https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage/4.0.1.

Changes in this release:

  • Explicitly set NetworkTimeout for Queue.GetMessagesAsync() (#2503). The latest storage packages will cancel network timeouts, but defaults are not correctly applied for Queue operations (Azure/azure-storage-net#999). This change explicitly sets it to 100 seconds, which will also be the Storage default.

Microsoft.Azure.WebJobs.Extensions.Storage 4.0.0

28 May 18:54
d3cde76
Compare
Choose a tag to compare

This package is available at https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage/4.0.0.

See https://github.com/Azure/azure-webjobs-sdk/releases/tag/storage-v4.0.0-preview2 and https://github.com/Azure/azure-webjobs-sdk/releases/tag/storage-v4.0.0-preview1 for details on changes in this release.

Important
Storage namespaces have changed, so you may need to update your code if you are using any of the Storage types directly. Your code may continue to compile as you may have an implicit reference to the old Storage SDK, but it will fail at runtime if these have not been updated in your code:

  • For blobs and queues, Microsoft.WindowsAzure.Storage.* namespaces are now Microsoft.Azure.Storage.*.
  • For tables, the namespaces are now Microsoft.Azure.Cosmos.Table.*.

Microsoft.Azure.WebJobs.Extensions.Storage 4.0.0-preview2

04 May 17:42
c9d92b2
Compare
Choose a tag to compare

https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage/4.0.0-preview2

Bug fixes in this release:

  • When deployed on the Functions consumption plan, set MaxConnectionsPerServer to 50 for each created client. This keeps connections low in the consumption sandbox. (#2484)
  • Move to latest versions of Storage packages and absorb new deadlock cancellation behavior (#2486)

Microsoft.Azure.WebJobs.Extensions.Storage 3.0.11

22 Apr 20:52
Compare
Choose a tag to compare

https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage/3.0.11

Fixes in this release:

  • Better storage account validation (#2397)
  • Graceful QueueTrigger shutdown (#2346)
  • Lots of new (debug-level) blob processing logs (#2282)
  • Do not throw if log line cannot be parsed (a8b1c38)
  • Do not throw if log scan does not contain LogType. (#2414)

Microsoft.Azure.WebJobs.Extensions.Storage 4.0.0-preview1

24 Jan 17:06
Compare
Choose a tag to compare

This is a major update to the Microsoft.Azure.WebJobs.Extensions.Storage nuget package. The major changes:

  • The extension now depends on:
  • Namespaces have changed, so you may need to update your code if you are using any of the Storage types directly:
    • For blobs and queues, Microsoft.WindowsAzure.Storage.* namespaces are now Microsoft.Azure.Storage.*.
    • For tables, the namespaces are now Microsoft.Azure.Cosmos.Table.*.

Please let us know via the Issues in this repo if you run into problems with this package.

3.0.14

04 Oct 23:39
Compare
Choose a tag to compare
v3.0.14

Raise HostInitialized callback AFTER listeners are created